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.

Peter Mortensen
  • 30,738
  • 21
  • 105
  • 131

2 Answers2

0

Set this in your notification:

PendingIntent contentIntent = PendingIntent.getActivity(this, 0,
                                                        null,
                                                        Intent.FLAG_ACTIVITY_BROUGHT_TO_FRONT);
Peter Mortensen
  • 30,738
  • 21
  • 105
  • 131
kalpana
  • 49
  • 2
  • Kalpana, this will work when we set our notification right? but i dont want to allow the user to pull the notification bar or interact with any of the notification bar items. – Prabhu Swaminathan Aug 24 '11 at 10:02
-1

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"
Peter Mortensen
  • 30,738
  • 21
  • 105
  • 131
Vineet Shukla
  • 23,865
  • 10
  • 55
  • 63