Skip to content

This code contains the implementation of LiveData, Room Persistence Library and the databinding

Notifications You must be signed in to change notification settings

Hitesh880443/livedata-room-databinding

Repository files navigation

livedata-room-databinding

Below are the concepts covered in this code,

For demonstration purpose, I have created an app for saving my small notes which I can read at any time. So here the user can add new notes and read them any time.

  • To store the data I have used Room Persistence Library (insert and fetch operations are covered).
  • To get the data, I have used Livedata, Which also helps when there is any change in the data source.
  • To bind the data in XML files, I have used data binding.

App design

picture alt