- iOS/Objective-C 元类和类别
- objective-c - -1001 错误,当 NSURLSession 通过 httpproxy 和/etc/hosts
- java - 使用网络类获取 url 地址
- ios - 推送通知中不播放声音
我正在使用 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 和 getListView().setItemChecked(position, true) 的 ListView。
标准选定行的蓝色现在是黄色并且效果很好。
当我想使用 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 功能,或者我是否忘记实现能够更改默认颜色所需的东西。
有什么想法吗?
最佳答案
终于找到了解决问题的方法。
它是行适配器中使用的上下文。使用的构造函数如以下代码所示:
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()
( Activity 上下文)
问题解决了,现在背景是自定义的。
Whenever you need to manipulate Views then go for Activity-Context, else Application-Context would be enough.
这answer帮助我理解为什么在我的案例中使用 getBaseContext() 而不是 getApplicationContext()。
关于android - ActionBarSherlock 上 activatedBackgroundIndicator 的自定义背景不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15344320/
我可以更改 attr android:activatedBackgroundIndicator 的默认颜色(蓝色)吗? 我正在为 target 18 和 minimun 11 开发一个应用程序。 谢谢
这个问题在SO上被问了很多,我已经引用了所有的答案。我的抽屉导航中的选定项目仍然保留默认的全息蓝色背景。我是 Java 的新手,我对 .setAdapter() 的“上下文”部分感到困惑。 我的项目是
您好,我正在使用 ActionBarSherlock 和 Navigation Drawer 开发一个应用程序。我创建了一个带有 actionBar Sherlock 的初始抽屉导航,就像这样: 一切
我正在使用 ActionBarSherlock 并尝试为行背景自定义 activatedBackgroundIndicator 属性。 如果我使用最新的 android sdk,没有 ActionBa
我正在寻找如何在显示选择的上下文操作栏时突出显示列表中的选定项目,我找到的解决方案是设置我的行布局的 android:background 属性xml 到 "?android:attr/activat
我是一名优秀的程序员,十分优秀!