我基本上是在尝试实现这个设计原则(from Google's Material Design):
因此,我使用RecyclerView
制作了父LinearLayoutManager
,然后在RecyclerView
适配器中,我将RecyclerView
与GridLayoutManager
放在一起对于富媒体"富媒体"部分(行动领域2)。一切正常,除了我已将内部RecyclerView
网格设置为match_parent
宽度和wrap_content
高度这一事实,但它不会计算正确的内容大小,似乎留在0&因而隐藏。如果我将孩子RecyclerView
设置为特定高度,则项目会显示在内部,但当然会在底部切断。
其他人似乎遇到了这个问题,but in their case, both have linear layouts。 (另见"Khay's" answer here。)
现在我的问题是,如何覆盖onMeasure
方法" pptang"在上面链接问题的已接受答案中,但在自定义GridLayoutManager
而不是自定义LinearLayoutManager
内?我没有在这里发布我的代码,因为它与链接的代码基本相同,只是我需要为孩子GridLayoutManager
制作自定义RecyclerView
,以便它正确地衡量了" pptang"回答说明。
否则,有没有比在第二个RecyclerView中使用1 RecyclerView更好的方法?只有1个RecyclerView使用上面CardViews
的列表和每个CardView
中的唯一项目网格填充活动/片段吗?
答案 0 :(得分:3)
您可以使用库SectionedRecyclerViewAdapter仅使用一个RecyclerView构建它。
您可以在here下面找到图片示例的完整代码。
首先创建一个Section类:
class MySection extends StatelessSection {
String title;
String subtitle;
List<String> list;
public MySection(String title, String subtitle, List<String> list) {
// call constructor with layout resources for this Section header, footer and items
super(R.layout.section_header, R.layout.section_item);
this.title = title;
this.subtitle = subtitle;
this.list = list;
}
@Override
public int getContentItemsTotal() {
return list.size(); // number of items of this section
}
@Override
public RecyclerView.ViewHolder getItemViewHolder(View view) {
// return a custom instance of ViewHolder for the items of this section
return new MyItemViewHolder(view);
}
@Override
public void onBindItemViewHolder(RecyclerView.ViewHolder holder, int position) {
MyItemViewHolder itemHolder = (MyItemViewHolder) holder;
// bind your view here
itemHolder.tvItem.setText(list.get(position));
}
@Override
public RecyclerView.ViewHolder getHeaderViewHolder(View view) {
return new SimpleHeaderViewHolder(view);
}
@Override
public void onBindHeaderViewHolder(RecyclerView.ViewHolder holder) {
MyHeaderViewHolder headerHolder = (MyHeaderViewHolder) holder;
// bind your header view here
headerHolder.tvTitle.setText(title);
headerHolder.tvSubTitle.setText(subtitle);
}
}
然后使用您的章节设置RecyclerView:
// Create an instance of SectionedRecyclerViewAdapter
SectionedRecyclerViewAdapter sectionAdapter = new SectionedRecyclerViewAdapter();
// Create your sections with the list of data for each year
MySection section1 = new MySection("Title", "Subhead", firstDataList);
// Add your Sections to the adapter
sectionAdapter.addSection(section1);
// Set up your RecyclerView with the SectionedRecyclerViewAdapter
GridLayoutManager glm = new GridLayoutManager(getContext(), 2);
glm.setSpanSizeLookup(new GridLayoutManager.SpanSizeLookup() {
@Override
public int getSpanSize(int position) {
switch(sectionAdapter.getSectionItemViewType(position)) {
case SectionedRecyclerViewAdapter.VIEW_TYPE_HEADER:
return 2;
default:
return 1;
}
}
});
recyclerView.setLayoutManager(glm);
recyclerView.setAdapter(sectionAdapter);
答案 1 :(得分:0)
总结一下。 您不应该在回收商内部使用回收商。您需要实现自定义gridLayoutManager。要实现这一点,请阅读以下内容:
来自文档https://developer.android.com/reference/android/support/v7/widget/RecyclerView.ItemDecoration.html
ItemDecoration允许应用程序从适配器的数据集向特定项视图添加特殊的绘图和布局偏移。这对于在项目,高亮,可视分组边界等之间绘制分隔线非常有用。
因此,如果你使用上面的http://blog.sqisland.com/2014/12/recyclerview-grid-with-header.html,你绝对可以实现你想要的。只需将您在材质指南中提供的图像视为gridLayoutManager中的一组。