The application should be displayed on full screen without panels. To do this, I register in the manifest android:theme=" @android :style/Theme.NoTitleBar.Fullscreen"
for the entire application. In android 4.1.2 all panels are removed. When I put the same application on 4.0.4. The top panel (as I understand it belongs to the activity) is removed, and the bottom (system) remains.
Can I hide the system panel in this version of the android? Is it possible to do this without root?
Update: found the following options:
//Скрывает значки на панели, вернее превращает их в маленькие точки, панель не скрывает View.setSystemUiVisibility(View.SYSTEM_UI_FLAG_LOW_PROFILE ); //Судя по описанию должна скрывать панель, но у меня, опять-таки не работает View.setSystemUiVisibility(View.SYSTEM_UI_FLAG_HIDE_NAVIGATION); //То же самое, тоже не работает View.setSystemUiVisibility(View.SYSTEM_UI_FLAG_FULLSCREEN);
There is no solution yet.