在ListView中使用空格填充字符串

时间:2018-05-24 19:51:47

标签: java javafx

拜托,你能帮助我吗?

我在java中有listview 在ObservableList或ArrayList中我有类似的字符串 CTAudSvc 2760 ctfmon 6176 dllhost 6464 dllhost 14656 DLLML 10920 DMedia 6768 dwm 1104 explorer 6492 chrome 2964

但是当我把它放入listview时,我看到这样的事情:

CTAudSvc 2760 ctfmon 6176 dllhost 656 DLLML 10920 DMedia 6768 dwm 1104 explorer 6492 chrome 2964

在代码中,我没什么特别的,所以如果你知道是什么让它忽略了一些空格,请帮助我。

ArrayList<String> processListUnsorted = new ArrayList<String>();
...
Sting input...
processListUnsorted.add(input.trim());
...
List<String> sortedApps = processListUnsorted.stream() .sorted(String.CASE_INSENSITIVE_ORDER)
.collect(Collectors.toList());
...
ObservableList<String> sortedAppsFinal = FXCollections.observableArrayList(sortedApps);
...
somelistview.setItems(sortedAppsFinal);</code>

1 个答案:

答案 0 :(得分:1)

这是实现这一目标的一种方法,但我会采用James_D方法。

你应该考虑使用Cell Factory。拆分字符串。然后使用HBox。在HBox中使用两个标签。将第一个标签设置为HBox.setHgrow(label, "ALWAYS");setMaxWidth(Double.MAX_VALUE);

import java.util.ArrayList;
import java.util.List;
import javafx.application.Application;
import javafx.collections.FXCollections;
import javafx.scene.Scene;
import javafx.scene.control.Label;
import javafx.scene.control.ListCell;
import javafx.scene.control.ListView;
import javafx.scene.layout.HBox;
import javafx.scene.layout.Priority;
import javafx.stage.Stage;

public class ListViewExperiments extends Application
{

    @Override
    public void start(Stage primaryStage) throws Exception
    {
        primaryStage.setTitle("ListView Experiment 1");

        List<String> data = new ArrayList();
        data.add("CTAudSvc                2760");
        data.add("ctfmon                  6176");
        data.add("dllhost                 6464");

        ListView listView = new ListView();
        listView.setItems(FXCollections.observableArrayList(data));
        listView.setCellFactory(lv -> new ListCell<String>()
        {
            Label label = new Label();              
            Label label2 = new Label();
            HBox hBox = new HBox(label, label2);

            @Override
            public void updateItem(String item, boolean empty)
            {
                super.updateItem(item, empty);
                if (empty) {
                    setGraphic(null);
                }
                else {
                    label.setMaxWidth(Double.MAX_VALUE);
                    HBox.setHgrow(label, Priority.ALWAYS);
                    String[] splitString = item.split("\\s+");
                    label.setText(splitString[0]);
                    label2.setText(splitString[1]);
                    setGraphic(hBox);
                }
            }
        });

        HBox hbox = new HBox(listView);

        Scene scene = new Scene(hbox, 300, 120);
        primaryStage.setScene(scene);
        primaryStage.show();
    }

    public static void main(String[] args)
    {
        Application.launch(args);
    }
}

enter image description here