码迷,mamicode.com
首页 > 移动开发 > 详细

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

时间:2014-11-19 12:30:16      阅读:229      评论:0      收藏:0      [点我收藏+]

标签:android   style   blog   http   io   ar   color   sp   for   

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是个图片,是深蓝色的,所以效果是:

bubuko.com,布布扣

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

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

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

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

3.然后看到:

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

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

bubuko.com,布布扣

bubuko.com,布布扣

bubuko.com,布布扣

bubuko.com,布布扣

然后下载到:

actionbar_style_rocksensor.zip

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

bubuko.com,布布扣

 

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

bubuko.com,布布扣

效果还不错。

 

【总结】

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

Android Action Bar Style Generator

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

标签:android   style   blog   http   io   ar   color   sp   for   

原文地址:http://www.cnblogs.com/Free-Thinker/p/4107804.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!