我在我的应用程序中使用了 ActionBarSherlock 库。我还需要自定义 ActionBar,所以我添加了一个带有background
参数集的自定义主题,如下所示:
<style name="Widget.Styled.ActionBar" parent="Widget.Sherlock.Light.ActionBar.Solid.Inverse">
<item name="background">@drawable/action_bar_bg</item>
<item name="android:background">@drawable/action_bar_bg</item>
</style>
action_bar_bg
drawable 只是平铺正方形的位图:
<?xml version="1.0" encoding="utf-8"?>
<bitmap xmlns:android="http://schemas.android.com/apk/res/android"
android:dither="true"
android:src="@drawable/bg_img_actionbar"
android:tileMode="repeat" />
我接下来要做的是为整个ActionBar设置一个线性渐变,这样它就会覆盖这个背景。我不知道这是否可能以及如何做到这一点。任何帮助,将不胜感激。