37

我想在 javafx 中创建一个自定义列表视图。这里我需要在列表单元格中绑定多个组件,如下所示,比如一个标签、一个文本字段、一个 HBox 下的一个按钮和两个按钮、一个超链接、另一个 HBox 中的一个标签,这些 HBox 在一个 VBox 下,这个 VBox 在单个列表单元格,它将重复并创建一个列表视图。

代码是

<ListView fx:id="ListView" layoutX="0" layoutY="30" prefWidth="600" prefHeight="300">
    <HBox fx:id="listBox" alignment="CENTER_LEFT">
        <padding><Insets top="5" bottom="5" left="5"></Insets> </padding>
        <HBox alignment="CENTER_LEFT" prefWidth="170" minWidth="88">
            <Label fx:id="surveyName" text="Field A" styleClass="Name"></Label>
        </HBox>
        <VBox styleClass="Description" prefWidth="155" minWidth="86">

            <HBox>
                <HBox styleClass="surveyDesIcon" prefWidth="20" prefHeight="16"></HBox>
                <Label fx:id="surveyCode" text="PRW3456HJ"></Label>
            </HBox>
            <HBox>
                <HBox styleClass="DateIcon" prefWidth="20" prefHeight="16"></HBox>
                <Label fx:id="Date" text="PRW3456HJ"></Label>
            </HBox>
        </VBox>
        <HBox fx:id="Status" prefWidth="160" minWidth="80">
            <Label fx:id="StatusLabel" text="Checking Files.."/>
        </HBox>
        <HBox fx:id="StatusIcon1" prefWidth="50" prefHeight="50" alignment="CENTER">
            <Label styleClass="StatusIcon1" prefWidth="24" prefHeight="24" alignment="CENTER"/>
        </HBox>
        <HBox fx:id="StatusIcon2" prefWidth="50" prefHeight="50" styleClass="StatusIconBox" alignment="CENTER">
            <Hyperlink styleClass="StatusIcon2" prefWidth="24" maxHeight="24" alignment="CENTER"/>
        </HBox>
    </HBox>
</ListView>
4

3 回答 3

85

我明白你的问题。在 a 中设置项目主要有两种方式Listview

1.用( )创建ObservableList和设置 的项目。ListViewObservableListlistView.setItems(observableList)

2.使用类的setCellFactory()方法ListView

您更喜欢使用该setCellFactory()方法,因为这种方法简化了流程,并且有助于分离业务逻辑和 UI (FXML)。


这里有一个更详细的解释:


1.创建一个新的 FXML 文件,其名称listview.fxml包含ListView,并将ListViewController类设置为其控制器:

文件:listview.fxml

<?import javafx.scene.layout.GridPane?>
<?import javafx.scene.control.ListView?>
<?import demo.ListViewController?>

<GridPane xmlns:fx="http://javafx.com/fxml" alignment="CENTER">
     <ListView fx:id="listView"/>
</GridPane>

2.创建控制器并命名ListViewController
控制器可以加载listview.fxml文件并访问listview.

文件:ListViewController.java

package demo;

import javafx.collections.FXCollections;
import javafx.collections.ObservableList;
import javafx.fxml.FXML;
import javafx.fxml.FXMLLoader;
import javafx.scene.*;
import javafx.scene.control.*;
import javafx.util.Callback;
import java.io.IOException;
import java.util.Set;

public class ListViewController
{
    @FXML
    private ListView listView;
    private Set<String> stringSet;
    ObservableList observableList = FXCollections.observableArrayList();

    public ListViewController()
    {
        FXMLLoader fxmlLoader = new FXMLLoader(getClass().getResource("/fxml/listview.fxml"));
        fxmlLoader.setController(this);
        try
        {
            Parent parent = (Parent)fxmlLoader.load();
            Scene scene = new Scene(parent, 400.0 ,500.0);
        }
        catch (IOException e)
        {
            throw new RuntimeException(e);
        }
    }

    public void setListView()
    {
        stringSet.add("String 1");
        stringSet.add("String 2");
        stringSet.add("String 3");
        stringSet.add("String 4");
        observableList.setAll(stringSet);
        listView.setItems(observableList);
        listView.setCellFactory(new Callback<ListView<String>, javafx.scene.control.ListCell<String>>()
        {
            @Override
            public ListCell<String> call(ListView<String> listView)
            {
                return new ListViewCell();
            }
        });
    }
}

3.首先你需要设置的值ObservableList这个非常重要。
然后,使用 设置列表项ObservableList并调用 上的setCellFactory()方法ListView。在给定的示例中,我只是将String值添加到String集合中(the Set<String> stringSet)。


4.当在setCellFactory()上调用该方法时ListView,它会返回ListCell。因此,为了简单起见,我添加了一个扩展 的类ListCell,并且该setGraphic()方法存在于ListCell()并且将设置 的项目ListCell

文件:ListViewCell.java

package demo;

import javafx.scene.control.ListCell;

