Skip to content

muhammadmateen027/Realm-Data-Binding---master

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

31 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Realm-Data-Binding---master

This repo is totally based on Realm, Databinding and Volley. If you want to learn how to use Realm locally with in your project.

Example shown to read data from Realm:

public List get(View view){ RealmResults results = realm.where(Contact.class).findAll(); Log.d(TAG, String.valueOf(results));

    List<Contact> retVal = new ArrayList<Contact>();
    for (int i=0; i<results.size(); i++) {
        Contact realmObj = results.get(i);
        retVal.add(realmObj);
    }
    return retVal;
}

About

This repo is totally based on Realm, Databinding and Volley.

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages