如何在 Android 中创建新菜单来执行特定操作,而无需打开另一个首选项窗口?
如果单击菜单上的按钮,它会打开一个 XML 首选项窗口,但我只希望该按钮调用另一个在我的 sqlite 数据库中创建记录的方法。
If you click a button on the menu it opens up an XML preference window, but I just want the button to call another method that creates a record in my sqlite database.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
为什么不在 onCreateOptionsMenu() 中调用此方法而不膨胀菜单。
Why don't you just call this method in onCreateOptionsMenu() and do not inflate menu.