Skip to content

Instantly share code, notes, and snippets.

@aybarsyalcin
Created May 15, 2018 13:04
Show Gist options
  • Save aybarsyalcin/679903f9b46356dad46880165acd2244 to your computer and use it in GitHub Desktop.
Save aybarsyalcin/679903f9b46356dad46880165acd2244 to your computer and use it in GitHub Desktop.
Sort by Date on Custom Object Array for Android
Collections.sort(messages, new Comparator() {
@Override
public int compare(Object o1, Object o2) {
Message p1 = (Message) o1;
Message p2 = (Message) o2;
if (p1.getCreatedAt().compareTo(p2.getCreatedAt()) > 0) {
return -1;
} else if (p1.getCreatedAt().compareTo(p2.getCreatedAt()) < 0) {
return +1;
} else {
return 0;
}
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment