如何创建自定义弹出菜单
我想在 Android 中创建一个自定义弹出菜单,就像所附屏幕截图中的那样。任何指示将不胜感激。
单击“选择名称”按钮后,您会在按钮下方看到一个弹出菜单。
谢谢。
I would like to create a custom PopUp menu in Android like the one in the attached screenshot. Any pointers would be appreciated.
On click of the button "Choose Name" , you see a PopUp menu just below the button.
Thaknks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您应该查看构建自定义对话框。在 Android 中,
Dialog
通常采用弹出窗口的形式。您还可以使用 Activity 来执行此操作,并将对话框主题应用于它(在此 中提到)链接)。You should take a look at building custom dialogs. In Android, a
Dialog
is typically in the form of a popup window. You can also do this with an Activity and apply the Dialog theme to it (mentioned in this link).Sana,
您可能需要考虑为您的应用程序创建自定义
Dialog
:Sana,
You will probably want to look into creating a custom
Dialog
for your application: http://developer.android.com/guide/topics/ui/dialogs.html#CustomDialog