Searched refs:mInflater (Results 1 - 25 of 66) sorted by last modified time

123

/frameworks/support/v7/appcompat/src/android/support/v7/app/
H A DAlertController.java848 public final LayoutInflater mInflater; field in class:AlertController.AlertParams
905 mInflater = (LayoutInflater) context.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
967 (RecycleListView) mInflater.inflate(dialog.mListLayout, null);
1008 return mInflater.inflate(dialog.mMultiChoiceItemLayout,
/frameworks/support/v7/appcompat/src/android/support/v7/view/
H A DContextThemeWrapper.java42 private LayoutInflater mInflater; field in class:ContextThemeWrapper
168 if (mInflater == null) {
169 mInflater = LayoutInflater.from(getBaseContext()).cloneInContext(this);
171 return mInflater;
/frameworks/support/v7/appcompat/src/android/support/v7/view/menu/
H A DBaseMenuPresenter.java43 protected LayoutInflater mInflater; field in class:BaseMenuPresenter
70 mInflater = LayoutInflater.from(mContext);
H A DListMenuItemView.java63 private LayoutInflater mInflater; field in class:ListMenuItemView
302 if (mInflater == null) {
303 mInflater = LayoutInflater.from(getContext());
305 return mInflater;
H A DListMenuPresenter.java47 LayoutInflater mInflater; field in class:ListMenuPresenter
72 mInflater = LayoutInflater.from(mContext);
89 mInflater = LayoutInflater.from(mContext);
92 if (mInflater == null) {
93 mInflater = LayoutInflater.from(mContext);
105 mMenuView = (ExpandedMenuView) mInflater.inflate(
267 convertView = mInflater.inflate(mItemLayoutRes, parent, false);
H A DMenuAdapter.java42 private final LayoutInflater mInflater; field in class:MenuAdapter
46 mInflater = inflater;
93 convertView = mInflater.inflate(ITEM_LAYOUT, parent, false);
/frameworks/support/v7/appcompat/src/android/support/v7/widget/
H A DThemedSpinnerAdapter.java107 private final LayoutInflater mInflater; field in class:ThemedSpinnerAdapter.Helper
112 mInflater = LayoutInflater.from(context);
126 mDropDownInflater = mInflater;
151 return mDropDownInflater != null ? mDropDownInflater : mInflater;
H A DViewStubCompat.java47 private LayoutInflater mInflater; field in class:ViewStubCompat
135 mInflater = inflater;
142 return mInflater;
199 if (mInflater != null) {
200 factory = mInflater;
/frameworks/support/v7/mediarouter/src/android/support/v7/app/
H A DMediaRouteChooserDialog.java248 private final LayoutInflater mInflater; field in class:MediaRouteChooserDialog.RouteAdapter
256 mInflater = LayoutInflater.from(context);
283 view = mInflater.inflate(R.layout.mr_chooser_list_item, parent, false);
/frameworks/support/core-ui/java/android/support/v4/view/
H A DAsyncLayoutInflater.java70 LayoutInflater mInflater; field in class:AsyncLayoutInflater
75 mInflater = new BasicInflater(context);
99 request.view = mInflater.inflate(
186 request.view = request.inflater.mInflater.inflate(
/frameworks/support/core-ui/java/android/support/v4/widget/
H A DResourceCursorAdapter.java37 private LayoutInflater mInflater; field in class:ResourceCursorAdapter
56 mInflater = (LayoutInflater) context.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
84 mInflater = (LayoutInflater) context.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
101 mInflater = (LayoutInflater) context.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
112 return mInflater.inflate(mLayout, parent, false);
117 return mInflater.inflate(mDropDownLayout, parent, false);
/frameworks/support/frameworks/support/samples/Support4Demos/src/com/example/android/supportv4/app/
H A DLoaderCustomSupport.java367 private final LayoutInflater mInflater; field in class:LoaderCustomSupport.AppListAdapter
371 mInflater = (LayoutInflater)context.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
390 view = mInflater.inflate(R.layout.list_item_icon_text, parent, false);
/frameworks/support/samples/Support4Demos/src/com/example/android/supportv4/app/
H A DLoaderCustomSupport.java367 private final LayoutInflater mInflater; field in class:LoaderCustomSupport.AppListAdapter
371 mInflater = (LayoutInflater)context.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
390 view = mInflater.inflate(R.layout.list_item_icon_text, parent, false);
/frameworks/opt/timezonepicker/src/com/android/timezonepicker/
H A DTimeZoneFilterTypeAdapter.java84 private LayoutInflater mInflater; field in class:TimeZoneFilterTypeAdapter
92 mInflater = (LayoutInflater) context.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
117 v = mInflater.inflate(R.layout.time_zone_filter_item, null);
H A DTimeZoneResultAdapter.java79 private LayoutInflater mInflater; field in class:TimeZoneResultAdapter
95 mInflater = (LayoutInflater) context.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
271 v = mInflater.inflate(R.layout.empty_time_zone_item, null);
277 v = mInflater.inflate(R.layout.time_zone_item, null);
/frameworks/opt/chips/src/com/android/ex/chips/
H A DDropdownChipLayouter.java63 private final LayoutInflater mInflater; field in class:DropdownChipLayouter
71 mInflater = inflater;
203 return mInflater.inflate(getItemLayoutResId(type), null);
219 return convertView != null ? convertView : mInflater.inflate(itemLayout, parent, false);
/frameworks/base/tests/TransitionTests/src/com/android/transitiontests/
H A DResourceLoadingTest.java35 TransitionInflater mInflater; field in class:ResourceLoadingTest
47 mInflater = TransitionInflater.from(this);
/frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/bars/
H A DOverflowMenuAdapter.java75 LayoutInflater mInflater = LayoutInflater.from(context);
76 convertView = mInflater.inflate(com.android.internal.R.layout.popup_menu_item_layout,
/frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/impl/
H A DRenderSessionImpl.java125 private BridgeInflater mInflater; field in class:RenderSessionImpl
200 mInflater = new BridgeInflater(context, params.getLayoutlibCallback());
201 context.setBridgeInflater(mInflater);
345 view = mInflater.inflate(mBlockParser, mContentRoot);
358 mInflater.onDoneInflation();
698 final View child = mInflater.inflate(blockParser, parentView, false /*attachToRoot*/);
1106 mInflater.postInflateProcess(view);
/frameworks/base/packages/SystemUI/src/com/android/systemui/volume/
H A DSegmentedButtons.java38 protected final LayoutInflater mInflater; field in class:SegmentedButtons
47 mInflater = LayoutInflater.from(mContext);
78 return (Button) mInflater.inflate(R.layout.segmented_button, this, false);
H A DZenModePanel.java98 protected final LayoutInflater mInflater; field in class:ZenModePanel
147 mInflater = LayoutInflater.from(mContext.getApplicationContext());
393 final View rb = mInflater.inflate(mZenModeButtonLayoutId, mEdit, false);
396 final View rbc = mInflater.inflate(mZenModeConditionLayoutId, mEdit, false);
/frameworks/base/services/core/java/com/android/server/
H A DInputMethodManagerService.java3703 private final LayoutInflater mInflater; field in class:InputMethodManagerService.ImeSubtypeListAdapter
3714 mInflater = context.getSystemService(LayoutInflater.class);
3720 : mInflater.inflate(mTextViewResourceId, null);
/frameworks/base/tests/ImfTest/src/com/android/imftest/samples/
H A DDialogActivity.java35 private LayoutInflater mInflater; field in class:DialogActivity
H A DEditTextActivityDialog.java39 private LayoutInflater mInflater; field in class:EditTextActivityDialog
H A DInputTypeActivity.java36 private LayoutInflater mInflater; field in class:InputTypeActivity
51 mInflater = getLayoutInflater();
145 View view = mInflater.inflate(R.layout.sample_edit_text, mParent, false);

Completed in 546 milliseconds

123