将ListView中的位置传递给子RecyclerView适配器

时间:2016-06-10 06:48:29

标签: android listview android-recyclerview parameter-passing adapter

我有一个ListView布局,里面包含每个项目中的子RecyclerView。问题是将其在List中的位置传递给Recycler Adapter。我已尝试使用addind添加Tag以在List getView()中查看,然后从Recycler的onCreateViewHolder()中的ViewGroup父级中获取它,但标记为null。有什么想法可以解决这个问题?

1 个答案:

答案 0 :(得分:1)

你可以这样做: 假设您在listview getView (int position, View convertView, ViewGroup parent)方法中创建了子视图适配器,我认为您可以在子适配器构造函数中传递“位置”。