Android 标题栏之隐藏
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Android 标题栏之隐藏相关的知识,希望对你有一定的参考价值。
隐藏标题栏
方法【1】、 在Activity的OnCreate()方法里加上requestWindowFeature(Window.FEATURE_NO_TITLE);
即:(记住:这句代码要写在setContentView()前面)
void onCreate(Bundle savedInstanceState) { ... requestWindowFeature(Window.FEATURE_NO_TITLE); ... }
方法【2】、 在配置文件androidManifest.xml中,关键在android:theme=""
(1)隐藏整个项目的标题栏:
//-->这里的theme引用的是系统自带的style
<application android:icon="@drawable/icon" android:label="@string/app_name" android:theme="@android:style/Theme.NoTitleBar">
//-->这里的theme引用的是自定义的style
先在style.xml里添加
<?xml version="1.0" encoding="UTF-8" ?>
<resources>
<style name="MyStyleNoTitle">
<item name="android:windowNoTitle">true</item>
</style>
</resources>
然后在AndroidManifest.xml中引用
<application android:icon="@drawable/icon" android:label="@string/app_name" android:theme="@style/MyStyleNoTitle">
(2)隐藏某个Activity的标题栏:
<activity android:name="某个acivity的包路径" android:label="@string/app_name" android:theme="@android:style/Theme.NoTitleBar" //这里的theme可以用自定义
</activity>
以上是关于Android 标题栏之隐藏的主要内容,如果未能解决你的问题,请参考以下文章
Android仿小米商城底部导航栏之二(BottomNavigationBarViewPager和Fragment的联动使用)