我是黑莓新手,被困在一个地方。我有一个自定义下拉菜单,我希望如果我从菜单中选择第二个选项,则应添加一个字段,如果我从菜单中选择第一个选项,则应再次添加相同的字段被删除。这是我的自定义下拉菜单。
public FWCustomChoiceField(final Object choice[]) {
edit_field = GlobalUtils.getImage(Display.getWidth() + "x"+ Display.getHeight() + "bb_dropdown1.png");
this.choice = new Object[choice.length];
this.choice = choice;
text = choice[0].toString();
choiceField = new ListField() {
protected boolean navigationClick(int status, int time) {
//buttonIndexFunctionality(getSelectedIndex());
Field focus = UiApplication.getUiApplication().getActiveScreen().getLeafFieldWithFocus();
if (focus instanceof ListField) {
ChoicePopupScreen popup = new ChoicePopupScreen(20, Display.getHeight()/ 2 - (choice.length * 20), choice);
popup.setChoice(choice);
UiApplication.getUiApplication().pushScreen(popup);
}
return super.navigationClick(status, time);
}
};
choiceField.setSize(1);
choiceField.setCallback(new TestListCallback());
add(choiceField);
invalidate();
}
public int getListFieldIndex()
{
return choiceField.getSelectedIndex();
}
public void setSelIndex(int index) {
this.index = index;
this.text = choice[index].toString();
choiceField.invalidate();
}
public String getValue() {
String value = choice[index1].toString();
return value;
}
public int getSelectedIndex() {
return index;
}
我搜索并发现我需要在运行时重建屏幕但无法弄清楚如何去做。