在Android 2.2 和2.3 系统中 Button 控件的onTouchEvent
public boolean onTouch(View v, MotionEvent event) {
  Log.i(TAG, "event:" + event.getAction()) ;
  if (MotionEvent.ACTION_DOWN == event.getAction()) {
  Log.i(TAG, "event:" + event.getAction()) ;
  } else if (MotionEvent.ACTION_UP == event.getAction()) {
  Log.i(TAG, "event:" + event.getAction()) ;
 }
}当Button按下不放,大约30秒,就自动相应Up时间?有哪位知道这是怎么回事吗?非常感谢!androidbuttonup