Files
lawnchair/src/com/android/launcher3/util/TouchController.java
Hyunyoung Song 645764e3e5 Pull up all apps interaction
First phase implementation: dragging and animation interaction is implemented
namely in two classes. ScrollGestureDetector and AllAppsTransitionController.

FeatureFlag.LAUNCHER#_ALL_APPS_PULL_UP will be true for only AOSP and
not in the extending builds. This way, we can safely iterate without
turning it on the shipped ready version.
b/28917826

Change-Id: I0501309c0121880ffe0555f82d6ac5a145581bb1
2016-06-06 14:19:02 -07:00

9 lines
201 B
Java

package com.android.launcher3.util;
import android.view.MotionEvent;
public interface TouchController {
boolean onTouchEvent(MotionEvent ev);
boolean onInterceptTouchEvent(MotionEvent ev);
}