Reject all touch events in TouchBlockingFrameLayout
Bug: 27042494 Change-Id: Ie1400f4c47d812b1f664abc955ee3dfdd03fa4a5
This commit is contained in:
@@ -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