stub some APIs for Flappy Bird, mostly webview related

This commit is contained in:
Julian Winkler
2023-06-18 11:03:43 +02:00
parent c21d8532bc
commit 0454dcbfd5
16 changed files with 150 additions and 6 deletions

View File

@@ -0,0 +1,27 @@
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 {
}
}