0

我对某些代码有疑问。我想创建一个 ColorPicker DialogFragment。目前我使用 aGridView和 customBaseAdapter来显示一些颜色形状。对于每种颜色,我使用一个 round ShapeDrawable。要设置默认状态的颜色,我使用以下代码:

我的“ColorAdapter”的getView()

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()

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

有人知道该怎么做吗?

4

1 回答 1

0

好的,我找到了解决方案。我使用 aLayerDrawable有两层,第一层包含我的形状,第二层 a StateListDrawable。这StateListDrawable包含一个默认状态的空形状和一个具有较低 alpha 值的灰色形状。所以现在,当我按下我的色环时,灰色的形状会覆盖我的颜色形状。

于 2015-03-03T21:09:33.540 回答