Summary:
Methods
ViewModelStoreOwner
public
interface
ViewModelStoreOwner
androidx.lifecycle.ViewModelStoreOwner |
A scope that owns ViewModelStore
.
A responsibility of an implementation of this interface is to retain owned ViewModelStore
during the configuration changes and call ViewModelStore.clear()
, when this scope is
going to be destroyed.
See also:
Summary
Public methods | |
---|---|
abstract
ViewModelStore
|
getViewModelStore()
Returns owned |
Public methods
getViewModelStore
public abstract ViewModelStore getViewModelStore ()
Returns owned ViewModelStore
Returns | |
---|---|
ViewModelStore |
a ViewModelStore
|