No Title Bar Android Theme

前端 未结 7 2068
孤街浪徒
孤街浪徒 2020-12-30 04:18

In my application I want to use the Theme.NoTitleBar, but on the other hand I also don\'t want to loose the internal Theme of the Android OS.. I searched on the net and Foun

相关标签:
7条回答
  • 2020-12-30 05:20

    To Hide the Action Bar add the below code in Values/Styles

    <style name="CustomActivityThemeNoActionBar" parent="@android:style/Theme.Holo.Light">
        <item name="android:windowActionBar">false</item>
        <item name="android:windowNoTitle">true</item>
    </style>
    

    Then in your AndroidManifest.xml file add the below code in the required activity

    <activity
            android:name="com.newbelievers.android.NBMenu"
            android:label="@string/title_activity_nbmenu"
            android:theme="@style/CustomActivityThemeNoActionBar">
    </activity>
    
    0 讨论(0)
提交回复
热议问题