我有一个布局,我想要在没有标题栏的整个屏幕上显示布局。 onCreate我的活动方法:
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
requestWindowFeature(Window.FEATURE_NO_TITLE);
getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN,
WindowManager.LayoutParams.FLAG_FULLSCREEN);
setContentView(R.layout.home);
}
仍然在顶部获得灰色标题栏。
答案 0 :(得分:1)
在清单文件中的应用程序级别设置android:theme="@android:style/Theme.NoTitleBar"
。
<application
android:icon="@drawable/ic_launcher"
android:label="@string/name"
android:theme="@android:style/Theme.NoTitleBar" >
答案 1 :(得分:0)
您可以通过在应用程序清单中指定标题栏来禁用标题栏。
android:theme="@android:style/Theme.NoTitleBar"
答案 2 :(得分:0)
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
requestWindowFeature(Window.FEATURE_NO_TITLE);
getWindow().setLayout(LayoutParams.FILL_PARENT, LayoutParams.FILL_PARENT);// try this
setContentView(R.layout.home);