冲突列表字段点击&菜单点击

发布于 2024-11-07 04:22:25 字数 153 浏览 0 评论 0原文

在我的应用程序中,我已将列表字段放在屏幕上。现在我的问题是,当我单击列表项(当列表项具有焦点时)时,它会在打开菜单时执行活动。

我想在单击列表时禁用菜单。我希望,如果我单击列表项,它应该只执行项目单击事件中定义的必要任务,而不显示菜单。

有人对此有一些想法吗?

In my application i have put listfield on the screen. Now my problem is that when i am clicking the list item (while list item has the focus on it) it does activities asopen the menu.

I want to disable the menu while clicking list. I want that if i click the list item it should perform only the necessary task defined in the item click event, Not shown the menu with it.

Any body has some idea about about that?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

没企图 2024-11-14 04:22:25

重写 ListFieldnavigationClick() 以使用点击事件(应返回 true),而不调用 super.navigationClick()

protected boolean navigationClick(int status, int time) {
    Status.show("Clicked on item: " + myList.getSelectedIndex());
    return true;
}

Override the navigationClick() for your ListField to consume the click event (should return true) without calling super.navigationClick():

protected boolean navigationClick(int status, int time) {
    Status.show("Clicked on item: " + myList.getSelectedIndex());
    return true;
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文