Home
last modified time | relevance | path

Searched refs:footerStub (Results 1 – 2 of 2) sorted by relevance

/frameworks/opt/setupwizard/library/main/src/com/android/setupwizardlib/template/
DButtonFooterMixin.java44 @Nullable private final ViewStub footerStub; field in ButtonFooterMixin
55 footerStub = (ViewStub) layout.findManagedViewById(R.id.suw_layout_footer); in ButtonFooterMixin()
153 if (footerStub == null) { in ensureFooterInflated()
156 footerStub.setLayoutResource(R.layout.suw_glif_footer_button_bar); in ensureFooterInflated()
157 buttonContainer = (LinearLayout) footerStub.inflate(); in ensureFooterInflated()
/frameworks/opt/setupwizard/library/main/src/com/android/setupwizardlib/
DGlifLayout.java178 ViewStub footerStub = findManagedViewById(R.id.suw_layout_footer); in inflateFooter() local
179 footerStub.setLayoutResource(footer); in inflateFooter()
180 return footerStub.inflate(); in inflateFooter()