国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 系統 > Android > 正文

淺談Android RecyclerView 間距全適配

2019-10-22 18:21:14
字體:
來源:轉載
供稿:網友

本文介紹了Android RecyclerView 間距全適配,分享給大家,具體如下:

LinearLayoutManager spacing

import android.graphics.Rect;import android.support.v7.widget.RecyclerView;import android.view.View;/** * Created by anonymous on 2016/9/9 0009. * <p> * SpacesItemDecoration * <p> * mRecyclerView.addItemDecoration(new SpacesItemDecoration(5)); */public class SpacesItemDecoration extends RecyclerView.ItemDecoration {  private int space;  public SpacesItemDecoration(int space) {    this.space = space;  }  @Override  public void getItemOffsets(Rect outRect, View view, RecyclerView parent, RecyclerView.State state) {    outRect.left = space;    outRect.right = space;    outRect.bottom = space;    // Add top margin only for the first item to avoid double space between items    if (parent.getChildLayoutPosition(view) == 0) {      outRect.top = space;    } else {      outRect.top = 0;    }  }}

使用方法很簡單,上面注釋中也已經給出:

mRecyclerView.addItemDecoration(new SpacesItemDecoration(5));

GridLayoutManager or StaggeredGridLayoutManager spacing

import android.graphics.Rect;import android.support.v7.widget.RecyclerView;import android.view.View;/** * Created by anonymous on 2016/9/9 0009. * <p> * GridSpacingItemDecoration * <p> * int spanCount = 3; // 3 columns * int spacing = 50; // 50px * boolean includeEdge = false; * recyclerView.addItemDecoration(new GridSpacingItemDecoration(spanCount, spacing, includeEdge)); */public class GridSpacingItemDecoration extends RecyclerView.ItemDecoration {  private int spanCount;  private int spacing;  private boolean includeEdge;  public GridSpacingItemDecoration(int spanCount, int spacing, boolean includeEdge) {    this.spanCount = spanCount;    this.spacing = spacing;    this.includeEdge = includeEdge;  }  @Override  public void getItemOffsets(Rect outRect, View view, RecyclerView parent, RecyclerView.State state) {    int position = parent.getChildAdapterPosition(view); // item position    int column = position % spanCount; // item column    if (includeEdge) {      outRect.left = spacing - column * spacing / spanCount; // spacing - column * ((1f / spanCount) * spacing)      outRect.right = (column + 1) * spacing / spanCount; // (column + 1) * ((1f / spanCount) * spacing)      if (position < spanCount) { // top edge        outRect.top = spacing;      }      outRect.bottom = spacing; // item bottom    } else {      outRect.left = column * spacing / spanCount; // column * ((1f / spanCount) * spacing)      outRect.right = spacing - (column + 1) * spacing / spanCount; // spacing - (column + 1) * ((1f /  spanCount) * spacing)      if (position >= spanCount) {        outRect.top = spacing; // item top      }    }  }}

此處不僅對間距進行了處理,而且對spanCount也進行了處理,使用方法:

    int spanCount = 3; // 3 columns    int spacing = 50; // 50px    boolean includeEdge = false;    mRecyclerView.addItemDecoration(new GridSpacingItemDecoration(spanCount, spacing, includeEdge));

以上就是本文的全部內容,希望對大家的學習有所幫助,也希望大家多多支持VEVB武林網。


注:相關教程知識閱讀請移步到Android開發頻道。
發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表
主站蜘蛛池模板: 突泉县| 铁岭县| 福建省| 海原县| 都安| 资阳市| 济南市| 安仁县| 理塘县| 贵州省| 大洼县| 平山县| 子洲县| 南康市| 稻城县| 台州市| 武陟县| 盐池县| 会东县| 中西区| 宣威市| 翁源县| 中超| 浮山县| 霍城县| 新兴县| 荥阳市| 维西| 八宿县| 灵璧县| 抚松县| 通州市| 西林县| 连山| 阳曲县| 朝阳区| 西充县| 巴塘县| 昌吉市| 伊春市| 垦利县|