2016-09-06 75 views
0

我在更新列表視圖中的項目時遇到問題,我試圖通過編號更改列表視圖中的字體顏色。JavaFx ListView <Float>設置所有項目的字體顏色

my listView

我的意思是,如果數字是< 6.0,特定項目的字體顏色應該是紅色的,否則就應該是綠色的。 這裏是我試過的代碼:

public void loadMarksListView(String key){ 
    ObservableList<Float> items = FXCollections.observableArrayList(); 
    items.addAll(subjectsMarks.get(key)); 
    marksListView.setItems(items); 

    marksListView.setCellFactory(new Callback<ListView<Float>, ListCell<Float>>() { 
     @Override 
     public ListCell<Float> call(ListView<Float> param) { 
      return new ColoredCell(); 
     } 
    }); 
} 

static class ColoredCell extends ListCell<Float>{ 
    @Override 
    public void updateItem(Float number, boolean empty) { 
     super.updateItem(number, empty); 

     if (Float.parseFloat(number.getClass().toString()) < 6.0f){ 
      this.setTextFill(Color.RED); 
     } 
     else{ 
      this.setTextFill(Color.GREEN); 
     } 
    } 
} 

編輯 堆棧跟蹤

Exception in thread "JavaFX Application Thread" java.lang.NullPointerException 
at main.Controller$ColoredCell.updateItem(Controller.java:88) 
at main.Controller$ColoredCell.updateItem(Controller.java:83) 
at javafx.scene.control.ListCell.updateItem(ListCell.java:480) 
at javafx.scene.control.ListCell.access$300(ListCell.java:72) 
at javafx.scene.control.ListCell$4.invalidated(ListCell.java:299) 
at javafx.beans.property.ObjectPropertyBase.markInvalid(ObjectPropertyBase.java:111) 
at javafx.beans.property.ObjectPropertyBase.set(ObjectPropertyBase.java:146) 
at javafx.scene.control.ListCell.setListView(ListCell.java:305) 
at javafx.scene.control.ListCell.updateListView(ListCell.java:494) 
at com.sun.javafx.scene.control.skin.ListViewSkin.createCell(ListViewSkin.java:292) 
at com.sun.javafx.scene.control.skin.ListViewSkin.lambda$new$366(ListViewSkin.java:99) 
at com.sun.javafx.scene.control.skin.VirtualFlow.getCell(VirtualFlow.java:1777) 
at com.sun.javafx.scene.control.skin.VirtualFlow.getCellLength(VirtualFlow.java:1879) 
at com.sun.javafx.scene.control.skin.VirtualFlow.computeViewportOffset(VirtualFlow.java:2528) 
at com.sun.javafx.scene.control.skin.VirtualFlow.layoutChildren(VirtualFlow.java:1189) 
at javafx.scene.Parent.layout(Parent.java:1087) 
at javafx.scene.Parent.layout(Parent.java:1093) 
at javafx.scene.Parent.layout(Parent.java:1093) 
at javafx.scene.Parent.layout(Parent.java:1093) 
at javafx.scene.Scene.doLayoutPass(Scene.java:552) 
at javafx.scene.Scene$ScenePulseListener.pulse(Scene.java:2397) 
at com.sun.javafx.tk.Toolkit.lambda$runPulse$30(Toolkit.java:355) 
at java.security.AccessController.doPrivileged(Native Method) 
at com.sun.javafx.tk.Toolkit.runPulse(Toolkit.java:354) 
at com.sun.javafx.tk.Toolkit.firePulse(Toolkit.java:381) 
at com.sun.javafx.tk.quantum.QuantumToolkit.pulse(QuantumToolkit.java:510) 
at com.sun.javafx.tk.quantum.QuantumToolkit.pulse(QuantumToolkit.java:490) 
at com.sun.javafx.tk.quantum.QuantumToolkit.lambda$runToolkit$404(QuantumToolkit.java:319) 
at com.sun.glass.ui.InvokeLaterDispatcher$Future.run(InvokeLaterDispatcher.java:95) 
at com.sun.glass.ui.gtk.GtkApplication._runLoop(Native Method) 
at com.sun.glass.ui.gtk.GtkApplication.lambda$null$49(GtkApplication.java:139) 
at java.lang.Thread.run(Thread.java:745) 

進程退出代碼爲完成0

+1

你爲什麼使用Float.parseFloat(number.getClass()。toString())'? 'number.getClass()。toString()'的輸出是一個字符串形式的'class java.lang.Float',並且使用''Float.parseFloat()''方法將會拋出'NumberFormatException' 。也許這就是錯誤:你應該只寫'if(number <6.0f)'。 – aleb2000

+0

這是一個錯誤,但它沒有奏效,堆棧跟蹤表示存在空指針異常。 –

+0

你可以請張貼堆棧跟蹤嗎? – aleb2000

回答

1

的問題是,在你的updateItem()方法,你必須檢查該物品是這樣的空:

static class ColoredCell extends ListCell<Float>{ 
    @Override 
    public void updateItem(Float number, boolean empty) { 
     super.updateItem(number, empty); 

     if(number == null || empty) { 
      setText(null); 
      setGraphic(null); 
     } else { 

      setText(number.toString()); // This line is very important! 

      if (number < 6.0f){ 
       this.setTextFill(Color.RED); 
      } else { 
       this.setTextFill(Color.GREEN); 
      } 
     } 
    } 
} 

編輯: 您必須手動設置單元格的文本,因爲您正在重新定義單元格的渲染方式,因此您必須添加所需的所有圖形組件和值(例如,如果要爲每個圖標添加一個圖標標記,由於您不再使用默認單元格,因此您必須在ColoredCell類中調用setGraphic()方法。

+0

檢查數字是否有效,但仍然無法獲得文字顏色 –

+0

嗯...在這一點上,我不知道什麼可能會導致問題,我會做一些測試,看看我是否找到一種方法做這個工作。 – aleb2000

+0

@UmbertoPalazzini我做了一些測試,發現單元格的文本剛剛消失。問題是你沒有添加任何文本到單元格,爲了做到這一點,你需要調用ListCell的'setText()'方法。 – aleb2000

相關問題