Quantcast
Channel: Sorting a JSON object in Android studios (java) - Stack Overflow
Viewing all articles
Browse latest Browse all 3

Answer by Stephen C for Sorting a JSON object in Android studios (java)

$
0
0

Write a Comparator that orders a pair of JSON objects based on their respective name attributes. Then use that to sort your array of JSON objects; e.g. using Arrays.sort(objects, comparator).

Here is a (more general) example:

You can modify that code to replace the OffersOrder class with your JSON object type (or a custom class) and then implement the comparator to compare objects and return the appropriate value.


Viewing all articles
Browse latest Browse all 3

Trending Articles