ANDROID:如何从所有窗口顶部的通知或长按搜索按钮启动弹出对话框?
我已经搜索过,一切都是关于启动活动而不是对话框。
我想要做的是在状态栏中显示通知,当用户按下它时,在用户单击通知之前正在查看的内容之上会弹出一个对话框。我不希望对话框显示在主要活动或最近的应用程序列表的顶部。
另外,如何通过长按搜索按钮启动对话框?
谢谢!
I have searched and everything is about launching an activity not a dialog.
What I want to do is to display a notification in the status bar, and when the user presses it a dialog pops up on top of whatever the user was viewing before s/he clicked the notification. I dont want the dialog to show on top of the main activity or the recent apps list.
Also, how can i launch the dialog from long pressing the search button?
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我从这里复制:这是
我定义的启动活动的
答案现在,当我
startActivity()
它显示为对话框,父活动显示在背面时,我想要一个按钮,单击该按钮对话框应关闭,并且父活动应显示而不刷新页面。然后有人添加了评论:
使用
android:theme="@android:style/Theme.Dialog"
是可行的方法,但不要忘记使用excludeFromRecents=true
code> 否则您的对话框将出现在最近使用的应用程序中(按住 Home 键)。对于长按,重写 onKeyLongPress(int keyCode, KeyEvent event) ,您可以使长按执行您想要的操作。
http://developer.android.com/reference/android/view/View。 html
I'm copying from here: Here is answer
to Start activity as dialog i defined
now when i
startActivity()
it display like dialog and parent activity display on back, i wan a button to whom i click dialog should dismiss and parent activity should display without refreshing the page.And then somebody added the comment:
Using the
android:theme="@android:style/Theme.Dialog"
is the way to go but don't forget to useexcludeFromRecents=true
or else your dialog will appear in the Recently Used Apps (hold the Home key).And for the long press, override
onKeyLongPress(int keyCode, KeyEvent event)
and you can make the long press do what you want.http://developer.android.com/reference/android/view/View.html