我Comparator
用来排序我的ListView
,但它不起作用。
我的代码:
Collections.sort(orgi, new Comparator<Loc>() {
@Override
public int compare(Loc lhs, Loc rhs) {
if( lhs.getDist() < rhs.getDist() )
return 1;
else
return 0;
}
});
任何人都可以提出解决方案吗?