我知道这个问题已经被问过了,但我不知道如何让它发挥作用。我想更改标题栏的背景。
我不想改变任何关于我的应用程序或背景的风格。
我关注了这个网站上的各种帖子,但似乎没有一个给出令人满意的结果。
我认为这就像设置一样简单
<style name="AppTheme" parent="AppBaseTheme">
<item name="android:windowTitleBackgroundStyle">@drawable/backrepeat</item>
</style>
在styles.xml
然而,这并没有带来任何改变。
为了完整起见,下面是我的反向重复文件
<bitmap
xmlns:android="http://schemas.android.com/apk/res/android"
android:src="@drawable/bg_diamonds"
android:tileMode="repeat"
android:dither="true"
/>
以及 manifest.xml 中的代码
<application
android:allowBackup="true"
android:icon="@drawable/maxmm_start_icon"
android:label="@string/app_name"
android:theme="@style/AppTheme" >