Android LayoutManager

01.LayoutManager作用

  • LayoutManager的职责是摆放Item的位置,并且负责决定何时回收和重用Item。
  • RecyclerView 允许自定义规则去放置子 view,这个规则的控制者就是 LayoutManager。一个 RecyclerView 如果想展示内容,就必须设置一个 LayoutManager

02.LayoutManager样式

  • LinearLayoutManager 水平或者垂直的Item视图。
  • GridLayoutManager 网格Item视图。
  • StaggeredGridLayoutManager 交错的网格Item视图。

03.LayoutManager抽象函数

  • LayoutManager当前有且仅有一个抽象函数

  • 具体如下:

    1
    public LayoutParams generateDefaultLayoutParams()

04.setLayoutManager源码

  • setLayoutManager(LayoutManager layout)源码

  • a.setLayoutManager入口源码

    • 分析:当之前设置过 LayoutManager 时,移除之前的视图,并缓存视图在 Recycler 中,将新的 mLayout 对象与 RecyclerView 绑定,更新缓存 View 的数量。最后去调用 requestLayout ,重新请求 measure、layout、draw。
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    27
    28
    29
    30
    31
    32
    33
    34
    35
    36
    37
    38
    39
    40
    41
    42
    public void setLayoutManager(LayoutManager layout) {
    if (layout == mLayout) {
    return;
    }
    // 停止滑动
    stopScroll();
    if (mLayout != null) {
    // 如果有动画,则停止所有的动画
    if (mItemAnimator != null) {
    mItemAnimator.endAnimations();
    }
    // 移除并回收视图
    mLayout.removeAndRecycleAllViews(mRecycler);
    // 回收废弃视图
    mLayout.removeAndRecycleScrapInt(mRecycler);
    //清除mRecycler
    mRecycler.clear();
    if (mIsAttached) {
    mLayout.dispatchDetachedFromWindow(this, mRecycler);
    }
    mLayout.setRecyclerView(null);
    mLayout = null;
    } else {
    mRecycler.clear();
    }
    mChildHelper.removeAllViewsUnfiltered();
    mLayout = layout;
    if (layout != null) {
    if (layout.mRecyclerView != null) {
    throw new IllegalArgumentException("LayoutManager " + layout +
    " is already attached to a RecyclerView: " + layout.mRecyclerView);
    }
    mLayout.setRecyclerView(this);
    if (mIsAttached) {
    mLayout.dispatchAttachedToWindow(this);
    }
    }
    //更新新的缓存数据
    mRecycler.updateViewCacheSize();
    //重新请求 View 的测量、布局、绘制
    requestLayout();
    }