Searched refs:topPanel (Results 1 - 5 of 5) 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.java493 final View defaultTopPanel = parentPanel.findViewById(R.id.topPanel);
502 final View customTopPanel = customPanel.findViewById(R.id.topPanel);
507 final ViewGroup topPanel = resolvePanel(customTopPanel, defaultTopPanel);
513 setupTitle(topPanel);
517 final boolean hasTopPanel = topPanel != null
518 && topPanel.getVisibility() != View.GONE;
543 divider = topPanel.findViewById(R.id.titleDividerNoCustom);
546 divider = topPanel.findViewById(R.id.titleDivider);
550 divider = topPanel.findViewById(R.id.titleDividerTop);
582 setBackground(a, topPanel, contentPane
621 setupTitle(ViewGroup topPanel) argument
779 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/widget/
H A DAlertDialogLayout.java41 * <li>topPanel: exactly wrap_content</li>
70 View topPanel = null;
82 if (id == R.id.topPanel) {
83 topPanel = child;
105 if (topPanel != null) {
106 topPanel.measure(widthMeasureSpec, MeasureSpec.UNSPECIFIED);
108 usedHeight += topPanel.getMeasuredHeight();
109 childState = View.combineMeasuredStates(childState, topPanel.getMeasuredState());
/frameworks/support/v7/appcompat/src/android/support/v7/app/
H A DAlertController.java457 final View defaultTopPanel = parentPanel.findViewById(R.id.topPanel);
466 final View customTopPanel = customPanel.findViewById(R.id.topPanel);
471 final ViewGroup topPanel = resolvePanel(customTopPanel, defaultTopPanel);
477 setupTitle(topPanel);
481 final boolean hasTopPanel = topPanel != null
482 && topPanel.getVisibility() != View.GONE;
505 divider = topPanel.findViewById(R.id.titleDividerNoCustom);
661 private void setupTitle(ViewGroup topPanel) { argument
663 // Add the custom title view directly to the topPanel layout
667 topPanel
[all...]

Completed in 240 milliseconds