我正在使用 ActionBarSherlock ,我正在尝试为行背景自定义 activatedBackgroundIndicator 属性。
如果我使用最新的android sdk,没有 ActionBarSherlock ,我可以自定义背景,在 res / values / style.xml 上创建以下样式在 AndroidManifest.xml 上将其定义为 android:theme =“@ style / Theme.Custom”:
<?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 / drawable / 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>
结果显示在屏幕截图中。是一个简单的应用程序,当单击列表项时,只有带有 ListView.CHOICE_MODE_SINGLE 的ListView和 getListView()。setItemChecked(position,true)。
标准选定行的蓝色现在为黄色,效果很好。
当我想使用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 是否支持 android:activatedBackgroundIndicator 功能,或者我忘记实现能够更改默认颜色所需的内容。
有什么想法吗?
答案 0 :(得分:10)
最后我找到了问题的解决方案 这是行适配器中使用的 context 。使用的构造函数如下面的代码所示:
public RowAdapter(Activity activity, ArrayList<String> list) {
this.mContext = activity.getApplicationContext();
this.elements = list;
this.theActivity = activity;
this.inflater = (LayoutInflater) this.mContext.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
}
只需更改上下文:
this.mContext = activity.getApplicationContext()
(应用上下文)
到
this.mContext = activity.getBaseContext()
(活动-上下文)
解决了问题,现在背景是自定义的。
每当您需要操作视图时,请转到活动上下文,否则应用程序上下文就足够了。
这个answer帮助我理解为什么在我的情况下使用 getBaseContext()而不是 getApplicationContext()。