我使用ActionBarSherlock我试图以自定义行背景的activatedBackgroundIndicator属性。
如果我用的是最新的Android SDK中,没有ActionBarSherlock,我能够自定义背景创建的RES /价值/ style.xml以下样式和定义它的AndroidManifest.xml由于Android:主题=“@风格/主题。自定义”:
<?xml version="1.0" encoding="utf-8"?>
<resources>
<style name="Theme.Custom" parent="android:Theme.Holo.Light.DarkActionBar">
<item name="android:activatedBackgroundIndicator">@drawable/activated_background</item>
</style>
</resources>
然后,我RES /绘制/ activated_background.xml包含下面的代码:
<selector xmlns:android="http://schemas.android.com/apk/res/android">
<item android:state_activated="true" android:drawable="@color/row_activated" />
<item android:drawable="@android:color/transparent" />
</selector>
最后,代码用于定义每一行在ListView是:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:background="?android:attr/activatedBackgroundIndicator">
<TextView
android:id="@+id/test_row"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="@string/sample_string"
android:textAppearance="?android:attr/textAppearanceMedium"
android:padding="15dp"/>
</LinearLayout>
其结果示于screenshoot。 是只与ListView.CHOICE_MODE_SINGLE和getListView()一个ListView一个简单的应用程序。setItemChecked(位置,真)当列表项点击。
标准所选行的蓝色,现在是黄色和完美的作品。
当我想用ActionBarSherlock适用相同的定制出现问题。 现在的样式文件是下一个和背景呈现蓝色,而不是定制的黄色。
<?xml version="1.0" encoding="utf-8"?>
<resources>
<style name="Theme.Custom" parent="Theme.Sherlock.Light.DarkActionBar">
<item name="activatedBackgroundIndicator">@drawable/activated_background</item>
<item name="android:activatedBackgroundIndicator">@drawable/activated_background</item>
</style>
<style name="activatedBackgroundIndicator">
<item name="android:background">?android:attr/activatedBackgroundIndicator</item>
</style>
</resources>
我不知道是否ActionBarSherlock支持安卓activatedBackgroundIndicator功能,或者如果我忘了落实能够更改默认的颜色所需要的东西。
有任何想法吗?