Searched refs:mDropDownInflater (Results 1 - 4 of 4) sorted by relevance

/frameworks/support/v7/appcompat/src/main/java/androidx/appcompat/widget/
H A DThemedSpinnerAdapter.java109 private LayoutInflater mDropDownInflater; field in class:ThemedSpinnerAdapter.Helper
125 mDropDownInflater = null;
127 mDropDownInflater = mInflater;
130 mDropDownInflater = LayoutInflater.from(context);
140 return mDropDownInflater == null ? null : mDropDownInflater.getContext().getTheme();
152 return mDropDownInflater != null ? mDropDownInflater : mInflater;
/frameworks/base/core/java/android/widget/
H A DResourceCursorAdapter.java38 private LayoutInflater mDropDownInflater; field in class:ResourceCursorAdapter
58 mDropDownInflater = mInflater;
81 mDropDownInflater = mInflater;
99 mDropDownInflater = mInflater;
118 mDropDownInflater = null;
120 mDropDownInflater = mInflater;
123 mDropDownInflater = LayoutInflater.from(context);
140 return mDropDownInflater.inflate(mDropDownLayout, parent, false);
H A DSimpleAdapter.java67 private LayoutInflater mDropDownInflater; field in class:SimpleAdapter
162 mDropDownInflater = null;
164 mDropDownInflater = mInflater;
167 mDropDownInflater = LayoutInflater.from(context);
173 return mDropDownInflater == null ? null : mDropDownInflater.getContext().getTheme();
178 final LayoutInflater inflater = mDropDownInflater == null ? mInflater : mDropDownInflater;
H A DArrayAdapter.java128 private LayoutInflater mDropDownInflater; field in class:ArrayAdapter
483 mDropDownInflater = null;
485 mDropDownInflater = mInflater;
488 mDropDownInflater = LayoutInflater.from(context);
494 return mDropDownInflater == null ? null : mDropDownInflater.getContext().getTheme();
500 final LayoutInflater inflater = mDropDownInflater == null ? mInflater : mDropDownInflater;

Completed in 129 milliseconds