我想在编写消息
时制作类似OS 5.0中的联系人选择为此,我创建了一个以联系人作为数据源的自动填充字段。现在我想添加用户输入,即他在autocompletefield中出现的下拉列表中输入的内容,这样如果联系人在电话簿中不可用,他就可以使用该号码。
答案 0 :(得分:0)
点击此链接:How to get the selected item as String in a Blackberry AutoCompleteField?
public void onSelect(Object selection,int type){
super.onSelect(selection, type);
if(selection != null) {
String selectionAsString = getEditField().getText();
// Do whatever else you need to do with the String.
}
}