0

我搜索并找不到我的问题独有的解决方案。我需要用背景图像替换下面的背景颜色。非常感谢您的帮助。

编辑:问题解决了。我试图编辑错误的 xml 文件。

<resources>
    <style name='CustomTitleBackground'>
        <item name='android:background'>#3b5998</item>
    </style>
    <style name='CustomTheme' parent='android:Theme'>
        <item name='android:windowTitleSize'>45dip</item>
        <item name='android:windowTitleBackgroundStyle'>@style/CustomTitleBackground</item>
     </style>
</resources>
4

1 回答 1

1

你不能这样做:

<style name='CustomTitleBackground'>
  <item name='android:background'>@drawable/my_background_image</item>
</style>

?

于 2012-04-20T22:59:41.163 回答