如何去掉android头部label的方法

时间:2026-02-15 18:58:50

1、方法一:

在AcdroidMainfest.xml中

<application


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

添加Theme属性,设置为NoTitleBar即可

如何去掉android头部label的方法

2、方法二:

public void onCreate(BundlesavedInstanceState) {

this.requestWindowFeature(Window.FEATURE_NO_TITLE);

super.onCreate(savedInstanceState);


...}

requestWindowFeature(Window.FEATURE_NO_TITLE);


要写在setContentView(R.layoutmain)前面,每个activity页面代码中都加上这一句就可以了
© 2026 途途旅游
信息来自网络 所有数据仅供参考
有疑问请联系站长 site.kefu@gmail.com