Documentation for this section has not yet been entered.
Get method documentation [Android Documentation]
Indicates whether the view is currently tracking transient state that the
app should not need to concern itself with saving and restoring, but that
the framework should take special note to preserve when possible.
A view with transient state cannot be trivially rebound from an external data source, such as an adapter binding item views in a list. This may be because the view is performing an animation, tracking user selection of content, or similar.
Set method documentation [Android Documentation]
Set whether this view is currently tracking transient state that the
framework should attempt to preserve when possible. This flag is reference counted,
so every call to setHasTransientState(true) should be paired with a later call
to setHasTransientState(false).
A view with transient state cannot be trivially rebound from an external data source, such as an adapter binding item views in a list. This may be because the view is performing an animation, tracking user selection of content, or similar.