冲突列表字段点击&菜单点击
在我的应用程序中,我已将列表字段放在屏幕上。现在我的问题是,当我单击列表项(当列表项具有焦点时)时,它会在打开菜单时执行活动。
我想在单击列表时禁用菜单。我希望,如果我单击列表项,它应该只执行项目单击事件中定义的必要任务,而不显示菜单。
有人对此有一些想法吗?
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
重写
ListField
的navigationClick()
以使用点击事件(应返回 true),而不调用super.navigationClick()
:Override the
navigationClick()
for yourListField
to consume the click event (should return true) without callingsuper.navigationClick()
: