This video tutorial is all about the ViewModel. We will learn how to use android ViewModel in our project.
ViewModel is an android architecture component which basically have 2 attributes -
Holds all UI related data for UI controller(Activity/Fragment)
Survives any runtime configuration changes like rotate phone from Landscape to portrait and vice versa.
Starter Project download link : https://bit.ly/2UmN4bt
First part link - • #1 Android ViewModel and LiveData Tutorial...
Full Playlist link : • Android ViewModel and LiveData
ViewModel and LiveData dependency -
implementation 'androidx.lifecycle:lifecycle-extensions:2.2.0'
Let’s consider the current situation. Right now all our UI related data are inside Fragment. And when we rotate our phone, the runtime configuration is changed. After that Android OS internal system recreates our Fragment, but our valuable data is lost already if we do not take any action to save data.
Here comes the ViewModel to save us from this situation. We store our UI related data into ViewModel instead of saving inside Fragment. And thus we make an association between our fragment and the ViewModel.
Now when we rotate our phone and the configuration changes and after that the Fragment is recreated. As we have an association with ViewModel we can get all our UI data to show inside our Fragment.
#AndroidViewModel
#AndroidAppDevelopmentTutorial
#MVVMTutorial
#AndroidMVVM
On this page of the site you can watch the video online #2 Android ViewModel Tutorial - Android Architecture Component - Jetpack Tutorial - MVVM tutorial with a duration of hours minute second in good quality, which was uploaded by the user Munir Hoque 03 February 2020, share the link with friends and acquaintances, this video has already been watched 1,104 times on youtube and it was liked by 18 viewers. Enjoy your viewing!