Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在我的一个屏幕中使用 NullField() ,因此默认焦点不应位于任何按钮上。但是当我单击没有字段的屏幕时,正在显示菜单屏幕。我不希望弹出菜单屏幕,当我单击菜单按钮时它应该打开。
非常感谢
覆盖方法。
protected boolean navigationClick(int status, int time) { Field focus = UiApplication.getUiApplication().getActiveScreen() .getLeafFieldWithFocus(); if (focus instanceof NullField) { return true; } return super.navigationClick(status, time); }
注意:此代码仅用于提示。