Merge "Reject all touch events in TouchBlockingFrameLayout"
This commit is contained in:
committed by
Android (Google) Code Review
commit
145b2faf58
@@ -31,12 +31,7 @@ public class TouchBlockingFrameLayout extends FrameLayout {
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean onInterceptTouchEvent(MotionEvent ev) {
|
||||
return true;
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean onTouchEvent(MotionEvent event) {
|
||||
return true;
|
||||
public boolean dispatchTouchEvent(MotionEvent ev) {
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user