I have one Activity
which has content view having its root view as FrameLayout
, i want to hide bottom bar's soft keys for which i have added following code inside onCreate of myActivity but it doesn't effect anything.
FrameLayout frameLayout = (FrameLayout)this.findViewById(R.id.myframe);
frameLayout.setSystemUiVisibility(View.SYSTEM_UI_FLAG_LOW_PROFILE);
Is there any permission or extra code which i need to add?
Thanks in advance :)
Note : I am trying this on Android HoneyComb(API 13)