Searched defs:topPanel (Results 1 - 2 of 2) sorted by path

/frameworks/base/core/java/com/android/internal/app/
H A DAlertController.java489 final View defaultTopPanel = parentPanel.findViewById(R.id.topPanel);
498 final View customTopPanel = customPanel.findViewById(R.id.topPanel);
503 final ViewGroup topPanel = resolvePanel(customTopPanel, defaultTopPanel);
509 setupTitle(topPanel);
513 final boolean hasTopPanel = topPanel != null
514 && topPanel.getVisibility() != View.GONE;
538 divider = topPanel.findViewById(R.id.titleDivider);
540 divider = topPanel.findViewById(R.id.titleDividerTop);
561 setBackground(a, topPanel, contentPanel, customPanel, buttonPanel,
600 private void setupTitle(ViewGroup topPanel) { argument
758 setBackground(TypedArray a, View topPanel, View contentPanel, View customPanel, View buttonPanel, boolean hasTitle, boolean hasCustomView, boolean hasButtons) argument
[all...]
/frameworks/support/v7/appcompat/src/android/support/v7/app/
H A DAlertController.java411 final ViewGroup topPanel = (ViewGroup) mWindow.findViewById(R.id.topPanel);
414 final boolean hasTitle = setupTitle(topPanel);
471 private boolean setupTitle(ViewGroup topPanel) { argument
475 // Add the custom title view directly to the topPanel layout
479 topPanel.addView(mCustomTitleView, 0, lp);
514 topPanel.setVisibility(View.GONE);

Completed in 41 milliseconds