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

/frameworks/base/core/java/com/android/internal/app/
H A DAlertController.java455 * @param customPanel the custom panel
460 private ViewGroup resolvePanel(@Nullable View customPanel, @Nullable View defaultPanel) { argument
461 if (customPanel == null) {
479 if (customPanel instanceof ViewStub) {
480 customPanel = ((ViewStub) customPanel).inflate();
483 return (ViewGroup) customPanel;
494 final ViewGroup customPanel = (ViewGroup) parentPanel.findViewById(R.id.customPanel);
495 setupCustomContent(customPanel);
582 setupCustomContent(ViewGroup customPanel) argument
774 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.java412 * @param customPanel the custom panel
417 private ViewGroup resolvePanel(@Nullable View customPanel, @Nullable View defaultPanel) { argument
418 if (customPanel == null) {
436 if (customPanel instanceof ViewStub) {
437 customPanel = ((ViewStub) customPanel).inflate();
440 return (ViewGroup) customPanel;
451 final ViewGroup customPanel = (ViewGroup) parentPanel.findViewById(R.id.customPanel);
452 setupCustomContent(customPanel);
594 setupCustomContent(ViewGroup customPanel) argument
[all...]

Completed in 1478 milliseconds