26

DRAW OVER OTHER APPS

Allows the app to draw on top of other applications or parts of the user interface. They may interfere with your use of the interface in any application, or change what you think you are seeing in other applications.

which permission or receiver is associated with above text.

here is image

enter image description here

Bhavesh Hirpara
  • 21,576
  • 12
  • 60
  • 102

1 Answers1

37

It is probably

android.permission.SYSTEM_ALERT_WINDOW 

This would make sense as system alert windows do draw on top of everything.

A--C
  • 35,565
  • 10
  • 102
  • 90
  • actually I want to do this, see my quesyion http://stackoverflow.com/questions/14127264/change-color-brightness-in-android – Bhavesh Hirpara Jan 02 '13 at 21:52
  • You can see this in the source here http://grepcode.com/file/repository.grepcode.com/java/ext/com.google.android/android/4.0.1_r1/frameworks/base/core/res/AndroidManifest.xml – Simon Jan 02 '13 at 21:53
  • I have no idea, I haven't actually coded something like this. I'm guessing since it is a system level alert, it can be transparent touch wise (pass off touch events to whatever it is over). – A--C Jan 02 '13 at 22:00