Android:在某些操作上显示弹出菜单?
好的,我知道当用户长时间单击某个项目时,您可以创建一个上下文菜单...但是我可以做到这样,当用户双击该项目或屏幕时,就会出现弹出菜单吗?谢谢
Ok so I know you can create a context menu when a user long clicks on an item...but can I make it so the pop-up menu appears when a user lets say double taps on the item or screen? Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以显示如下警报对话框:
You could show an alert dialog like this:
当您检测到所需的手势时,可以调用
在适当的视图上使用 showContextMenu()
,它将使用与您已经熟悉的上下文菜单相同的机制。不过,您应该尽可能与平台保持一致。 :)When you detect the gesture you want you can invoke
showContextMenu()
on the appropriate View which will use the same mechanisms as the context menus you're already familiar with. You should try to stay consistent with the platform when possible though. :)