How to set activity to fullscreen mode in Android? [duplicate] How to set activity to fullscreen mode in Android? [duplicate] android android

How to set activity to fullscreen mode in Android? [duplicate]


please check the code

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);}

and note it is set before setting the content view


try this in AndroidManifest:

<activity android:name=".ActivityName"    android:label="@string/app_name"    android:theme="@android:style/Theme.NoTitleBar.Fullscreen"></activity>


requestWindowFeature(Window.FEATURE_NO_TITLE);getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN,                         WindowManager.LayoutParams.FLAG_FULLSCREEN);