copy AutoCompleteTextView from AOSP

copied from main branch (frameworks/base commit 72ea9148bc619515a649cec9029136e42b342d9b)
This commit is contained in:
Julian Winkler
2025-02-11 18:02:46 +01:00
parent 1cf48085ff
commit c725bb32df
9 changed files with 2889 additions and 29 deletions

View File

@@ -17,6 +17,11 @@ public class ContextThemeWrapper extends ContextWrapper {
setTheme(themeResId);
}
public ContextThemeWrapper(Context context, Resources.Theme theme) {
super(context);
this.theme = theme;
}
@Override
public void setTheme(int resid) {
if (theme == null) {