在我的应用程序中有一个按钮,当单击该按钮时,将 pop 上下文菜单。如何避免显示上下文菜单?

protected void makeMenu(Menu menu, int context){
    menu.add(_imageMenuItem);
    super.makeMenu(menu, context);
}

class ImageMenuItem extends MenuItem {
    ImageMenuItem() {
        super("Login Screen", 0, 0);
    }
    public boolean onMenu(int i) {
        return false;
    }

    public void run() {
        UiApplication app = (UiApplication) getApplication();
        app.pushScreen(new LoginScreen());
    }
}

最佳答案

您是否通过构造函数向ButtonField添加了样式?

ButtonField button =
    new ButtonField("text", Field.H_CENTRE|ButtonField.CONSUME_CLICK);

07-24 20:37