中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

去除titleBar

發布時間:2020-07-08 11:56:34 來源:網絡 閱讀:396 作者:owlger 欄目:移動開發

    新手學習之作,本文章參考http://android.blog.51cto.com/268543/636134

    本文解決activity全屏顯示問題

    

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

1. Java代碼實現

@Override
publicvoid 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添加:

<resources>

    <!--
        Base application theme, dependent on API level. This theme is replaced
        by AppBaseTheme from res/values-vXX/styles.xml on newer devices.


    -->
    <style name="AppBaseTheme" parent="android:Theme.Light">
        <!--
            Theme customizations available in newer API levels can go in
            res/values-vXX/styles.xml, while customizations related to
            backward-compatibility can go here.


        -->
    </style>

    <!-- Application theme. -->
    <style name="AppTheme" parent="AppBaseTheme">
        <!-- All customizations that are NOT specific to a particular API-level can go here. -->
    </style>

    <style name="AppTheme.NoTitleBar" parent="AppBaseTheme">
        <item name="android:windowNoTitle">true</item>
        <!-- All customizations that are NOT specific to a particular API-level can go here. -->
    </style>

</resources>

這里應該注意,改的最好是Application theme

然后在AndroidManifest.xml文件里,給需要去掉title bar的activity的節點上加上android:theme="@style/NoTitle,代碼如下:

<activity
android:name=".MainActivity"
android:configChanges="orientation|keyboardHidden"
android:theme="@style/AppTheme.NoTitleBar"/>
...


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

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

黔西| 且末县| 和静县| 新干县| 鞍山市| 金平| 延吉市| 钦州市| 交口县| 枞阳县| 琼结县| 科技| 襄汾县| 广丰县| 巴东县| 云南省| 迭部县| 临漳县| 林西县| 郧西县| 温州市| 简阳市| 清远市| 区。| 邢台市| 安龙县| 镇宁| 梓潼县| 兰坪| 西林县| 清镇市| 德庆县| 连云港市| 沙雅县| 绍兴市| 曲松县| 玉田县| 江阴市| 荔波县| 日喀则市| 苏尼特右旗|