2

好的,所以我已经按照android 教程尝试设置我的操作栏的样式,但它似乎不起作用

主题.xml

<resources>
    <!-- the theme applied to the application or activity -->
    <style 
        name="CustomActionBarTheme"
        parent="@style/Theme.AppCompat.Light.DarkActionBar">

        <!-- Support library compatibility -->
        <item name="actionBarStyle">@style/MyActionBar</item>
    </style>

    <!-- ActionBar styles -->
    <style 
        name="MyActionBar"
        parent="@style/Widget.AppCompat.Light.ActionBar.Solid.Inverse">

        <!-- Support library compatibility -->
        <item name="background">@drawable/actionbar_background</item>
    </style>
</resources>

清单.xml

<application
    android:allowBackup="true"
    android:icon="@drawable/ic_launcher"
    android:label="@string/app_name"
    android:theme="@style/CustomActionBarTheme" >

...

我确保在正确的文件夹中有 actionbar_background.png(基本上是一个带有颜色的方形图像)。然而。当我运行起来时,我仍然看到旧的操作栏没有任何改变。

4

0 回答 0