AdapterView: implement setAdapter / getAdapter() properly

This commit is contained in:
Julian Winkler
2024-02-17 15:26:59 +01:00
parent 85f750d76b
commit b9b28619dd
6 changed files with 32 additions and 9 deletions

View File

@@ -13,4 +13,8 @@ public class Spinner extends AbsSpinner {
super(context, attributeSet);
}
public void setAdapter(SpinnerAdapter adapter) {
super.setAdapter(adapter);
}
}