Android中自定义ActionBar的背景色等样式style

时间:2021-09-03 14:27:02

Android中想要去自定义ActionBar的背景色等样式。

【折腾过程】

1.自己找代码,发现对应的配置的地方了:

AndroidManifest.xml

1
2
<application
    android:theme="@style/AppTheme" >

找到

/res/values/styles.xml

中的:

1
2
3
<style name="AppTheme" parent="@android:style/Theme.Holo.Light">
    <item name="android:actionModeBackground">@drawable/cab_background_top_xxxstyle</item>
</style>

对应的cab_background_top_xxxstyle是个图片,是深蓝色的,所以效果是:

Android中自定义ActionBar的背景色等样式style

2.而此处,由于背景色不是通过的Color去定义的,所以无法很简单的通过直接改color而达到改变背景色的效果。

所以只能去考虑换一个这个drawable的png图片。

但是发现该图片时那种9 pitch的,但是自己目前不太懂,不会生成,所以要去研究那个:

【记录】研究Android中的9 patch的图片的原理以及如何去生成对应图片

3.然后看到:

http://jgilfelt.github.io/android-actionbarstylegenerator/

中有帮忙生成actionbar的9patch的图片的,所以去试了试:

Android中自定义ActionBar的背景色等样式style

Android中自定义ActionBar的背景色等样式style

Android中自定义ActionBar的背景色等样式style

Android中自定义ActionBar的背景色等样式style

然后下载到:

actionbar_style_rocksensor.zip

解压后,得到很多对应的文件:

Android中自定义ActionBar的背景色等样式style

然后去把所有文件都拷贝到项目中,去试试效果:

Android中自定义ActionBar的背景色等样式style

效果还不错。

【总结】

以后如果想要换整体的ActionBar等主题的话,就可以去利用:

Android Action Bar Style Generator