在Android中禁用通知栏的触摸事件

发布于 2024-12-01 06:34:48 字数 59 浏览 2 评论 0原文

有没有办法在显示我的活动时禁用单击通知栏?

基本上我想锁定通知栏,以便用户无法与其交互。

Is there a way to disable click on the notification bar when my activity is displayed?

Basically I want to lock the notification bar so that the user will not be able to interact with it.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

污味仙女 2024-12-08 06:34:48

在您的通知中设置:

PendingIntent contentIntent = PendingIntent.getActivity(this, 0,
                                                        null,
                                                        Intent.FLAG_ACTIVITY_BROUGHT_TO_FRONT);

Set this in your notification:

PendingIntent contentIntent = PendingIntent.getActivity(this, 0,
                                                        null,
                                                        Intent.FLAG_ACTIVITY_BROUGHT_TO_FRONT);
忘年祭陌 2024-12-08 06:34:48

您可以将您的活动设置为全屏。将其添加到清单文件中的活动标记中:

android:theme="@android:style/Theme.NoTitleBar.Fullscreen"

You can make your activity to full screen. Add this to your activity tag in the manifest file:

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