有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
怎麼結束觸摸?
MotionEvent.ACTION_DOWN把這個換成MotionEvent.MOVE看有這個嗎??
試試看,down的含義和move的含義不一樣,還有up,自己體會試試!