使用自定义标题栏,同时具有正常主题

时间:2013-07-11 02:38:40

标签: android custom-titlebar

如果我使用众多教程中的一个来创建自定义标题栏,它似乎会改变主题的其余部分。

default theme

theme after custom titlebar

如何更改标题栏,更改主题的其余部分,例如菜单菜单和编辑文本框等

    //mainactivity.java
    requestWindowFeature(Window.FEATURE_CUSTOM_TITLE);
    setContentView(R.layout.activity_main);
    getWindow().setFeatureInt(Window.FEATURE_CUSTOM_TITLE, R.layout.customtitlebar);

    //manifest.
    <application
    android:allowBackup="true"
    android:icon="@drawable/ic_launcher"
    android:label="@string/app_name"
    android:theme="@style/AppTheme">
    <activity
        android:name="com.MediocreFireworks.cheapchug.MainActivity"
        android:label="@string/app_name" 
        android:theme="@style/CustomTheme">
        <intent-filter>
            <action android:name="android.intent.action.MAIN" />
            <category android:name="android.intent.category.LAUNCHER" />
        </intent-filter>
    </activity>


    //style.xml
    <style name="CustomWindowTitleBackground">
    <item name="android:background">#323331</item>
    </style>

    <style name="CustomTheme" parent="android:Theme.Light">
    <item name="android:windowTitleSize">35dip</item>
    <item name="android:windowTitleBackgroundStyle">@style/CustomWindowTitleBackground</item>

1 个答案:

答案 0 :(得分:0)

确定如此想通了,我需要使用android:Theme.Holo.Light这是最新的主题。 并且还可以在values文件夹中使用不同的styles.xml来处理不同的api