摘要:[Andropoid] 使用EditText OnTouchListener事件注意事項
在OnTouchListener事件中因為有
MotionEvent.ACTION_DOWN & MotionEvent.ACTION_UP
因此在EditText使用OnTouchListener時,會因為事件太過於敏感,而出現重複事件的情況
要避免這情況發生,就得加上判斷,來防止事件被重複執行
因此可用
if (event.getAction() == MotionEvent.ACTION_DOWN)
or
if (event.getAction() == MotionEvent.ACTION_DOWN)
來解決此問題