列表中所有RealmObject的ChangeListener

时间:2016-08-20 12:31:44

标签: android realm

假设我有RealmObject这样的人。

public class DownloadQueue extends RealmObject {
    public RealmList<Download> queue;
}

如果向此对象添加ChangeListener,是否会在添加或更改项目时收到通知?或者有更好的方法吗?

1 个答案:

答案 0 :(得分:1)

如果您想收听Download领域对象之间的更改,那么您需要将RealmChangeListener添加到属于RealmResults的{​​{1}} } class。

Download