如何使用onBindViewHolder()中的位置从RealmList中获取元素?

时间:2016-11-24 13:45:26

标签: java android realm

我有一个RecyclerView,我可以获得如下数据:

Cat obj = getData().get(position);
holder.setText(obj.getSomeCat())

但是对于RealmList对象,我该如何检索它们?

holder.setText(obj.getAnotherCat().get(position).getCat());

给我

  

java.lang.ArrayIndexOutOfBoundsException:rowIndex>可用行:1   > 1

0 个答案:

没有答案