gpt4 book ai didi

java - LayoutManager for RecycleView 有什么用?

转载 作者:行者123 更新时间:2023-11-29 06:50:13 24 4
gpt4 key购买 nike

我无法找到为什么我们需要为 RecycleView 设置 LayoutManager 的解释。有人可以解释吗?

mLayoutManager = new LinearLayoutManager(this);
mRecyclerView.setLayoutManager(mLayoutManager);

最佳答案

使用 LayoutManager 的最佳示例之一是创建水平 RecycleView

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

RecyclerView myList = (RecyclerView) findViewById(R.id.my_recycler_view);
myList.setLayoutManager(layoutManager);

关于java - LayoutManager for RecycleView 有什么用?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51100007/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com