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

/frameworks/support/v7/appcompat/src/android/support/v7/widget/
H A DThemedSpinnerAdapter.java108 private LayoutInflater mDropDownInflater; field in class:ThemedSpinnerAdapter.Helper
124 mDropDownInflater = null;
126 mDropDownInflater = mInflater;
129 mDropDownInflater = LayoutInflater.from(context);
139 return mDropDownInflater == null ? null : mDropDownInflater.getContext().getTheme();
151 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 DArrayAdapter.java104 private LayoutInflater mDropDownInflater; field in class:ArrayAdapter
439 mDropDownInflater = null;
441 mDropDownInflater = mInflater;
444 mDropDownInflater = LayoutInflater.from(context);
450 return mDropDownInflater == null ? null : mDropDownInflater.getContext().getTheme();
456 final LayoutInflater inflater = mDropDownInflater == null ? mInflater : mDropDownInflater;
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;

Completed in 297 milliseconds