对于activatedBackgroundIndicator自定义背景上ActionBarSherl

2019-07-21 08:35发布

我使用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_SINGLEgetListView()一个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功能,或者如果我忘了落实能够更改默认的颜色所需要的东西。

有任何想法吗?

Answer 1:

最后,我找到了解决问题的办法。
这是在该行适配器使用的上下文 。 所使用的构造方法是显示在下面的代码段:

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()活动-上下文)
解决了这个问题,现在的背景是自定义的。

每当你需要处理意见,然后去活动-语境 ,否则应用上下文就足够了。

这个答案让我明白,为什么在我的情况下使用getBaseContext()而不是getApplicationContext()。



文章来源: Custom background for activatedBackgroundIndicator on ActionBarSherlock doesn't work