Searched refs:customPanel (Results 1 – 2 of 2) sorted by relevance
442 @Nullable View customPanel, @Nullable View defaultPanel) { in resolvePanel()443 if (customPanel == null) { in resolvePanel()461 if (customPanel instanceof ViewStub) { in resolvePanel()462 customPanel = ((ViewStub) customPanel).inflate(); in resolvePanel()465 return (ViewGroup) customPanel; in resolvePanel()476 final ViewGroup customPanel = (ViewGroup) parentPanel.findViewById(R.id.customPanel); in setupView() local477 setupCustomContent(customPanel); in setupView()479 final View customTopPanel = customPanel.findViewById(R.id.topPanel); in setupView()480 final View customContentPanel = customPanel.findViewById(R.id.contentPanel); in setupView()481 final View customButtonPanel = customPanel.findViewById(R.id.buttonPanel); in setupView()[all …]
87 } else if (id == R.id.contentPanel || id == R.id.customPanel) { in tryOnMeasure()