如何在运行时使用StateListDrawable



我的一些代码有问题。我想创建一个ColorPicker DialogFragment。目前,我使用GridView和自定义BaseAdapter来显示一些颜色形状。对于每种颜色,我使用圆形ShapeDrawable。为了设置默认状态的颜色,我使用以下代码:

getView()我的"ColorAdapter"

ImageView imageView;
if (convertView == null) {  
    imageView = new ImageView(ctx);
    imageView.setLayoutParams(new GridView.LayoutParams(85, 85));
    imageView.setScaleType(ImageView.ScaleType.CENTER_CROP);
    imageView.setPadding(8, 8, 8, 8);
} else {
    imageView = (ImageView) convertView;
}
Drawable drawable = ctx.getResources().getDrawable(R.drawable.color_item);
imageView.setBackground(drawable);
StateListDrawable states = (StateListDrawable) imageView.getBackground();
GradientDrawable shape = (GradientDrawable) states.getCurrent();
shape.setColor(colors[i]);
return imageView;

这对我来说很好。

但是当按下图标时,我想更改图标的颜色。所以我使用StateListDrawable

<selector xmlns:android="http://schemas.android.com/apk/res/android" 
     android:constantSize="true" >
     <item 
          android:state_pressed="true"
          android:drawable="@drawable/circle" />
     <item
          android:drawable="@drawable/circle" />
</selector>

但是,因为GridView中的每个条目都有不同的颜色,所以我必须在运行时更改状态的颜色。

正如你所看到的,我在两个州都使用相同的可提取资源。也许我可以设置一个状态的颜色,就像我用states.getCurrent()做的那样?

我还尝试过使用ColorFilter来降低亮度。但当我尝试这样做时,ImageView总是黑色的,当它被按下时。

有人知道怎么做吗?

好的,我找到了一个解决方案。我使用一个有两层的LayerDrawable,第一层包含我的形状,第二层是StateListDrawable。此StateListDrawable包含一个默认状态的空形状和一个阿尔法值较低的灰色形状。所以现在,当我按下我的颜色圆圈时,灰色的形状会覆盖在我的颜色形状上。

相关内容

  • 没有找到相关文章

最新更新