Searched refs:mLayoutInflater (Results 1 - 15 of 15) 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/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/base/tests/UiBench/src/com/android/test/uibench/
H A DNotificationShadeActivity.java39 private LayoutInflater mLayoutInflater; field in class:NotificationShadeActivity.FakeNotificationStackView
76 View view = mLayoutInflater.inflate(R.layout.notification, this, false);
96 mLayoutInflater = LayoutInflater.from(getContext());
/frameworks/base/packages/SystemUI/src/com/android/systemui/pip/tv/
H A DPipControlsView.java67 private final LayoutInflater mLayoutInflater; field in class:PipControlsView
118 mLayoutInflater = (LayoutInflater) getContext()
120 mLayoutInflater.inflate(R.layout.tv_pip_controls, this);
211 PipControlButtonView buttonView = (PipControlButtonView) mLayoutInflater.inflate(
/frameworks/support/design/src/android/support/design/internal/
H A DNavigationMenuPresenter.java70 LayoutInflater mLayoutInflater; field in class:NavigationMenuPresenter
91 mLayoutInflater = LayoutInflater.from(context);
101 mMenuView = (NavigationMenuView) mLayoutInflater.inflate(
106 mHeaderLayout = (LinearLayout) mLayoutInflater
211 View view = mLayoutInflater.inflate(res, mHeaderLayout, false);
402 return new NormalViewHolder(mLayoutInflater, parent, mOnClickListener);
404 return new SubheaderViewHolder(mLayoutInflater, parent);
406 return new SeparatorViewHolder(mLayoutInflater, parent);
/frameworks/base/core/java/android/accounts/
H A DChooseAccountActivity.java192 private LayoutInflater mLayoutInflater; field in class:ChooseAccountActivity.AccountArrayAdapter
198 mLayoutInflater = (LayoutInflater) context.getSystemService(
207 convertView = mLayoutInflater.inflate(R.layout.choose_account_row, null);
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);
/frameworks/support/frameworks/support/samples/Support7Demos/src/com/example/android/supportv7/util/
H A DSortedListActivity.java76 final LayoutInflater mLayoutInflater; field in class:SortedListActivity.SortedListAdapter
78 mLayoutInflater = layoutInflater;
120 mLayoutInflater.inflate(R.layout.sorted_list_item_view, parent, false)) {
/frameworks/support/samples/Support7Demos/src/com/example/android/supportv7/util/
H A DSortedListActivity.java76 final LayoutInflater mLayoutInflater; field in class:SortedListActivity.SortedListAdapter
78 mLayoutInflater = layoutInflater;
120 mLayoutInflater.inflate(R.layout.sorted_list_item_view, parent, false)) {
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
H A DNavigationBarInflaterView.java84 protected LayoutInflater mLayoutInflater; field in class:NavigationBarInflaterView
109 mLayoutInflater = LayoutInflater.from(mContext);
126 mRot0 = (FrameLayout) mLayoutInflater.inflate(R.layout.navigation_layout, this, false);
129 mRot90 = (FrameLayout) mLayoutInflater.inflate(R.layout.navigation_layout_rot90, this,
261 LayoutInflater inflater = landscape ? mLandscapeInflater : mLayoutInflater;
/frameworks/base/core/java/android/app/
H A DFragment.java406 LayoutInflater mLayoutInflater; field in class:Fragment
1310 if (mLayoutInflater == null) {
1313 return mLayoutInflater;
1326 mLayoutInflater = layoutInflater;
1327 return mLayoutInflater;
2779 mLayoutInflater = null;
/frameworks/support/fragment/java/android/support/v4/app/
H A DFragment.java230 LayoutInflater mLayoutInflater; field in class:Fragment
1102 if (mLayoutInflater == null) {
1105 return mLayoutInflater;
1118 mLayoutInflater = layoutInflater;
1119 return mLayoutInflater;
2506 mLayoutInflater = null;
/frameworks/base/packages/PrintSpooler/src/com/android/printspooler/ui/
H A DPageAdapter.java85 private final LayoutInflater mLayoutInflater; field in class:PageAdapter
135 mLayoutInflater = (LayoutInflater) context.getSystemService(
306 page = mLayoutInflater.inflate(R.layout.preview_page_selected, parent, false);
308 page = mLayoutInflater.inflate(R.layout.preview_page, parent, false);
/frameworks/base/core/java/com/android/internal/app/
H A DChooserActivity.java1251 private final LayoutInflater mLayoutInflater; field in class:ChooserActivity.ChooserRowAdapter
1259 mLayoutInflater = LayoutInflater.from(ChooserActivity.this);
1383 final ViewGroup row = (ViewGroup) mLayoutInflater.inflate(R.layout.chooser_row,
/frameworks/base/core/java/com/android/internal/policy/
H A DPhoneWindow.java164 private LayoutInflater mLayoutInflater; field in class:PhoneWindow
304 mLayoutInflater = LayoutInflater.from(context);
419 mLayoutInflater.inflate(layoutResID, mContentParent);
531 return mLayoutInflater;
1606 mLayoutInflater.inflate(value, titleContainer);
2586 mDecor.onResourcesLoaded(mLayoutInflater, layoutResource);

Completed in 337 milliseconds