java.lang.Object | |
↳ | android.databinding.ViewStubProxy |
This class represents a ViewStub before and after inflation. Before inflation, the ViewStub is accessible. After inflation, the root View of the inflated layout will be available. If the inflated layout has data binding, the ViewDataBinding for the inflated View is accessible.
Public Constructors | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
Public Methods | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
Returns the data binding associated with the inflated layout once it has been inflated.
| |||||||||||
Returns the root View of the layout replacing the ViewStub once it has been inflated.
| |||||||||||
Returns the ViewStub in the layout or
null if the ViewStub has been inflated.
| |||||||||||
Returns
true if the ViewStub has replaced itself with the inflated layout
or false if not.
| |||||||||||
Sets the
ViewStub.OnInflateListener to be called when the ViewStub inflates.
|
[Expand]
Inherited Methods | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
From class
java.lang.Object
|
Returns the data binding associated with the inflated layout once it has been inflated.
null
prior to inflation or if there is no binding associated with the layout.
null
prior to inflation or if there is no binding associated with the layout
Returns the root View of the layout replacing the ViewStub once it has been inflated.
null
is returned prior to inflation.
null
is returned prior to inflation
Returns the ViewStub in the layout or null
if the ViewStub has been inflated.
null
if the ViewStub has been inflated.
Returns true
if the ViewStub has replaced itself with the inflated layout
or false
if not.
true
if the ViewStub has replaced itself with the inflated layout
or false
if not
Sets the ViewStub.OnInflateListener
to be called when the ViewStub inflates. The proxy must
have an OnInflateListener, so listener
will be called immediately after
the proxy's listener is called.
listener | The OnInflateListener to notify of successful inflation |
---|