Created
March 21, 2015 17:08
-
-
Save oznus/6271201b66c582dcabe5 to your computer and use it in GitHub Desktop.
Saving Realm object
This file contains hidden or 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
User user = new User(); | |
user.setName("Justin"); | |
user.setSurname("Timberlake"); | |
Realm realm = Realm.getInstance(getActivity()); | |
realm.beginTransaction(); | |
realm.copyToRealm(user); | |
realm.commitTransaction(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment