简体   繁体   中英

Realm java sort with multiple fields

I'm sorting like this:

RealmResults<Show> shows = realm.where(Show.class).findAll();
shows.sort("venueTitle", RealmResults.SORT_ORDER_ASCENDING);

How can I sort by multiple properties? Adding another sort line just resets the order of the results entirely.

Looks like they just added this in 0.77. I was using 0.76. Here's the Github issue: https://github.com/realm/realm-java/issues/648

and here's the API reference: http://realm.io/docs/java/0.77.0/api/

public void sort(java.lang.String[] fieldNames,
    boolean[] sortAscending)

try below code

 public RealmResults getSortedList(Class aClass) {
        String []fieldNames={"field1","field2"};
        Sort sort[]={Sort.ASCENDING,Sort.ASCENDING};
        return realm.where(YourClass.class).findAllSorted(fieldNames,sort);
    }

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM