i want the button has an effect when click down. so,i use colorfilter
public class ButtonTouchStateListener implements OnTouchListener {
@Override
public boolean onTouch(View v, MotionEvent event) {
switch (event.getAction()) {
case MotionEvent.ACTION_DOWN:
// Log.i("touch");
Drawable drawable = v.getBackground();
drawable.setColorFilter(Color.argb(100, 0, 0, 0), Mode.DST_IN);
v.setBackgroundDrawable(drawable);
// v.setBackgroundDrawable(null);
// drawable = null;
break;
case MotionEvent.ACTION_UP:
case MotionEvent.ACTION_CANCEL:
Drawable drawable2 = v.getBackground();
drawable2.clearColorFilter();
v.setBackgroundDrawable(drawable2);
// drawable2 = null;
break;
}
return false;
}
there are several buttons
l = new ButtonTouchStateListener();
b1.setOnTouchListener(l);
b2.setOnTouchListener(l);
b3.setOnTouchListener(l);
b4.setOnTouchListener(l);
b5.setOnTouchListener(l);
b6.setOnTouchListener(l);
b7.setOnTouchListener(l);
the effect i want is the button will be half-transparent when clicked.
but actually. sometimes when i click the button.all buttons who has the same background will be half-transparent.
but it's ok on android2.3
android2.2 has this problem.
so i think it's a bug on android below 2.3
so,how should i resolve this problem? help me pls.