假设我有两个模型A和B.我需要在其中获得包含A和B的结果。列表视图可能类似于
A 1
A 2
A 3
B 1
B 2
A 4
A 5
B 3
我意识到它不可能在Realm中获得混合结果。我们似乎也无法继承领域https://github.com/realm/realm-java/issues/761。
这是通过构图的一种方式 Best practice and how to implement RealmList that need to support different types of objects
实现这一目标的最佳方法是什么?