In my app I want to remove completly the softkeys (back, home, etc). I've managed to do that with:
getWindow ( ).getDecorView ( ).setSystemUiVisibility ( View.SYSTEM_UI_FLAG_HIDE_NAVIGATION );
But when I touch the screen it comes back, and does not go away...
I also have "android:theme="@android:style/Theme.NoTitleBar.Fullscreen"
on manifest and
requestWindowFeature(Window.FEATURE_NO_TITLE);
getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN,
WindowManager.LayoutParams.FLAG_FULLSCREEN);
Does not help...
Anyone knows how to get over this?
Thanks.