class Item {
int type;
String value;
}
RealmResults<Item> result = realm.where(Item.class)
.equalTo("type", type)
.findAll();
Realm上有很多重复的值。 我想获得独特的价值结果。
RealmResults<Item> result = realm.where(Item.class)
.equalTo("type", type)
.distinct("value")
.findAll();
像这样。
对此有什么解决方案吗?