Showing posts with label Android app in full screen mode. Show all posts
Showing posts with label Android app in full screen mode. Show all posts

January 29, 2011

Running a Android Application in Full Screen Mode

In order to run the application in full screen mode you should add the following code to your activity.
getWindow().setFlags(WindowManager.LayoutParams.NO_STATUS_BAR_FLAG,
                   WindowManager.LayoutParams.NO_STATUS_BAR_FLAG);