Files
android_translation_layer/src/api-impl/android/gesture/GestureOverlayView.java
2023-06-18 11:28:40 +02:00

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 {
}
}