Home
last modified time | relevance | path

Searched refs:layoutInflater (Results 1 – 17 of 17) sorted by relevance

/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/stack/
DNotificationSectionsManager.java70 void initialize(LayoutInflater layoutInflater) { in initialize() argument
75 reinflateViews(layoutInflater); in initialize()
82 void reinflateViews(LayoutInflater layoutInflater) { in reinflateViews() argument
93 mGentleHeader = (SectionHeaderView) layoutInflater.inflate( in reinflateViews()
/frameworks/base/packages/SystemUI/tests/src/com/android/keyguard/
DKeyguardStatusViewTest.java56 LayoutInflater layoutInflater = inflationController in setUp() local
59 (KeyguardStatusView) layoutInflater.inflate(R.layout.keyguard_status_view, null); in setUp()
DKeyguardSliceViewTest.java57 LayoutInflater layoutInflater = inflationController in setUp() local
59 mKeyguardSliceView = (KeyguardSliceView) layoutInflater in setUp()
DKeyguardClockSwitchTest.java78 LayoutInflater layoutInflater = inflationController in setUp() local
81 (KeyguardClockSwitch) layoutInflater.inflate(R.layout.keyguard_clock_switch, null); in setUp()
/frameworks/base/packages/SystemUI/tests/src/com/android/keyguard/clock/
DAnalogClockControllerTest.java52 LayoutInflater layoutInflater = LayoutInflater.from(getContext()); in setUp() local
53 mClockController = new AnalogClockController(res, layoutInflater, in setUp()
DBubbleClockControllerTest.java52 LayoutInflater layoutInflater = LayoutInflater.from(getContext()); in setUp() local
53 mClockController = new BubbleClockController(res, layoutInflater, mMockColorExtractor); in setUp()
/frameworks/base/packages/SystemUI/src/com/android/keyguard/clock/
DClockManager.java148 LayoutInflater layoutInflater = injectionInflater.injectable(LayoutInflater.from(context)); in ClockManager() local
150 addBuiltinClock(() -> new DefaultClockController(res, layoutInflater, colorExtractor)); in ClockManager()
151 addBuiltinClock(() -> new BubbleClockController(res, layoutInflater, colorExtractor)); in ClockManager()
152 addBuiltinClock(() -> new AnalogClockController(res, layoutInflater, colorExtractor)); in ClockManager()
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/notification/row/
DAppOpsInfoTest.java76 final LayoutInflater layoutInflater = LayoutInflater.from(mContext); in setUp() local
77 mAppOpsInfo = (AppOpsInfo) layoutInflater.inflate(R.layout.app_ops_info, null); in setUp()
DNotificationInfoTest.java132 final LayoutInflater layoutInflater = LayoutInflater.from(mContext); in setUp() local
133 mNotificationInfo = (NotificationInfo) layoutInflater.inflate(R.layout.notification_info, in setUp()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
DNotificationIconAreaController.java114 LayoutInflater layoutInflater = LayoutInflater.from(context); in initializeNotificationAreaViews() local
115 mNotificationIconArea = inflateIconArea(layoutInflater); in initializeNotificationAreaViews()
120 mCenteredIconArea = layoutInflater.inflate(R.layout.center_icon_area, null); in initializeNotificationAreaViews()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/row/wrapper/
DNotificationMediaTemplateViewWrapper.java226 LayoutInflater layoutInflater = LayoutInflater.from(stub.getContext()); in resolveViews() local
227 stub.setLayoutInflater(layoutInflater); in resolveViews()
/frameworks/base/core/java/android/preference/
DPreference.java604 final LayoutInflater layoutInflater = in onCreateView() local
607 final View layout = layoutInflater.inflate(mLayoutResId, parent, false); in onCreateView()
613 layoutInflater.inflate(mWidgetLayoutResId, widgetFrame); in onCreateView()
/frameworks/base/core/java/com/android/internal/app/
DChooserActivity.java1023 Intent targetIntent, LayoutInflater layoutInflater, ViewGroup convertView,
1031 layout = displayTextContentPreview(targetIntent, layoutInflater, parent);
1034 layout = displayImageContentPreview(targetIntent, layoutInflater, parent);
1037 layout = displayFileContentPreview(targetIntent, layoutInflater, parent);
1050 private ViewGroup displayTextContentPreview(Intent targetIntent, LayoutInflater layoutInflater,
1052 ViewGroup contentPreviewLayout = (ViewGroup) layoutInflater.inflate(
1100 private ViewGroup displayImageContentPreview(Intent targetIntent, LayoutInflater layoutInflater,
1102 ViewGroup contentPreviewLayout = (ViewGroup) layoutInflater.inflate(
1208 private ViewGroup displayFileContentPreview(Intent targetIntent, LayoutInflater layoutInflater,
1211 ViewGroup contentPreviewLayout = (ViewGroup) layoutInflater.inflate(
/frameworks/base/core/java/android/widget/
DCalendarViewLegacyDelegate.java312 LayoutInflater layoutInflater = (LayoutInflater) mContext in CalendarViewLegacyDelegate() local
314 View content = layoutInflater.inflate(R.layout.calendar_view, null, false); in CalendarViewLegacyDelegate()
DAbsListView.java6155 final LayoutInflater layoutInflater = LayoutInflater.from(getContext()); in getTextFilterInput() local
6156 mTextFilter = (EditText) layoutInflater.inflate( in getTextFilterInput()
/frameworks/base/core/java/android/app/
DFragment.java1351 LayoutInflater layoutInflater = onGetLayoutInflater(savedInstanceState);
1352 mLayoutInflater = layoutInflater;
/frameworks/base/packages/SystemUI/src/com/android/systemui/screenshot/
DGlobalScreenshot.java631 LayoutInflater layoutInflater = (LayoutInflater) in GlobalScreenshot() local
635 mScreenshotLayout = layoutInflater.inflate(R.layout.global_screenshot, null); in GlobalScreenshot()