Searched defs:customPanel (Results 1 - 2 of 2) sorted by relevance

/frameworks/support/v7/appcompat/src/main/java/androidx/appcompat/app/
H A DAlertController.java435 * @param customPanel the custom panel
440 private ViewGroup resolvePanel(@Nullable View customPanel, @Nullable View defaultPanel) { argument
441 if (customPanel == null) {
459 if (customPanel instanceof ViewStub) {
460 customPanel = ((ViewStub) customPanel).inflate();
463 return (ViewGroup) customPanel;
474 final ViewGroup customPanel = (ViewGroup) parentPanel.findViewById(R.id.customPanel);
475 setupCustomContent(customPanel);
638 setupCustomContent(ViewGroup customPanel) argument
[all...]
/frameworks/base/core/java/com/android/internal/app/
H A DAlertController.java481 * @param customPanel the custom panel
486 private ViewGroup resolvePanel(@Nullable View customPanel, @Nullable View defaultPanel) { argument
487 if (customPanel == null) {
505 if (customPanel instanceof ViewStub) {
506 customPanel = ((ViewStub) customPanel).inflate();
509 return (ViewGroup) customPanel;
520 final ViewGroup customPanel = (ViewGroup) parentPanel.findViewById(R.id.customPanel);
521 setupCustomContent(customPanel);
608 setupCustomContent(ViewGroup customPanel) argument
806 setBackground(TypedArray a, View topPanel, View contentPanel, View customPanel, View buttonPanel, boolean hasTitle, boolean hasCustomView, boolean hasButtons) argument
[all...]

Completed in 67 milliseconds