在可扩展列表视图中显示水平回收视图以及图像和文本

时间:2016-10-26 09:10:01

标签: android android-recyclerview expandablelistview expandablerecyclerview

Click here to view the image

您好我想在可扩展列表视图中显示文本视图下方图像的水平回收视图,如图所示,如何实现这一点请帮助我,提前感谢。

1 个答案:

答案 0 :(得分:0)

您可以使用Horizo​​ntal RecyeclerView&将LayoutManager指定为Horizantal

LinearLayoutManager layoutManager
    = new LinearLayoutManager(this, LinearLayoutManager.HORIZONTAL, false);

RecyclerView HorizontalRV = (RecyclerView) findViewById(R.id.recyclerViewId);
HorizontalRV.setLayoutManager(layoutManager);