Android开发如何去除标题栏title

2024-11-13 08:37:56
推荐回答(3个)
回答1:

Android开发去除标题栏title其实非常简单,他有两种方法,一种是在代码中添加,另一种是在AndroidManifest.xml中添加: 1、在代码中实现: 在此方法setContentView(R.layout.main)之前加入: requestWindowFeature(Window.FEATURE_NO_TITLE);标题栏就没有了。 2、在AndroidManifest.xml中实现: 注册Activity时加上如下的一句配置就可以实现。

回答2:

方法1:每个Activity都有一个onCreate方法,如下

public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.history);
}

在其中加入一下代码即可去除标题栏

public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
this.requestWindowFeature(Window.FEATURE_NO_TITLE);//去掉标题栏,一定要在setContentView之前
setContentView(R.layout.history);
}


方法2:在manifest.xml中配置

        android:label="@string/app_name"   
        android:theme="@android:style/Theme.NoTitleBar"> 


除了没有标题栏以外,开发者还可以自定义标题栏,让应用更加美观

回答3:

设置主题,NoTitleBar