android:有关于为应用程序创建菜单的教程吗?
我需要一个非常简单的菜单,它可能只包含一个或两个项目:设置/选项,按下其中之一应该显示一些客户定义的参数(称为对话框),例如显示的结果数。有没有关于创建此类菜单的好的教程?我看过android中的“记事本”示例,它并没有真正的帮助。
I need a very simple menu which probably contains only one or two items: settings/options, where pressing one of them should show some customer defined parameters (is it called dialog), e.g., number of results shown. Is there any good tutorial on creating such kind of menus? I've looked at the "notepad" example in android, it doesn't really help.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
根据您的要求,这些是“选项菜单”或“上下文菜单”,创建它们非常容易。以下是开发人员网站上页面的链接,解释了如何做菜单。
以下是选项菜单代码的基本示例,改编自我的游戏:
编辑:有关
AlertDialogs
的一些详细信息,请参阅注释Depending on what you're asking for, these are either "Options Menus" or "Context Menus", and creating them is very easy. Here's a link to the page on the Developers' Website explaining how to do menus.
Here's a basic example of code for options menus, adapted from my game:
Edit: See the comments for some details on
AlertDialogs