Searched refs:topPanel (Results 1 - 4 of 4) sorted by relevance

/frameworks/base/core/java/com/android/internal/app/
H A DMicroAlertController.java60 // move topPanel into top of scrollParent
61 View topPanel = mScrollView.findViewById(R.id.topPanel);
62 ((ViewGroup) topPanel.getParent()).removeView(topPanel);
64 new FrameLayout.LayoutParams(topPanel.getLayoutParams());
66 topPanel.setLayoutParams(topParams);
88 scrollParent.addView(topPanel);
98 protected void setupTitle(ViewGroup topPanel) { argument
99 super.setupTitle(topPanel);
[all...]
H A DAlertController.java488 final View defaultTopPanel = parentPanel.findViewById(R.id.topPanel);
497 final View customTopPanel = customPanel.findViewById(R.id.topPanel);
502 final ViewGroup topPanel = resolvePanel(customTopPanel, defaultTopPanel);
508 setupTitle(topPanel);
512 final boolean hasTopPanel = topPanel != null
513 && topPanel.getVisibility() != View.GONE;
538 divider = topPanel.findViewById(R.id.titleDividerNoCustom);
541 divider = topPanel.findViewById(R.id.titleDivider);
545 divider = topPanel.findViewById(R.id.titleDividerTop);
577 setBackground(a, topPanel, contentPane
616 setupTitle(ViewGroup topPanel) argument
774 setBackground(TypedArray a, View topPanel, View contentPanel, View customPanel, View buttonPanel, boolean hasTitle, boolean hasCustomView, boolean hasButtons) argument
[all...]
/frameworks/base/core/java/com/android/internal/widget/
H A DAlertDialogLayout.java40 * <li>topPanel: exactly wrap_content</li>
76 View topPanel = null;
89 case R.id.topPanel:
90 topPanel = child;
116 if (topPanel != null) {
117 topPanel.measure(widthMeasureSpec, MeasureSpec.UNSPECIFIED);
119 usedHeight += topPanel.getMeasuredHeight();
120 childState = combineMeasuredStates(childState, topPanel.getMeasuredState());
/frameworks/support/v7/appcompat/src/android/support/v7/app/
H A DAlertController.java445 final View defaultTopPanel = parentPanel.findViewById(R.id.topPanel);
454 final View customTopPanel = customPanel.findViewById(R.id.topPanel);
459 final ViewGroup topPanel = resolvePanel(customTopPanel, defaultTopPanel);
465 setupTitle(topPanel);
469 final boolean hasTopPanel = topPanel != null
470 && topPanel.getVisibility() != View.GONE;
628 private void setupTitle(ViewGroup topPanel) { argument
630 // Add the custom title view directly to the topPanel layout
634 topPanel.addView(mCustomTitleView, 0, lp);
669 topPanel
[all...]

Completed in 72 milliseconds