ANDROID:如何从所有窗口顶部的通知或长按搜索按钮启动弹出对话框?

发布于 2024-12-03 08:23:33 字数 159 浏览 2 评论 0原文

我已经搜索过,一切都是关于启动活动而不是对话框。

我想要做的是在状态栏中显示通知,当用户按下它时,在用户单击通知之前正在查看的内容之上会弹出一个对话框。我不希望对话框显示在主要活动或最近的应用程序列表的顶部。

另外,如何通过长按搜索按钮启动对话框?

谢谢!

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

帅哥哥的热头脑 2024-12-10 08:23:33

我从这里复制:这是

我定义的启动活动的

<activity android:theme="@android:style/Theme.Dialog">

答案现在,当我 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

<activity android:theme="@android:style/Theme.Dialog">

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 use excludeFromRecents=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

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文