相逢意气为君饮,系马高楼垂柳边。这篇文章主要讲述android 去除标题栏相关的知识,希望能为你提供帮助。
1.如果你的activity继承自Activity,那么
a.要在style.xml中写入:
<
style name="AppTheme" parent="Theme.AppCompat.Light.DarkActionBar">
<
item name="windowNoTitle">
true<
/item>
<
/style>
b.在androidManifest.xml中的application标签里写入:
android:theme="@style/AppTheme"
2.如果你的activity继承自AppCompatActivity,那么
a.要在style.xml中写入:
<
style name="AppTheme" parent="Theme.AppCompat.Light.DarkActionBar">
<
item name="windowNoTitle">
true<
/item>
<
item name="windowActionBar">
false<
/item>
<
/style>
b.在AndroidManifest.xml中的application标签里写入:
android:theme="@style/AppTheme"
注意:以上两种方式会把所有的页面设置成无标题栏状态。
3.如果你不想设置所有页面都无标题栏,只是个别页面无标题栏
比如:只有MainActivity对应的页面没有标题栏,其他还是默认状态,那么
a.要在style.xml中加上:
<
style name="AppTwoTheme" parent="Theme.AppCompat.Light.DarkActionBar">
<
item name="windowNoTitle">
true<
/item>
<
item name="windowActionBar">
false<
/item>
<
/style>
b.在AndroidManifest.xml中的activity标签里写入:
<
activity android:name=".MainActivity" android:theme="@style/AppTwoTheme">
<
intent-filter>
<
action android:name="android.intent.action.MAIN" />
<
category android:name="android.intent.category.LAUNCHER" />
<
/intent-filter>
<
/activity>
【android 去除标题栏】
推荐阅读
- Android上显示生僻字emoji的办法
- android 反编译网址记录
- Android开发使用的常见第三方框架汇总
- ionic2踩坑之ionic build android报错
- Android Studio 常见命令
- Android的ListView弹动效果
- Android下基于线程池的网络访问基础框架
- Android事件分发机制
- android WebView详解,常见漏洞详解和安全源码