Full Screen Call for Android
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 to share