StateListDrawable
似乎会忽略应用于它们包含的drawable的颜色过滤器。例如:
StateListDrawable sld = new StateListDrawable();
Drawable pressedState = Context.getResources().getDrawable(R.drawable.solid_green);
pressedState.setColorFilter(Color.RED, PorterDuff.Mode.SRC);
sld.addState(new int[] {android.R.attr.state_pressed}, pressedState);
// Other states...
如果将sld
应用于视图的背景,则按下时视图的背景会变为稳定的红色。相反,它会变为绿色 - pressedState
的颜色,没有应用过滤器。
答案 0 :(得分:5)
要解决此问题,您必须根据drawable所处的状态将颜色过滤器应用于StateListDrawable
本身。StateListDrawable
的以下扩展可以实现此目的。
public class SelectorDrawable extends StateListDrawable {
public SelectorDrawable(Context c) {
super();
addState(new int[] {android.R.attr.state_pressed}, c.getResources().getDrawable(R.drawable.solid_green));
// Other states...
}
@Override
protected boolean onStateChange(int[] states) {
boolean isClicked = false;
for (int state : states) {
if (state == android.R.attr.state_pressed) {
isClicked = true;
}
}
if (isClicked)
setColorFilter(Color.RED, PorterDuff.Mode.SRC);
else
clearColorFilter();
return super.onStateChange(states);
}
}
onStateChange(int[] states)
中的逻辑可以进一步扩展,以测试不仅仅是按下状态,并且可以相应地应用不同的滤色器。