如何获取组合框的选定项目

时间:2011-07-25 10:18:35

标签: java-me combobox lwuit

我正在使用lwuit和j2me。如何获取组合框选中的项目或索引?我找到了setSelectedIndex的功能,但没有找到所选的功能。

2 个答案:

答案 0 :(得分:18)

使用此代码:

combobox.getSelectedIndex(); 

返回列表中当前选定的偏移量。

combobox.getSelectedItem(); 

返回列表中当前选定的项目,如果没有选择,则返回null

答案 1 :(得分:1)

获取您选择的字符串:

String selected_text = ComboBox.getItemAt(ComboBox.getSelectedIndex());