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

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);

08-26 10:09