Disable touch event for notification bar in Android

1.2k Views Asked by At

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.

2

There are 2 best solutions below

2
On

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"
1
On

Set this in your notification:

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