Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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

share|improve this question
Please post the link to where you got this text – Simon Jan 2 at 21:43
You can open the apk and check the manifest for it. It is a normal zip file, and you can get it with most app managers – jadkik94 Jan 2 at 22:03

1 Answer

up vote 2 down vote accepted

It is probably

android.permission.SYSTEM_ALERT_WINDOW 

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

share|improve this answer
actually I want to do this, see my quesyion stackoverflow.com/questions/14127264/… – sunshine Jan 2 at 21:52
You can see this in the source here grepcode.com/file/repository.grepcode.com/java/ext/… – Simon Jan 2 at 21:53
can you help me?? How can I change color of full screen?.. – sunshine Jan 2 at 21:58
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 2 at 22:00

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.