Home
last modified time | relevance | path

Searched refs:mLayoutInflater (Results 1 – 19 of 19) sorted by relevance

/frameworks/base/tests/UiBench/src/com/android/test/uibench/recyclerview/
DRvArrayAdapter.java26 private LayoutInflater mLayoutInflater; field in RvArrayAdapter
47 if (mLayoutInflater == null) { in onCreateViewHolder()
48 mLayoutInflater = LayoutInflater.from(viewGroup.getContext()); in onCreateViewHolder()
50 View v = mLayoutInflater.inflate(android.R.layout.simple_list_item_1, viewGroup, false); in onCreateViewHolder()
/frameworks/base/packages/SystemUI/src/com/android/keyguard/clock/
DAnalogClockController.java48 private final LayoutInflater mLayoutInflater; field in AnalogClockController
92 mLayoutInflater = inflater; in AnalogClockController()
98 mBigClockView = (ClockLayout) mLayoutInflater.inflate(R.layout.analog_clock, null); in createViews()
101 mView = mLayoutInflater.inflate(R.layout.digital_clock, null); in createViews()
DBubbleClockController.java48 private final LayoutInflater mLayoutInflater; field in BubbleClockController
92 mLayoutInflater = inflater; in BubbleClockController()
98 mView = (ClockLayout) mLayoutInflater.inflate(R.layout.bubble_clock, null); in createViews()
101 mLockClockContainer = mLayoutInflater.inflate(R.layout.digital_clock, null); in createViews()
DDefaultClockController.java48 private final LayoutInflater mLayoutInflater; field in DefaultClockController
85 mLayoutInflater = inflater; in DefaultClockController()
90 mView = mLayoutInflater.inflate(R.layout.default_clock_preview, null); in createViews()
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/qs/tiles/
DUserDetailViewAdapterTest.kt51 @Mock private lateinit var mLayoutInflater: LayoutInflater variable in com.android.systemui.qs.tiles.UserDetailViewAdapterTest
58 mContext.addMockSystemService(Context.LAYOUT_INFLATER_SERVICE, mLayoutInflater) in setUp()
59 `when`(mLayoutInflater.inflate(anyInt(), any(ViewGroup::class.java), anyBoolean())) in setUp()
/frameworks/base/packages/SettingsLib/src/com/android/settingslib/notification/
DZenDurationDialog.java63 @VisibleForTesting protected LayoutInflater mLayoutInflater; field in ZenDurationDialog
133 if (mLayoutInflater == null) { in getContentView()
134 mLayoutInflater = new PhoneWindow(mContext).getLayoutInflater(); in getContentView()
136 View contentView = mLayoutInflater.inflate(R.layout.zen_mode_duration_dialog, in getContentView()
144 final View radioButton = mLayoutInflater.inflate(R.layout.zen_mode_radio_button, in getContentView()
149 final View radioButtonContent = mLayoutInflater.inflate(R.layout.zen_mode_condition, in getContentView()
DEnableZenModeDialog.java96 protected LayoutInflater mLayoutInflater; field in EnableZenModeDialog
158 if (mLayoutInflater == null) { in getContentView()
159 mLayoutInflater = new PhoneWindow(mContext).getLayoutInflater(); in getContentView()
161 View contentView = mLayoutInflater.inflate(R.layout.zen_mode_turn_on_dialog_container, in getContentView()
170 final View radioButton = mLayoutInflater.inflate(R.layout.zen_mode_radio_button, in getContentView()
175 final View radioButtonContent = mLayoutInflater.inflate(R.layout.zen_mode_condition, in getContentView()
/frameworks/base/packages/SettingsLib/tests/robotests/src/com/android/settingslib/notification/
DEnableZenModeDialogTest.java62 private LayoutInflater mLayoutInflater; field in EnableZenModeDialogTest
73 mLayoutInflater = LayoutInflater.from(mShadowContext); in setup()
77 mController.mLayoutInflater = mLayoutInflater; in setup()
DZenDurationDialogTest.java44 private LayoutInflater mLayoutInflater; field in ZenDurationDialogTest
52 mLayoutInflater = LayoutInflater.from(mContext); in setup()
55 mController.mLayoutInflater = mLayoutInflater; in setup()
/frameworks/base/packages/SystemUI/src/com/android/systemui/pip/tv/
DPipControlsView.java61 private final LayoutInflater mLayoutInflater; field in PipControlsView
112 mLayoutInflater = (LayoutInflater) getContext() in PipControlsView()
114 mLayoutInflater.inflate(R.layout.tv_pip_controls, this); in PipControlsView()
205 PipControlButtonView buttonView = (PipControlButtonView) mLayoutInflater.inflate( in updateUserActions()
/frameworks/base/tests/UiBench/src/com/android/test/uibench/
DNotificationShadeActivity.java39 private LayoutInflater mLayoutInflater; field in NotificationShadeActivity.FakeNotificationStackView
76 View view = mLayoutInflater.inflate(R.layout.notification, this, false); in generateNextView()
96 mLayoutInflater = LayoutInflater.from(getContext()); in FakeNotificationStackView()
/frameworks/base/core/java/android/accounts/
DChooseAccountTypeActivity.java172 private LayoutInflater mLayoutInflater; field in ChooseAccountTypeActivity.AccountArrayAdapter
179 mLayoutInflater = (LayoutInflater) context.getSystemService( in AccountArrayAdapter()
188 convertView = mLayoutInflater.inflate(R.layout.choose_account_row, null); in getView()
DChooseAccountActivity.java193 private LayoutInflater mLayoutInflater; field in ChooseAccountActivity.AccountArrayAdapter
199 mLayoutInflater = (LayoutInflater) context.getSystemService( in AccountArrayAdapter()
208 convertView = mLayoutInflater.inflate(R.layout.choose_account_row, null); in getView()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
DNavigationBarInflaterView.java81 protected LayoutInflater mLayoutInflater; field in NavigationBarInflaterView
110 mLayoutInflater = LayoutInflater.from(mContext); in createInflaters()
127 mHorizontal = (FrameLayout) mLayoutInflater.inflate(R.layout.navigation_layout, in inflateChildren()
130 mVertical = (FrameLayout) mLayoutInflater.inflate(R.layout.navigation_layout_vertical, in inflateChildren()
299 LayoutInflater inflater = landscape ? mLandscapeInflater : mLayoutInflater; in inflateButton()
/frameworks/base/packages/PrintSpooler/src/com/android/printspooler/ui/
DPageAdapter.java85 private final LayoutInflater mLayoutInflater; field in PageAdapter
135 mLayoutInflater = (LayoutInflater) context.getSystemService( in PageAdapter()
306 page = mLayoutInflater.inflate(R.layout.preview_page_selected, parent, false); in onCreateViewHolder()
308 page = mLayoutInflater.inflate(R.layout.preview_page, parent, false); in onCreateViewHolder()
/frameworks/base/core/java/android/app/
DFragment.java423 LayoutInflater mLayoutInflater; field in Fragment
1336 if (mLayoutInflater == null) {
1339 return mLayoutInflater;
1352 mLayoutInflater = layoutInflater;
1353 return mLayoutInflater;
2805 mLayoutInflater = null;
/frameworks/base/core/java/com/android/internal/app/
DChooserActivity.java3085 private final LayoutInflater mLayoutInflater;
3107 mLayoutInflater = LayoutInflater.from(ChooserActivity.this);
3307 return displayContentPreview(previewType, targetIntent, mLayoutInflater,
3312 View profileRow = convertView != null ? convertView : mLayoutInflater.inflate(
3323 return mLayoutInflater.inflate(R.layout.chooser_az_label_row, parent, false);
3399 ViewGroup parentGroup = (ViewGroup) mLayoutInflater.inflate(
3401 ViewGroup row1 = (ViewGroup) mLayoutInflater.inflate(R.layout.chooser_row,
3403 ViewGroup row2 = (ViewGroup) mLayoutInflater.inflate(R.layout.chooser_row,
3414 ViewGroup row = (ViewGroup) mLayoutInflater.inflate(R.layout.chooser_row, parent,
/frameworks/base/core/java/com/android/internal/policy/
DPhoneWindow.java179 private LayoutInflater mLayoutInflater; field in PhoneWindow
323 mLayoutInflater = LayoutInflater.from(context); in PhoneWindow()
438 mLayoutInflater.inflate(layoutResID, mContentParent); in setContentView()
550 return mLayoutInflater; in getLayoutInflater()
1626 mLayoutInflater.inflate(value, titleContainer); in onIntChanged()
2627 mDecor.onResourcesLoaded(mLayoutInflater, layoutResource); in generateLayout()
/frameworks/base/config/
Dhiddenapi-greylist-max-o.txt414 Landroid/accounts/ChooseAccountActivity$AccountArrayAdapter;->mLayoutInflater:Landroid/view/LayoutI…
434 Landroid/accounts/ChooseAccountTypeActivity$AccountArrayAdapter;->mLayoutInflater:Landroid/view/Lay…
4990 Landroid/app/Fragment;->mLayoutInflater:Landroid/view/LayoutInflater;