i want make Fullscreen in android 4.0, i use android:theme="@android:style/Theme.NoTitleBar.Fullscreen"
the action bar is disappear, but the status bar isn't appear
i use
getWindow().getDecorView().setSystemUiVisibility(View.SYSTEM_UI_FLAG_LOW_PROFILE);
before "setContentView()"
OK, FullScreen!! however, when the dialog or popupwindow show, the status bar appear again, i read the source code and find the word :
- There is a limitation: because navigation controls are so important, the least user interaction will cause them to reappear immediately.
can i make fullscreen anytime? help me!