我对某些代码有疑问。我想创建一个 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
它总是黑色的,当它被按下时。
有人知道该怎么做吗?