我有时想在我的应用程序中抑制触摸屏输入。
我试过这个:
public boolean dispatchTouchEvent(MotionEvent ev) {
super.dispatchTouchEvent(ev);
return true; // or false
}
但这并没有什么区别...
我有时想在我的应用程序中抑制触摸屏输入。
我试过这个:
public boolean dispatchTouchEvent(MotionEvent ev) {
super.dispatchTouchEvent(ev);
return true; // or false
}
但这并没有什么区别...