Home | History | Annotate | Download | only in app

Lines Matching defs:customPanel

435      * @param customPanel the custom panel
440 private ViewGroup resolvePanel(@Nullable View customPanel, @Nullable View defaultPanel) {
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);
477 final View customTopPanel = customPanel.findViewById(R.id.topPanel);
478 final View customContentPanel = customPanel.findViewById(R.id.contentPanel);
479 final View customButtonPanel = customPanel.findViewById(R.id.buttonPanel);
490 final boolean hasCustomPanel = customPanel != null
491 && customPanel.getVisibility() != View.GONE;
638 private void setupCustomContent(ViewGroup customPanel) {
644 customView = inflater.inflate(mViewLayoutResId, customPanel, false);
665 ((LinearLayoutCompat.LayoutParams) customPanel.getLayoutParams()).weight = 0;
668 customPanel.setVisibility(View.GONE);