Searched refs:mLayoutInflater (Results 1 - 18 of 18) 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/support/frameworks/support/samples/Support7Demos/src/main/java/com/example/android/supportv7/util/
H A DSortedListActivity.java77 final LayoutInflater mLayoutInflater; field in class:SortedListActivity.SortedListAdapter
79 mLayoutInflater = layoutInflater;
121 mLayoutInflater.inflate(R.layout.sorted_list_item_view, parent, false)) {
/frameworks/support/samples/Support7Demos/src/main/java/com/example/android/supportv7/util/
H A DSortedListActivity.java77 final LayoutInflater mLayoutInflater; field in class:SortedListActivity.SortedListAdapter
79 mLayoutInflater = layoutInflater;
121 mLayoutInflater.inflate(R.layout.sorted_list_item_view, parent, false)) {
/frameworks/base/packages/SettingsLib/tests/robotests/src/com/android/settingslib/notification/
H A DEnableZenModeDialogTest.java63 private LayoutInflater mLayoutInflater; field in class:EnableZenModeDialogTest
74 mLayoutInflater = LayoutInflater.from(mShadowContext);
78 mController.mLayoutInflater = mLayoutInflater;
H A DZenDurationDialogTest.java57 private LayoutInflater mLayoutInflater; field in class:ZenDurationDialogTest
66 mLayoutInflater = LayoutInflater.from(mContext);
69 mController.mLayoutInflater = mLayoutInflater;
/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/base/packages/SettingsLib/src/com/android/settingslib/notification/
H A DZenDurationDialog.java62 @VisibleForTesting protected LayoutInflater mLayoutInflater; field in class:ZenDurationDialog
128 if (mLayoutInflater == null) {
129 mLayoutInflater = new PhoneWindow(mContext).getLayoutInflater();
131 View contentView = mLayoutInflater.inflate(R.layout.zen_mode_duration_dialog,
139 final View radioButton = mLayoutInflater.inflate(R.layout.zen_mode_radio_button,
144 final View radioButtonContent = mLayoutInflater.inflate(R.layout.zen_mode_condition,
H A DEnableZenModeDialog.java96 protected LayoutInflater mLayoutInflater; field in class:EnableZenModeDialog
158 if (mLayoutInflater == null) {
159 mLayoutInflater = new PhoneWindow(mContext).getLayoutInflater();
161 View contentView = mLayoutInflater.inflate(R.layout.zen_mode_turn_on_dialog_container,
170 final View radioButton = mLayoutInflater.inflate(R.layout.zen_mode_radio_button,
175 final View radioButtonContent = mLayoutInflater.inflate(R.layout.zen_mode_condition,
/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/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
H A DNavigationBarInflaterView.java88 protected LayoutInflater mLayoutInflater; field in class:NavigationBarInflaterView
117 mLayoutInflater = LayoutInflater.from(mContext);
134 mRot0 = (FrameLayout) mLayoutInflater.inflate(R.layout.navigation_layout, this, false);
137 mRot90 = (FrameLayout) mLayoutInflater.inflate(R.layout.navigation_layout_rot90, this,
306 LayoutInflater inflater = landscape ? mLandscapeInflater : mLayoutInflater;
/frameworks/base/core/java/android/app/
H A DFragment.java411 LayoutInflater mLayoutInflater; field in class:Fragment
1324 if (mLayoutInflater == null) {
1327 return mLayoutInflater;
1340 mLayoutInflater = layoutInflater;
1341 return mLayoutInflater;
2793 mLayoutInflater = null;
/frameworks/support/fragment/src/main/java/androidx/fragment/app/
H A DFragment.java240 LayoutInflater mLayoutInflater; field in class:Fragment
1276 if (mLayoutInflater == null) {
1279 return mLayoutInflater;
1293 mLayoutInflater = layoutInflater;
1294 return mLayoutInflater;
2690 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.java1200 private final LayoutInflater mLayoutInflater; field in class:ChooserActivity.ChooserRowAdapter
1206 mLayoutInflater = LayoutInflater.from(ChooserActivity.this);
1267 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
305 mLayoutInflater = LayoutInflater.from(context);
420 mLayoutInflater.inflate(layoutResID, mContentParent);
532 return mLayoutInflater;
1607 mLayoutInflater.inflate(value, titleContainer);
2599 mDecor.onResourcesLoaded(mLayoutInflater, layoutResource);

Completed in 302 milliseconds