zoukankan      html  css  js  c++  java
  • android 去掉屏幕上的title bar(转载)

    去掉屏幕上的title bar有3个方法:

     

    1. Java代码实现

    @Override
    public void onCreate(Bundle savedInstanceState) {
            super.onCreate(savedInstanceState);

            requestWindowFeature(Window.FEATURE_NO_TITLE); 

            setContentView(R.layout.main);
            //...
    }
    留意这语句所在的位置的,似乎所有requestWindowFeature的操作都要放在setContentView的前面。
     
    但使用这种方法,用户体验不太好,在Activity将要显示时,仍然会出现title bar,然后再去掉的。
     

    2. 自定义style配置文件

    在\res\values里面的style.xml添加:
    <?xml version="1.0" encoding="utf-8"?>
    <resources>
            <style name="NoTitle" parent="android:Theme">
                    <item name="android:windowNoTitle">true</item>
            </style>
    </resources>
    这里的代码应该看明白了吧!
    然后在AndroidManifest.xml文件里,给需要去掉title bar的activity的节点上加上android:theme="@style/NoTitle,代码如下:
    <activity android:name=".MainActivity"
                        android:configChanges="orientation|keyboardHidden"
                        android:theme="@style/NoTitle" />

    3. 直接在AndroidManifest.xml中进行修改

    原来我们可以无需自定义style配置的,直接调用系统的就行了:
    <activity android:name=".MainActivity"
                        android:configChanges="orientation|keyboardHidden"
                        android:theme="@android:style/Theme.NoTitleBar" />
    如果我们要设置整个Application都去掉title bar,那么就设置application:
    <application android:icon="@drawable/lightbulb" android:label="@string/app_name"
                        android:theme="@android:style/Theme.NoTitleBar">
    title bar还能够自定义的,请查看文章《自定义Activity标题栏(Title bar)》http://android.blog.51cto.com/268543/636134
     
     
  • 相关阅读:
    jenkins部署前端node项目实例
    阿里云云盘扩容数据盘_Linux
    输入子系统
    触摸屏设备驱动程序
    LCD设备驱动程序
    IIC设备驱动程序
    看门狗驱动程序
    RTC实时时钟驱动
    网络设备驱动程序数据结构
    Linux 设备驱动模型
  • 原文地址:https://www.cnblogs.com/draem0507/p/2734444.html
Copyright © 2011-2022 走看看