如何在下面的Recyclerview中制作Arrage图片?

问题描述 投票:-1回答:1

Attached Image

在上面的图像中,我只想显示像在recyclerview中那样的图像(例如重叠图像),我进行了很多搜索,但没有找到可以帮助我的相关信息

android android-recyclerview recycler-adapter
1个回答
0
投票

您必须使回收站视图像下面这样水平-

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

RecyclerView myList = (RecyclerView) findViewById(R.id.my_recycler_view);
myList.setLayoutManager(layoutManager);
© www.soinside.com 2019 - 2024. All rights reserved.