请,你能帮我吗?
我在Java中有listview
在ObservableList或ArrayList中,我有类似的字符串CTAudSvc 2760ctfmon 6176dllhost 6464dllhost 14656DLLML 10920DMedia 6768dwm 1104explorer 6492chrome 2964
但是当我将其放入列表视图时,我看到的是这样的:CTAudSvc 2760ctfmon 6176dllhost 656DLLML 10920DMedia 6768dwm 1104explorer 6492chrome 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>
最佳答案
这是实现此目标的一种方法,但我将采用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);
}
}