Files
android_translation_layer/src/api-impl/android/gesture/GestureOverlayView.java

28 lines
542 B
Java
Raw Normal View History

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