summaryrefslogtreecommitdiffstats
path: root/core/java/android/service/gesture/IEdgeGestureActivationListener.aidl
blob: 0c9b24a8ae3d10bbaa08db4af624b55004657202 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14

package android.service.gesture;

import android.view.InputEvent;

/** @hide */
interface IEdgeGestureActivationListener {

    /** Called when a gesture is detected that fits to the activation gesture. At this point in
     * time gesture detection is disabled. Call IEdgeGestureHostCallback.restoreState() to
     * recover from this.
     */
    oneway void onEdgeGestureActivation(int touchX, int touchY, int positionIndex, int flags);
}