Created
November 27, 2017 01:40
-
-
Save larkintuckerllc/59f66b6a93efe66cf800ef29c09c1d42 to your computer and use it in GitHub Desktop.
Android Room: Beyond the Codelab - 5
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
... | |
public final LiveData<List<Todo>> todos; | |
private AppDatabase mDb; | |
public TodosViewModel(Application application) { | |
super(application); | |
mDb = AppDatabase.getDatabase(getApplication()); | |
todos = mDb.todoModel().findAllTodos(); | |
} | |
... |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment