android——studio中去除标题栏

来源:互联网 发布:s7总决赛现场数据 编辑:程序博客网 时间:2024/06/05 06:43

在这里我有两种去除标题栏的方法来给大家分享
方法一 :在AndroidManifest.xml中

       <application        android:allowBackup="true"        android:icon="@mipmap/ic_launcher"        android:label="@string/app_name"        android:roundIcon="@mipmap/ic_launcher_round"        android:supportsRtl="true"        android:theme="@style/Theme.AppCompat.NoActionBar">

在上方代码中的第7行代码为去除标题栏的关键

方法二:在MainActivity获其它Activity中:

         @Override        protected void onCreate(Bundle savedInstanceState) {        super.onCreate(savedInstanceState);        getSupportActionBar().hide();//去掉标题栏        setContentView(R.layout.activity_main);      }

注意:第二种方法必须写在 setContentView()方法上方才有效;

原创粉丝点击