Home
last modified time | relevance | path

Searched refs:topPanel (Results 1 – 2 of 2) sorted by relevance

/appcompat/appcompat/src/main/java/androidx/appcompat/widget/
DAlertDialogLayout.java71 View topPanel = null; in tryOnMeasure() local
83 if (id == R.id.topPanel) { in tryOnMeasure()
84 topPanel = child; in tryOnMeasure()
106 if (topPanel != null) { in tryOnMeasure()
107 topPanel.measure(widthMeasureSpec, MeasureSpec.UNSPECIFIED); in tryOnMeasure()
109 usedHeight += topPanel.getMeasuredHeight(); in tryOnMeasure()
110 childState = View.combineMeasuredStates(childState, topPanel.getMeasuredState()); in tryOnMeasure()
/appcompat/appcompat/src/main/java/androidx/appcompat/app/
DAlertController.java470 final View defaultTopPanel = parentPanel.findViewById(R.id.topPanel); in setupView()
479 final View customTopPanel = customPanel.findViewById(R.id.topPanel); in setupView()
484 final ViewGroup topPanel = resolvePanel(customTopPanel, defaultTopPanel); in setupView() local
490 setupTitle(topPanel); in setupView()
494 final boolean hasTopPanel = topPanel != null in setupView()
495 && topPanel.getVisibility() != View.GONE; in setupView()
518 divider = topPanel.findViewById(R.id.titleDividerNoCustom); in setupView()
674 private void setupTitle(ViewGroup topPanel) { in setupTitle() argument
680 topPanel.addView(mCustomTitleView, 0, lp); in setupTitle()
715 topPanel.setVisibility(View.GONE); in setupTitle()