我正在开发一个Android应用程序,我想隐藏小屏幕(240x320)的操作栏,但不适用于普通和大屏幕。是否可以隐藏它是否如何?
答案 0 :(得分:4)
然后你需要先获得尺寸..
这里是如何获得维度的:
Display display = getWindowManager().getDefaultDisplay();
int width = display.getWidth();
int height = display.getHeight();
see answers here on how to get the screen dimension
这里是如何隐藏操作栏
getWindow().requestFeature(Window.FEATURE_ACTION_BAR);
getActionBar().hide();
添加v7 支持操作栏用户,代码为:
getWindow().requestFeature(Window.FEATURE_ACTION_BAR);
getSupportActionBar().hide();
答案 1 :(得分:2)
隐藏Android 4.0及更低版本的状态栏
<application
...
android:theme="@android:style/Theme.Holo.NoActionBar.Fullscreen" >
...
或者 必须在设置布局之前。
requestWindowFeature(Window.FEATURE_NO_TITLE);
有关详细信息,请访问Here。