src/api-impl: misc stubbing

This commit is contained in:
Mis012
2023-01-09 12:07:57 +01:00
parent eabfaeaeba
commit 4dd31731f9
7 changed files with 53 additions and 3 deletions

View File

@@ -18,6 +18,12 @@ public class ImageView extends View {
native_constructor(context);
}
public ImageView(Context context, AttributeSet attrs, int xxx) {
super(context);
native_constructor(context);
}
private native void native_constructor(AttributeSet attrs);
private native void native_constructor(Context context);