web-dev-qa-db-ja.com

JavaFX 2のコンボボックス選択項目

JavaFXには、国が設定されたコンボが1つあります。

私のオブジェクト:

public static class CountryObj {

    private  String TCountryDescr;
    private  String TCountryCode;        

    private CountryObj(String CountryDescr,String CountryCode) {
        this.TCountryDescr = CountryDescr;         
        this.TCountryCode = CountryCode;             
    }  
    public String getTCountryCode() {
        return TCountryCode;
    }
    public void setTCountryCode(String fComp) {
        TCountryCode= fComp;
    }         
    public String getTCountryDescr() {
        return TCountryDescr;
    }
    public void setCountryDescr(String fdescr) {
        TCountryDescr = fdescr;
    }                 
    @Override
    public String toString() {
        return TCountryDescr;
    }

}    

その後、私は私の観察可能なリストを持っています:

private final ObservableList<CountryObj> CountrycomboList =
    FXCollections.observableArrayList(
                 new CountryObj ("United States", "US"),
                 new CountryObj ("United Kingdom", "UK"),
                 new CountryObj ("France", "FR"),
                 new CountryObj ("Germany", "DE"));    

それから私のコンボ。国の名前が表示されており、私自身が使用する国のコードを取得できること:

private ComboBox<CountryObj> cCountry1 = new ComboBox<>();

cbCountry1.setItems(CountrycomboList);

cbCountry1.getSelectionModel().selectedItemProperty().addListener(new                  ChangeListener<CountryObj>() {

        @Override
        public void changed(ObservableValue<? extends CountryObj> arg0, CountryObj arg1, CountryObj arg2) {
            if (arg2 != null) {
                System.out.println("Selected Country: " + arg2.getTCountryCode());
            }
        }
    });

どのように自動選択できますか?ドイツ。国のコードしかわからない場合は? 「DE」

16
Elias Elias

数ヶ月前の質問ですが、ここではそのようなタイプの問題に対するよりエレガントなソリューションです。

CountryObjクラスを変更し、以下のようにhashCodeおよびequals関数をオーバーライドします。

public class CountryObj {
 private  String TCountryDescr;
private  String TCountryCode;        

public CountryObj(String CountryDescr,String CountryCode) {
    this.TCountryDescr = CountryDescr;         
    this.TCountryCode = CountryCode;             
}  
public String getTCountryCode() {
    return TCountryCode;
}
public void setTCountryCode(String fComp) {
    TCountryCode= fComp;
}         
public String getTCountryDescr() {
    return TCountryDescr;
}
public void setCountryDescr(String fdescr) {
    TCountryDescr = fdescr;
}                 
@Override
public String toString() {
    return TCountryDescr;
}   
@Override
public int hashCode() {
    int hash = 0;
    hash += (TCountryCode != null ? TCountryCode.hashCode() : 0);
    return hash;
}

@Override
public boolean equals(Object object) {
     String otherTCountryCode = "";
    if (object instanceof Country) {
        otherTCountryCode = ((Country)object).TCountryCode;
    } else if(object instanceof String){
        otherTCountryCode = (String)object;
    } else {
        return false;
    }   

    if ((this.TCountryCode == null && otherTCountryCode != null) || (this.TCountryCode != null && !this.TCountryCode.equals(otherTCountryCode))) {
        return false;
    }
    return true;
  }    
}

これで、次のステートメントを実行する場合のコードで、自動的に「ドイツ」が選択されます。

cmbCountry.getSelectionModel().select("DE")

CountryObjのオブジェクトを上記のselectメソッドに渡すこともできます。

12
A J Qarshi
    comboBox.getSelectionModel().select(indexOfItem);
or
    comboBox.setValue("item1");

最も簡単な解決策は、ObservableListで一致するCountryObjを見つけるautoSelect関数を記述することだと思います。正しいCountryObjを見つけたら、コンボボックスにその値として設定するように指示します。次のようになります...

private void autoSelectCountry(String countryCode)
{
    for (CountryObj countryObj : countryComboList)
    {
        if (countryObj.getTCountryCode().equals(countryCode))
        {
            cbCountry1.setValue(countryObj);
        }
    }
}

編集:

これは、すべてのComboBox'es異なるタイプのパラメーターを使用します。

public static <T> void autoSelectComboBoxValue(ComboBox<T> comboBox, String value, Func<T, String> f) {
    for (T t : comboBox.getItems()) {
        if (f.compare(t, value)) {
            comboBox.setValue(t);
        }
    }
}

ここで、Funcはインターフェースです:

public interface Func<T, V> {
    boolean compare(T t, V v);
}

この方法を適用する方法:

autoSelectComboBoxValue(comboBox, "Germany", (cmbProp, val) -> cmbProp.getNameOfCountry().equals(val));
8
Brendan

両方のcomboBoxが同じ配列、アセンブリ列1および2からのものである場合、それらは同じシーケンスを持ちます。その後、インデックスを使用できます。

a = comboBox1.getSelectionModel().getSelectedIndex(); 
comboBox2.getSelectionModel().select(a);

「米国」はインデックス位置1にあります「米国」もインデックス位置1にあります:

comboBox2.getSelectionModel().select(1); // is "US"
2
Matthes

BrendanとBranislav Lazicのソリューションは完璧ですが、autoSelectComboBoxValueメソッドの呼び出しを改善できます:

public static <T, V> void autoSelectComboBoxValue(ComboBox<T> comboBox, V value, Func<T, V> f) {...}

:)

0
michael laudrup