21.kaw
21.kaw

Reputation: 593

Parse listview only loads the first 99 items of the class, instead of all of them

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

Answers (1)

Oleg Osipenko
Oleg Osipenko

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

Related Questions