Read From Realm.io And Add To Listview
I want to use Realm.io to save data and then display each item in a listview. Here is how I have create the database (I think): config = new RealmConfiguration.Builder(this)
Solution 1:
The root cause was that the OP was not creating a custom adapter. A ListView requires the creation of a class that extends from a type of adapter purposeful to each use case and override at least the getView()
method.
Post a Comment for "Read From Realm.io And Add To Listview"