Full Screen Call for Android

I would like to develop a full screen caller app in android.

How can I add my activity on top of my phone's call screen? Any example?

+2


a source to share


1 answer


I don't really understand your question, but a full screen can be generated with the following code:

 requestWindowFeature(Window.FEATURE_NO_TITLE);
 getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN, WindowManager.LayoutParams.FLAG_FULLSCREEN)

      



note: it's important to call this before setContentView ();

+6


a source







All Articles