Okay so the following is my ParseQuery. How can I display most but not all of the records in random order using Collections.shuffle() in this context? For example, I have a specific record that I want …
Tag: parse-android-sdk
query.orderByRandom with Parse.com? – Displaying records in random order
I understand that you can do the following… But what if you actually want your data to come out in random order every time your activity is opened? How might this be accomplished? Answer There is no built in function for random sort order in the Parse API. You can randomize the list after you receive it using Collections.shuffle() Ex.