选择 Blackberry ListField 中的项目
我一直在使用这本书作为创建 Blackberry 应用程序的参考。到目前为止,我有一个项目列表,当我选择一个项目时,我会看到侧面菜单,但在我的列表项目旁边:
只是查看我的方法,我不确定是哪一个导致了此问题,因为我可以从菜单中删除自定义项 (GetValue),并且当我选择列表项时它仍然会出现在此处!
我想我的问题是,如何停止出现此菜单并改为使用方法火?如果需要,我可以提供代码,但我不知道从哪里开始!
谢谢
I've been using this book as reference to creating my Blackberry application. So far I have a list of items and when I select one I get the side menu but next to my list item:
Just looking through my methods, I'm not sure which one causes this as I can remove the custom item (GetValue) from the Menu and it will still appear here when I select the list item!
I guess my question is, how can I stop this menu appearing and have a method fire instead? I can provide code if necessary but I don't know where to start with this one!
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以在调用该方法时显示您的代码吗?
当我重写 ListField 类的 navigationClick 方法(如下面的代码所示)时,它可以正常工作。 (没有弹出菜单)
}
Can you show your code when invoking the method.
When I override the navigationClick method of the ListField class like in the code below it works properly. (no menu pops)
}
@ing0
您可以使用 OnMenu() 方法覆盖默认菜单
public boolean onMenu(int i)
{
@ing0
You can override default menu by using OnMenu() method
public boolean onMenu(int i)
{