상세 컨텐츠

본문 제목

Collections.sort 이용해서 쉽게 비교하자!

안드로이드/소스

by 개발혱 2015. 7. 4. 23:53

본문


Collections.sort(categories, new Comparator<Category>() {
@Override
public int compare(Category c1, Category c2) {
if (c1.getOrder() > c2.getOrder()) return 1;
if (c1.getOrder() < c2.getOrder()) return -1;
return 0;
}
});


'안드로이드 > 소스' 카테고리의 다른 글

Retrofit+Spring+Android 삽질하면서 배우기  (0) 2015.07.04

관련글 더보기