Back to project page notes.
The source code is released under:
Apache License
If you think the Android project notes listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.donnemartin.android.notes.notes; /* w ww . j av a2 s. c o m*/ import android.os.Bundle; import android.support.v4.app.Fragment; import android.view.Window; import android.view.WindowManager; public class NoteCameraActivity extends SingleFragmentActivity { @Override public void onCreate(Bundle savedInstanceState) { // The calls to requestWindowFeature and addFlags must be made before // the activity's view is created in Activity.setContentView // Hide the window title requestWindowFeature(Window.FEATURE_NO_TITLE); // Hide the status bar and other OS-level chrome getWindow().addFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN); super.onCreate(savedInstanceState); } @Override protected Fragment createFragment() { return new NoteCameraFragment(); } }