public class FullScreenActivity extends Activity {
    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        requestWindowFeature(Window.FEATURE_NO_TITLE);
        getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN, 
                             WindowManager.LayoutParams.FLAG_FULLSCREEN);
        setContentView(R.layout.main_activity);
    }
}
Thursday, January 10, 2013
Create a Full Screen Activity In Android Application
Add following code snippet within you activity.
Labels:
Android
Subscribe to:
Post Comments (Atom)
No comments:
Post a Comment