Reputation: 593
I've followed the tutorial (http://www.androidbegin.com/tutorial/android-parse-com-listview-images-and-texts-tutorial/) and build up my apps successfully. But I've got a problem. There are more than 100 items in my parse class, but the app listview only loads and show the first 99 items. How can I load all the 100+ items in the app?
Upvotes: 1
Views: 70
Reputation: 2430
As mentioned @Paulo query limited by default to 100 results.
So if you want to get more call the method setLimit()
on your query object. Also worth to mention that you can't get more than 1000 at a time anyway due to Parse restrictions
Upvotes: 2