有textView中的图片,我希望在使用触摸textView时,图片会改变,然后在触摸停止时,还显示原来的图片。
代码:
tv_addToBasket.setOnTouchListener(new OnTouchListener() {
@Override
public boolean onTouch(View v, MotionEvent event) {
// TODO Auto-generated method stub
if (event.getAction() == MotionEvent.ACTION_DOWN) {
tv_addToBasket.setCompoundDrawablesWithIntrinsicBounds(0, R.drawable.favorite, 0, 0);
}
return false;
}
});
但是不知道MotionEven
怎么结束触摸?