api-impl: misc additions for Oeffi

This commit is contained in:
Julian Winkler
2024-11-22 18:02:54 +01:00
committed by Mis012
parent 7626992241
commit f53ad02e6f
32 changed files with 265 additions and 15 deletions

View File

@@ -17,6 +17,11 @@ public abstract class AbsSpinner extends AdapterView {
haveCustomMeasure = false;
}
public AbsSpinner(Context context, AttributeSet attributeSet, int defStyle) {
super(context, attributeSet, defStyle);
haveCustomMeasure = false;
}
@Override
protected native long native_constructor(Context context, AttributeSet attrs);
protected native void native_setAdapter(long widget, SpinnerAdapter adapter);