Home
last modified time | relevance | path

Searched refs:customView (Results 1 – 9 of 9) sorted by relevance

/aosp12/frameworks/base/core/java/com/android/internal/app/
H A DMediaRouteControllerDialog.java155 View customView = getLayoutInflater().inflate(R.layout.media_route_controller_dialog, null); in onCreate() local
156 setView(customView, 0, 0, 0, 0); in onCreate()
163 mVolumeLayout = (LinearLayout) customView.findViewById(R.id.media_route_volume_layout); in onCreate()
164 mVolumeSlider = (SeekBar) customView.findViewById(R.id.media_route_volume_slider); in onCreate()
206 (FrameLayout) customView.findViewById(R.id.media_route_control_frame); in onCreate()
H A DAlertController.java657 final View customView; in setupCustomContent() local
659 customView = mView; in setupCustomContent()
662 customView = inflater.inflate(mViewLayoutResId, customPanel, false); in setupCustomContent()
664 customView = null; in setupCustomContent()
667 final boolean hasCustomView = customView != null; in setupCustomContent()
668 if (!hasCustomView || !canTextInput(customView)) { in setupCustomContent()
675 custom.addView(customView, new LayoutParams(MATCH_PARENT, MATCH_PARENT)); in setupCustomContent()
/aosp12/frameworks/base/core/java/com/android/internal/widget/
H A DActionBarView.java1006 View customView = null; in onMeasure() local
1008 customView = mExpandedActionView; in onMeasure()
1011 customView = mCustomNavView; in onMeasure()
1014 if (customView != null) { in onMeasure()
1052 customView.measure( in onMeasure()
1161 View customView = null; in onLayout() local
1163 customView = mExpandedActionView; in onLayout()
1166 customView = mCustomNavView; in onLayout()
1168 if (customView != null) { in onLayout()
1245 customView.layout(xpos, ypos, xpos + customWidth, in onLayout()
[all …]
/aosp12/packages/apps/Settings/src/com/android/settings/accessibility/
H A DAccessibilityDialogUtils.java556 View customView, DialogInterface.OnClickListener listener) { in createCustomDialog() argument
558 .setView(customView) in createCustomDialog()
564 if (customView instanceof ScrollView || customView instanceof AbsListView) { in createCustomDialog()
565 setScrollIndicators(customView); in createCustomDialog()
/aosp12/packages/apps/Gallery2/src/com/android/gallery3d/ui/
H A DActionModeHandler.java137 View customView = LayoutInflater.from(a).inflate( in startActionMode() local
139 mActionMode.setCustomView(customView); in startActionMode()
141 (Button) customView.findViewById(R.id.selection_menu), this); in startActionMode()
/aosp12/frameworks/layoutlib/bridge/src/android/view/
H A DBridgeInflater.java415 Object customView = silent ? in loadCustomView() local
419 if (customView instanceof View) { in loadCustomView()
420 return (View)customView; in loadCustomView()
/aosp12/packages/apps/Dialer/java/com/android/dialer/dialpadview/
H A DSpecialCharSequenceMgr.java324 View customView = LayoutInflater.from(context).inflate(R.layout.dialog_deviceids, null); in handleDeviceIdDisplay() local
325 ViewGroup holder = customView.findViewById(R.id.deviceids_holder); in handleDeviceIdDisplay()
351 .setView(customView) in handleDeviceIdDisplay()
/aosp12/packages/apps/Messaging/src/com/android/messaging/ui/conversation/
H A DConversationFragment.java1562 View customView = actionBar.getCustomView(); in updateActionBar() local
1563 if (customView == null || customView.getId() != R.id.conversation_title_container) { in updateActionBar()
1566 customView = inflator.inflate(R.layout.action_bar_conversation_name, null); in updateActionBar()
1567 customView.setOnClickListener(new View.OnClickListener() { in updateActionBar()
1573 actionBar.setCustomView(customView); in updateActionBar()
1577 (TextView) customView.findViewById(R.id.conversation_title); in updateActionBar()
/aosp12/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/row/
H A DExpandableNotificationRow.java652 boolean customView = contractedView != null in updateLimitsForView()
662 if (customView && beforeS && !mIsSummaryWithChildren) { in updateLimitsForView()