Searched defs:mLayoutInflater (Results 1 - 12 of 12) sorted by relevance

/frameworks/base/tests/UiBench/src/com/android/test/uibench/recyclerview/
H A DRvArrayAdapter.java26 private LayoutInflater mLayoutInflater; field in class:RvArrayAdapter
47 if (mLayoutInflater == null) {
48 mLayoutInflater = LayoutInflater.from(viewGroup.getContext());
50 View v = mLayoutInflater.inflate(android.R.layout.simple_list_item_1, viewGroup, false);
/frameworks/base/core/java/android/accounts/
H A DChooseAccountTypeActivity.java172 private LayoutInflater mLayoutInflater; field in class:ChooseAccountTypeActivity.AccountArrayAdapter
179 mLayoutInflater = (LayoutInflater) context.getSystemService(
188 convertView = mLayoutInflater.inflate(R.layout.choose_account_row, null);
H A DChooseAccountActivity.java156 private LayoutInflater mLayoutInflater; field in class:ChooseAccountActivity.AccountArrayAdapter
162 mLayoutInflater = (LayoutInflater) context.getSystemService(
171 convertView = mLayoutInflater.inflate(R.layout.choose_account_row, null);
/frameworks/data-binding/extensions/baseAdapters/src/main/java/android/databinding/adapters/
H A DObservableListAdapter.java36 private final LayoutInflater mLayoutInflater; field in class:ObservableListAdapter
44 mLayoutInflater = (resourceId == 0) ? null :
126 convertView = mLayoutInflater.inflate(resourceId, parent, false);
/frameworks/support/frameworks/support/samples/Support7Demos/src/com/example/android/supportv7/util/
H A DSortedListActivity.java75 final LayoutInflater mLayoutInflater; field in class:SortedListActivity.SortedListAdapter
77 mLayoutInflater = layoutInflater;
119 mLayoutInflater.inflate(R.layout.sorted_list_item_view, parent, false)) {
/frameworks/support/samples/Support7Demos/src/com/example/android/supportv7/util/
H A DSortedListActivity.java75 final LayoutInflater mLayoutInflater; field in class:SortedListActivity.SortedListAdapter
77 mLayoutInflater = layoutInflater;
119 mLayoutInflater.inflate(R.layout.sorted_list_item_view, parent, false)) {
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
H A DNavigationBarInflaterView.java60 protected LayoutInflater mLayoutInflater; field in class:NavigationBarInflaterView
82 mLayoutInflater = LayoutInflater.from(mContext);
111 mRot0 = (FrameLayout) mLayoutInflater.inflate(R.layout.navigation_layout, this, false);
114 mRot90 = (FrameLayout) mLayoutInflater.inflate(R.layout.navigation_layout_rot90, this,
241 LayoutInflater inflater = landscape ? mLandscapeInflater : mLayoutInflater;
/frameworks/base/packages/PrintSpooler/src/com/android/printspooler/ui/
H A DPageAdapter.java82 private final LayoutInflater mLayoutInflater; field in class:PageAdapter
132 mLayoutInflater = (LayoutInflater) context.getSystemService(
300 View page = mLayoutInflater.inflate(R.layout.preview_page, parent, false);
/frameworks/base/core/java/android/widget/
H A DRemoteViewsAdapter.java78 private LayoutInflater mLayoutInflater; field in class:RemoteViewsAdapter
786 mLayoutInflater = LayoutInflater.from(context);
/frameworks/support/design/src/android/support/design/internal/
H A DNavigationMenuPresenter.java69 LayoutInflater mLayoutInflater; field in class:NavigationMenuPresenter
90 mLayoutInflater = LayoutInflater.from(context);
100 mMenuView = (NavigationMenuView) mLayoutInflater.inflate(
105 mHeaderLayout = (LinearLayout) mLayoutInflater
201 View view = mLayoutInflater.inflate(res, mHeaderLayout, false);
392 return new NormalViewHolder(mLayoutInflater, parent, mOnClickListener);
394 return new SubheaderViewHolder(mLayoutInflater, parent);
396 return new SeparatorViewHolder(mLayoutInflater, parent);
/frameworks/base/core/java/com/android/internal/app/
H A DChooserActivity.java1119 private final LayoutInflater mLayoutInflater; field in class:ChooserActivity.ChooserRowAdapter
1126 mLayoutInflater = LayoutInflater.from(ChooserActivity.this);
1235 final ViewGroup row = (ViewGroup) mLayoutInflater.inflate(R.layout.chooser_row,
/frameworks/base/core/java/com/android/internal/policy/
H A DPhoneWindow.java163 private LayoutInflater mLayoutInflater; field in class:PhoneWindow
299 mLayoutInflater = LayoutInflater.from(context);
412 mLayoutInflater.inflate(layoutResID, mContentParent);
524 return mLayoutInflater;
1585 mLayoutInflater.inflate(value, titleContainer);
2554 mDecor.onResourcesLoaded(mLayoutInflater, layoutResource);

Completed in 2713 milliseconds