2011-10-04 47 views

回答

12

您需要使用OnTouchListener並讓它在Views上監聽TouchEvents

例如:

MyTouchListener l = new MyTouchListener(); 
view.setOnTouchListener(l); 

這裏是什麼MyTouchListener可能看起來像一個例子:

class MyOnTouchListener implements OnTouchListener { 
    public boolean onTouch(View v, MotionEvent event) { 
     switch(event.getAction()) { 
      case MotionEvent.ACTION_DOWN: 
       // touch down code 
       break; 

      case MotionEvent.ACTION_MOVE: 
       // touch move code 
       break; 

      case MotionEvent.ACTION_UP: 
       // touch up code 
       break; 
     } 
     return true; 
    } 
} 
+1

工具,用 'S' –