You've already forked android_translation_layer
mirror of
https://gitlab.com/android_translation_layer/android_translation_layer.git
synced 2025-10-27 11:48:10 -07:00
28 lines
542 B
Java
28 lines
542 B
Java
|
|
package android.gesture;
|
||
|
|
|
||
|
|
import android.content.Context;
|
||
|
|
import android.view.ViewGroup;
|
||
|
|
|
||
|
|
public class GestureOverlayView extends ViewGroup {
|
||
|
|
|
||
|
|
public GestureOverlayView(Context context) {
|
||
|
|
}
|
||
|
|
|
||
|
|
public void setGestureStrokeType(int type) {
|
||
|
|
}
|
||
|
|
|
||
|
|
public void setEventsInterceptionEnabled(boolean enabled) {
|
||
|
|
}
|
||
|
|
|
||
|
|
public void setGestureVisible(boolean enabled) {
|
||
|
|
}
|
||
|
|
|
||
|
|
public void addOnGesturePerformedListener(OnGesturePerformedListener listener) {
|
||
|
|
}
|
||
|
|
|
||
|
|
public interface OnGesturePerformedListener {
|
||
|
|
|
||
|
|
}
|
||
|
|
|
||
|
|
}
|