Skip to content

Instantly share code, notes, and snippets.

@mplacona
Created August 10, 2016 18:40
Show Gist options
  • Save mplacona/9c3b3261d0dfd07458a2b13ddabf9b18 to your computer and use it in GitHub Desktop.
Save mplacona/9c3b3261d0dfd07458a2b13ddabf9b18 to your computer and use it in GitHub Desktop.
private void insertNote(final String noteText) {
mRealm.executeTransaction(new Realm.Transaction() {
@Override
public void execute(Realm realm) {
Note note = new Note();
note.setText(noteText);
mRealm.copyToRealm(note);
}
});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment