Skip to content

Instantly share code, notes, and snippets.

@larkintuckerllc
Created November 27, 2017 01:33
Show Gist options
  • Save larkintuckerllc/c58a3981f1f912aa86c40cc80a40e482 to your computer and use it in GitHub Desktop.
Save larkintuckerllc/c58a3981f1f912aa86c40cc80a40e482 to your computer and use it in GitHub Desktop.
Android Room: Beyond the Codelab - 1
...
public void onClick(DialogInterface dialog, int which) {
String name= String.valueOf(nameEditText.getText());
long date = (new Date()).getTime();
mTodosViewModel.addTodo(name, date);
}
...
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment