我有一个带有图像的文本视图,我想在使用触摸文本视图时图像会改变,当使用完成触摸图像将变为旧图像时,我试过这样
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
在使用完成触摸时留下触摸是什么意思