我遇到了问题,onTouchEvent会对手指放在屏幕上并移动手指做出反应。那不是我的目标。我想,如果我点击屏幕,OnTouchEvent只会做出反应,之后OnTouchEvent应重新激活,用户必须再次点击。
任何人都可以解决我的问题?我的意思是我的计时器有点棘手,因为我从不离开方法OnTouchEvent。
public boolean onTouchEvent(MotionEvent me){
if(!started){
started = true;
taptostart.setVisibility(View.GONE);
expla.setVisibility(View.GONE);
//start the timer
timer.schedule(new TimerTask() {
@Override
public void run() {
handler.post(new Runnable() {
@Override
public void run() {
changePos();
}
});
}
}, 0, 20);
}else{
activateHo();
}
return false;
}
答案 0 :(得分:1)
public boolean onTouchEvent(MotionEvent me){
if(me.getAction() == MotionEvent.ACTION_DOWN){
//Do what you want here, when the view is touched
}
return false;
}