Skip to Content

LiveData is a new architecture component that lets you make use of Android’s data-management capabilities. It acts as an observable data holder, updating other components in the lifecycle of an application only when its observer is active. LiveData’s lifecycle-aware nature prevents it from leaking data and makes sure that the app doesn’t do any additional …

Read More about What is Android Live Data?