Android Application Programming
Tips & Tricks
Saturday, August 10, 2013
How to remove notification bar
Put this code in your onCreate() method,
this.getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN, WindowManager.LayoutParams.FLAG_FULLSCREEN);
How to remove title bar..
Put this in your onCreate() method.
this.requestWindowFeature(Window.FEATURE_NO_TITLE);
Newer Posts
Older Posts
Home
Subscribe to:
Posts (Atom)