mirror of
https://github.com/LawnchairLauncher/lawnchair.git
synced 2026-02-28 15:56:49 +00:00
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
9 lines
201 B
Java
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);
|
|
}
|