获取对象android内的RealmResults列表

时间:2016-07-01 11:24:32

标签: android realm

抱歉我的英文。我有适配器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

1 个答案:

答案 0 :(得分:2)

在按下用户时的onClick处理程序中,执行

security.warn

您可以查询RealmList。通过说RealmResult<Dog> realmResults = user.getDogs().where().findAll(); 你说“给我所有这些”。它给你一个RealmResult。