抱歉我的英文。我有适配器extends RealmBaseAdapter
用于自动更新列表视图。我有对象
人
String id;
String name;
RealmList<Dog> dogs;
狗
String id;
String name;
我需要id
人们得到狗列表。我不知道这是怎么回事。
我喜欢这个
RealmResults<People> realmQuery = realm
.where(People.class)
.equalTo("id", "myId")
.findAll();
但现在我只有一个人,但我需要得到RealmResults
狗。
答案 0 :(得分:2)
在按下用户时的onClick处理程序中,执行
security.warn
您可以查询RealmList。通过说RealmResult<Dog> realmResults = user.getDogs().where().findAll();
你说“给我所有这些”。它给你一个RealmResult。