ViewModelInject
@Target([AnnotationTarget.CONSTRUCTOR]) classViewModelInject
androidx.hilt.lifecycle.ViewModelInject |
Identifies a androidx.lifecycle.ViewModel
's constructor for injection.
Similar to javax.inject.Inject
, a ViewModel
containing a constructor annotated with ViewModelInject
will have its dependencies defined in the constructor parameters injected by Dagger's Hilt. The ViewModel
will be available for creation by the androidx.hilt.lifecycle.HiltViewModelFactory
and can be retrieved by default in an Activity
or Fragment
annotated with AndroidEntryPoint.
Example:
public class DonutViewModel extends ViewModel { @ViewModelInject public DonutViewModel(@Assisted SavedStateHandle handle, RecipeRepository repository) { // ... } }
@AndroidEntryPoint public class CookingActivity extends AppCompatActivity { public void onCreate(Bundle savedInstanceState) { DonutViewModel vm = new ViewModelProvider(this).get(DonutViewModel.class); } }
Only one constructor in the ViewModel
must be annotated with ViewModelInject
. The constructor can optionally define a androidx.hilt.Assisted
-annotated androidx.lifecycle.SavedStateHandle
parameter along with any other dependency. The SavedStateHandle
must not be a type param of javax.inject.Provider
nor Lazy and must not be qualified.
Only dependencies available in the ActivityRetainedComponent can be injected into the ViewModel
.
Summary
Public constructors | |
---|---|
<init>() Identifies a |
Public constructors
<init>
ViewModelInject()
Deprecated: Use HiltViewModel.
Identifies a androidx.lifecycle.ViewModel
's constructor for injection.
Similar to javax.inject.Inject
, a ViewModel
containing a constructor annotated with ViewModelInject
will have its dependencies defined in the constructor parameters injected by Dagger's Hilt. The ViewModel
will be available for creation by the androidx.hilt.lifecycle.HiltViewModelFactory
and can be retrieved by default in an Activity
or Fragment
annotated with AndroidEntryPoint.
Example:
public class DonutViewModel extends ViewModel { @ViewModelInject public DonutViewModel(@Assisted SavedStateHandle handle, RecipeRepository repository) { // ... } }
@AndroidEntryPoint public class CookingActivity extends AppCompatActivity { public void onCreate(Bundle savedInstanceState) { DonutViewModel vm = new ViewModelProvider(this).get(DonutViewModel.class); } }
Only one constructor in the ViewModel
must be annotated with ViewModelInject
. The constructor can optionally define a androidx.hilt.Assisted
-annotated androidx.lifecycle.SavedStateHandle
parameter along with any other dependency. The SavedStateHandle
must not be a type param of javax.inject.Provider
nor Lazy and must not be qualified.
Only dependencies available in the ActivityRetainedComponent can be injected into the ViewModel
.