public class ListViewCell extends ListCell<String>
{
    @Override
    public void updateItem(String string, boolean empty)
    {
        super.updateItem(string,empty);
        if(string != null)
        {
            Data data = new Data();
            data.setInfo(string);
            setGraphic(data.getBox());
        }
    }
}

5.我刚刚添加了一个类,它将加载listCellItem.fxml并返回HBox,它将包含其他组件作为子组件。
然后HBox将 设置为ListCell

文件:listCellItem.fxml

 <?import demo.Data?>
 <?import javafx.scene.layout.HBox?>
 <?import javafx.scene.control.Label?>

<HBox xmlns:fx="http://javafx.com/fxml" fx:id="hBox">
<children>
    <Label  fx:id="label1"/>
    <Label  fx:id="label2"/>
</children>
</HBox>

文件:Data.java

package demo;

import javafx.fxml.FXML;
import javafx.fxml.FXMLLoader;
import javafx.scene.control.Label;
import javafx.scene.layout.HBox;
import java.io.IOException;

public class Data
{
    @FXML
    private HBox hBox;
    @FXML
    private Label label1;
    @FXML
    private Label label2;

    public Data()
    {
        FXMLLoader fxmlLoader = new FXMLLoader(getClass().getResource("/fxml/listCellItem.fxml"));
        fxmlLoader.setController(this);
        try
        {
            fxmlLoader.load();
        }
        catch (IOException e)
        {
            throw new RuntimeException(e);
        }
    }

    public void setInfo(String string)
    {
        label1.setText(string);
        label2.setText(string);
    }

    public HBox getBox()
    {
        return hBox;
    }
}

使用这种方式,您可以使用该setCellFactory()方法将业务逻辑和 FXML 分开。

希望这会有所帮助。

于 2013-10-28T10:40:25.873 回答
6

@Anvay上面的例子需要一些调整才能工作。这些都是设置在轨道上的简单事情。

  1. ListViewController 需要在 JavaFX 应用程序线程上运行。
  2. 您只能从 JavaFX 的initialize () 方法中调用注入的 @FXML 元素
  3. 需要调用 setListView()
  4. 示例中的 stringSet 需要在调用 setListView() 之前分配一个 new。

下面的 ListViewController 适用于这些更改。我将“ stringSet ”更改为列表“ stringList ”。该控制器几乎是Scene Builder 2提供的示例控制器

 public class ListViewController 
 {

     @FXML private   ResourceBundle      resources;

     @FXML private   URL                 location;

     @FXML private   ListView            listView;

     private         List<String>        stringList     = new ArrayList<>(5);
     private         ObservableList      observableList = FXCollections.observableArrayList();

     public void setListView(){

         stringList.add("String 1");
         stringList.add("String 2");
         stringList.add("String 3");
         stringList.add("String 4");

         observableList.setAll(stringList);

         listView.setItems(observableList);

         listView.setCellFactory(
             new Callback<ListView<String>, javafx.scene.control.ListCell<String>>() {
                 @Override
                 public ListCell<String> call(ListView<String> listView) {
                     return new ListViewCell();
                 }
             });
     }

     @FXML
     void initialize() {
         assert listView != null : "fx:id=\"listView\" was not injected: check your FXML file 'CustomList.fxml'.";

         setListView();
     }

 }//ListViewController

JavaFX 平台需要在 JavaFX 应用程序的 main() 方法中启动。Netbeans 很方便地从 Maven JavaFX 应用程序模板中提供了这种结构的大部分。

public class MainApp extends Application {

    @Override
    public void start(Stage stage) throws Exception {

        Parent root = FXMLLoader.load(getClass().getResource("/fxml/CustomList.fxml"));

        Scene scene = new Scene(root);
        scene.getStylesheets().add("/styles/Styles.css");

        stage.setTitle("CustomList");
        stage.setScene(scene);
        stage.show();
    }

    /**
     *  The main() method is ignored in correctly deployed JavaFX application.
     * 
     *  @param args the command line arguments
     **/
    public static void main(String[] args) {

        launch(args);
    }
}
于 2014-12-17T01:00:27.347 回答
2

Anvay 的答案出于某种原因对我不起作用,我必须做的只是一些非常小的调整:

  1. 从 listCellItem.fxml 中删除导入数据语句
  2. 正如 Data.java 中帖子状态下方的评论 put hBox = fmxlLoader.load()
  3. 我还有一个主类(intellij 自动生成)。

    public class MainMain extends Application {
    
    @Override
    public void start(Stage primaryStage) throws Exception{
    
    FXMLLoader fxmlLoader = new 
    FXMLLoader(getClass().getResource("MainController.fxml"));
    try
    {
        Parent root = fxmlLoader.load();
    
        Scene scene = new Scene(root);
        primaryStage.setScene(scene);
        primaryStage.setTitle("Title");
        primaryStage.show();
    }
    catch (IOException e)
    {
        throw new RuntimeException(e);
    }
    }
    
    
    
    public static void main(String[] args) {
        launch(args);
    }
    

我知道这对于这里的大多数专家来说可能是显而易见的,但是在我调试时这些问题让我困惑了好几个小时。

于 2018-03-22T23:52:11.450 回答