Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
有没有办法在显示我的活动时禁用点击通知栏?
基本上我想锁定通知栏,以便用户无法与之交互。
在您的通知中设置:
PendingIntent contentIntent = PendingIntent.getActivity(this, 0, null, Intent.FLAG_ACTIVITY_BROUGHT_TO_FRONT);
您可以将活动设置为全屏。将此添加到清单文件中的活动标记中:
android:theme="@android:style/Theme.NoTitleBar.Fullscreen"