我正在尝试刷新JFXCheckBoxes的JFXListView。 我正在使用的代码适用于每个更新案例,就像更新需要从JFXListView中删除JFXCheckBoxe一样。 这就是我为删除部分所做的事情:
ArrayList<String> ServiceToDelete = R.OffrirService();
List<String> seup = se.stream().filter(elem -> !ServiceToDelete.contains(elem)).collect(Collectors.toList());
for (int x = 0; x < seup.size(); x++) {
String g = seup.get(x);
li_se.getItems().removeIf((t) -> {
return ((JFXCheckBox) t).getText().equals(g);
});
//System.out.println(li_se.getItems().indexOf(ServiceToDelete.get(x)));
}
seup隐藏了应该删除的JFXCheckBox的名称,问题是li_se.getItems().removeIf((t) -> {return ((JFXCheckBox) t).getText().equals(g);});
只在删除JFXCheckBoxe时才能工作一次,不能再添加同名的JFXCheckBoxe。为什么会发生这种情况?如何使用提供的代码添加同名的新JFXCheckBoxe?
答案 0 :(得分:0)
修改强>
不完全确定你在这里要说的是什么:
不能再添加同名的JFXCheckBoxe。为什么会发生这种情况?如何使用提供的代码添加同名的新JFXCheckBoxe?
如果在调用delete方法时再次删除它的情况,请确保更新包含要删除的项目的列表,以便在下次调用时不再删除它们。
旧帖子:
我无法真实地告诉您的意思或这是什么情况,但根据我的猜测,您可以执行以下操作:为复选框分配ID:
yourCheckBox.setID("yourIdHere");
然后您可以通过搜索该ID将其从列表中删除:
listView.getItems().removeIf(checkBox -> "yourIdHere".equals(checkBox.getId()));
或者,您可以使用相同的方法检查CheckBox
es的其他属性,但请注意,如果多个项目匹配,则会全部删除。
如果您只需要移除一个(或几个)CheckBox
个,则可以将引用存储在某个字段中,然后将其删除:
CheckBox yourCheckBox = new CheckBox();
// ...
listView.getItems().remove(yourCheckBox);
此外,indexOf
必须与列表中的对象同时使用。如果您声明列表使用复选框:
ListView<CheckBox> listView = new ListView<>();
然后indexOf
,remove
以及其他采用Object
的方法必须通过CheckBox
。
答案 1 :(得分:0)
使用here中的代码并假设JFoniex与常规ListView
一样,此示例显示了两种删除ListView
单元格的方法。
一种方法是在“属性”上观察Item's
“。
// observe item's on property and display message if it changes:
item.onProperty().addListener((obs, wasOn, isNowOn) -> {
System.out.println(item.getName() + " changed on state from " + wasOn + " to " + isNowOn);
if (isNowOn) {
listView.getItems().remove(item);
}
});
另一种是购买迭代物品并移除符合特定标准的物品。在这种情况下,我不是在迭代我正在使用removeIf()
。
listView.getItems().removeIf((t) -> {
return ((Item) t).getName().equals("Item 9");
});
完整代码:
import javafx.application.Application;
import javafx.beans.property.BooleanProperty;
import javafx.beans.property.SimpleBooleanProperty;
import javafx.beans.property.SimpleStringProperty;
import javafx.beans.property.StringProperty;
import javafx.scene.Scene;
import javafx.scene.control.ListView;
import javafx.scene.control.cell.CheckBoxListCell;
import javafx.scene.layout.BorderPane;
import javafx.stage.Stage;
public class ListViewWithCheckBox extends Application
{
@Override
public void start(Stage primaryStage)
{
ListView<Item> listView = new ListView<>();
for (int i = 1; i <= 20; i++) {
Item item = new Item("Item " + i, false);
// observe item's on property and display message if it changes:
item.onProperty().addListener((obs, wasOn, isNowOn) -> {
System.out.println(item.getName() + " changed on state from " + wasOn + " to " + isNowOn);
if (isNowOn) {
listView.getItems().remove(item);
}
});
listView.getItems().add(item);
}
listView.setCellFactory(CheckBoxListCell.forListView((Item item) -> item.onProperty()));
removeItem(listView);
BorderPane root = new BorderPane(listView);
Scene scene = new Scene(root, 250, 400);
primaryStage.setScene(scene);
primaryStage.show();
}
public static class Item
{
private final StringProperty name = new SimpleStringProperty();
private final BooleanProperty on = new SimpleBooleanProperty();
public Item(String name, boolean on)
{
setName(name);
setOn(on);
}
public final StringProperty nameProperty()
{
return this.name;
}
public final String getName()
{
return this.nameProperty().get();
}
public final void setName(final String name)
{
this.nameProperty().set(name);
}
public final BooleanProperty onProperty()
{
return this.on;
}
public final boolean isOn()
{
return this.onProperty().get();
}
public final void setOn(final boolean on)
{
this.onProperty().set(on);
}
@Override
public String toString()
{
return getName();
}
}
public static void main(String[] args)
{
launch(args);
}
public void removeItem(ListView listView)
{
listView.getItems().removeIf((t) -> {
return ((Item) t).getName().equals("Item 9");
});
}
}
这是使用您的错误方法的示例。
控制器:
import com.jfoenix.controls.JFXCheckBox;
import com.jfoenix.controls.JFXListView;
import java.net.URL;
import java.util.ResourceBundle;
import javafx.event.ActionEvent;
import javafx.fxml.FXML;
import javafx.fxml.Initializable;
import javafx.scene.control.Button;
import javafx.scene.control.ListView;
/**
*
* @author sedri
*/
public class FXMLDocumentController implements Initializable {
@FXML
JFXListView listview;
@FXML ListView<String> lvAddNew;
@FXML Button btnAddNew;
@Override
public void initialize(URL url, ResourceBundle rb) {
// TODO
for(int i = 1; i < 100; i++)
{
JFXCheckBox tempJFXCheckBox = new JFXCheckBox("item " + i);
tempJFXCheckBox.selectedProperty().addListener((obs, oldValue, newValue)->{
System.out.println(newValue);
if(newValue)
{
listview.getItems().remove(tempJFXCheckBox);
lvAddNew.getItems().add(tempJFXCheckBox.getText());
}
});
listview.getItems().add(tempJFXCheckBox);
}
}
@FXML private void handleBtnAddNew(ActionEvent event)
{
//Remove selected item
String tempList = lvAddNew.getSelectionModel().getSelectedItem();
lvAddNew.getItems().remove(tempList);
listview.getItems().add(new JFXCheckBox(tempList));
}
}
FXML:
<?xml version="1.0" encoding="UTF-8"?>
<?import com.jfoenix.controls.JFXListView?>
<?import javafx.scene.control.Button?>
<?import javafx.scene.control.ListView?>
<?import javafx.scene.layout.AnchorPane?>
<?import javafx.scene.layout.VBox?>
<AnchorPane id="AnchorPane" prefHeight="700.0" prefWidth="320" xmlns="http://javafx.com/javafx/8.0.141" xmlns:fx="http://javafx.com/fxml/1" fx:controller="javafxapplication2.FXMLDocumentController">
<children>
<VBox alignment="CENTER" prefHeight="200.0" prefWidth="100.0" AnchorPane.bottomAnchor="0.0" AnchorPane.leftAnchor="0.0" AnchorPane.rightAnchor="0.0" AnchorPane.topAnchor="0.0">
<children>
<JFXListView fx:id="listview" />
<ListView fx:id="lvAddNew" prefHeight="200.0" prefWidth="200.0" />
<Button fx:id="btnAddNew" mnemonicParsing="false" onAction="#handleBtnAddNew" text="Add New" />
</children>
</VBox>
</children>
</AnchorPane>