0

我是黑莓新手,被困在一个地方。我有一个自定义下拉菜单,我希望如果我从菜单中选择第二个选项,则应添加一个字段,如果我从菜单中选择第一个选项,则应再次添加相同的字段被删除。这是我的自定义下拉菜单。

       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;
}

我搜索并发现我需要在运行时重建屏幕但无法弄清楚如何去做。

4

1 回答 1

0

首先创建一个字段管理器并将其添加到您的屏幕。

 VerticalFieldManager title1;
 title1=new VerticalFieldManager(FIELD_HCENTER)
           {

           };
 title1.add(new NullField());
 add(title1);

现在,当您在下拉列表中选择第二项时,请执行以下操作 -

title1.deleteAll();
title1.add(add your field);//here add your field to title1.
title1.invalidate();

当您单击下拉菜单中的第一项时,-

title1.deleteAll();
title1.invalidate();
于 2013-02-12T06:01:29.517 回答