欧美bbbwbbbw肥妇,免费乱码人妻系列日韩,一级黄片

RecyclerView消除底部分割線的方法

 更新時間:2020年07月23日 11:06:14   作者:掌握當下  
這篇文章主要為大家詳細介紹了RecyclerView消除底部分割線的方法,文中示例代碼介紹的非常詳細,具有一定的參考價值,感興趣的小伙伴們可以參考一下

最近遇到一個問題,用RecyclerView顯示數據,縱向列表顯示,添加默認分割線。

問題是:底部也會顯示分割線,這很影響美觀。

怎么解決這個問題呢?我想了很多辦法,毫無頭緒。。。

最后,查看默認分割線的類DividerItemDecoration的源碼:

public class DividerItemDecoration extends ItemDecoration {
 private static final int[] ATTRS = new int[]{16843284};
 public static final int HORIZONTAL_LIST = 0;
 public static final int VERTICAL_LIST = 1;
 private Drawable mDivider;
 private int mOrientation;

 public DividerItemDecoration(Context context, int orientation) {
  TypedArray a = context.obtainStyledAttributes(ATTRS);
  this.mDivider = a.getDrawable(0);
  a.recycle();
  this.setOrientation(orientation);
 }

 public void setOrientation(int orientation) {
  if(orientation != 0 && orientation != 1) {
   throw new IllegalArgumentException("invalid orientation");
  } else {
   this.mOrientation = orientation;
  }
 }

 public void onDraw(Canvas c, RecyclerView parent) {
  if(this.mOrientation == 1) {
   this.drawVertical(c, parent);
  } else {
   this.drawHorizontal(c, parent);
  }

 }

 public void drawVertical(Canvas c, RecyclerView parent) {
  int left = parent.getPaddingLeft();
  int right = parent.getWidth() - parent.getPaddingRight();
  int childCount = parent.getChildCount();

  for(int i = 0; i < childCount; ++i) {
   View child = parent.getChildAt(i);
   LayoutParams params = (LayoutParams)child.getLayoutParams();
   int top = child.getBottom() + params.bottomMargin;
   int bottom = top + this.mDivider.getIntrinsicHeight();
   this.mDivider.setBounds(left, top, right, bottom);
   this.mDivider.draw(c);
  }

 }

 public void drawHorizontal(Canvas c, RecyclerView parent) {
  int top = parent.getPaddingTop();
  int bottom = parent.getHeight() - parent.getPaddingBottom();
  int childCount = parent.getChildCount();

  for(int i = 0; i < childCount; ++i) {
   View child = parent.getChildAt(i);
   LayoutParams params = (LayoutParams)child.getLayoutParams();
   int left = child.getRight() + params.rightMargin;
   int right = left + this.mDivider.getIntrinsicHeight();
   this.mDivider.setBounds(left, top, right, bottom);
   this.mDivider.draw(c);
  }

 }

 public void getItemOffsets(Rect outRect, int itemPosition, RecyclerView parent) {
  if(this.mOrientation == 1) {
   outRect.set(0, 0, 0, this.mDivider.getIntrinsicHeight());
  } else {
   outRect.set(0, 0, this.mDivider.getIntrinsicWidth(), 0);
  }

 }
}

因為我用到的是垂直列表,用到的是紅色字體處的代碼:

 public void drawVertical(Canvas c, RecyclerView parent) {
  int left = parent.getPaddingLeft();
  int right = parent.getWidth() - parent.getPaddingRight();
  int childCount = parent.getChildCount();

  for(int i = 0; i < childCount; ++i) {
   View child = parent.getChildAt(i);
   LayoutParams params = (LayoutParams)child.getLayoutParams();
   int top = child.getBottom() + params.bottomMargin;
   int bottom = top + this.mDivider.getIntrinsicHeight();
   this.mDivider.setBounds(left, top, right, bottom);
   this.mDivider.draw(c);
  }

 }

從代碼中很容易看出只要修改for循環(huán)中的內容就可去掉底部的分割線:

 public void drawVertical(Canvas c, RecyclerView parent) {
  int left = parent.getPaddingLeft();
  int right = parent.getWidth() - parent.getPaddingRight();
  int childCount = parent.getChildCount();

  for(int i = 0; i < childCount-1; ++i) {
   View child = parent.getChildAt(i);
   LayoutParams params = (LayoutParams)child.getLayoutParams();
   int top = child.getBottom() + params.bottomMargin;
   int bottom = top + this.mDivider.getIntrinsicHeight();
   this.mDivider.setBounds(left, top, right, bottom);
   this.mDivider.draw(c);
  }

 }

因為這個類我們不能直接修改,所以我們可以自定義一個類,修改相應內容,添加分割線的時候,使用自定義類。

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

相關文章

  • Android 模擬新聞APP顯示界面滑動優(yōu)化實例代碼

    Android 模擬新聞APP顯示界面滑動優(yōu)化實例代碼

    所謂滑動優(yōu)化就是滑動時不加載圖片,停止才加載,第一次進入時手動加載。下面通過本文給大家介紹android 模擬新聞app顯示界面滑動優(yōu)化實例代碼,需要的朋友可以參考下
    2017-03-03
  • 5個Android開發(fā)中比較常見的內存泄漏問題及解決辦法

    5個Android開發(fā)中比較常見的內存泄漏問題及解決辦法

    本文主要介紹了5個Android開發(fā)中比較常見的內存泄漏問題及解決辦法,具有很好的參考價值,下面跟著小編一起來看下吧
    2017-02-02
  • Android實現可點擊展開的TextView

    Android實現可點擊展開的TextView

    這篇文章主要為大家詳細介紹了Android實現可點擊展開的TextView,具有一定的參考價值,感興趣的小伙伴們可以參考一下
    2017-11-11
  • Android學習筆記之ActionBar Item用法分析

    Android學習筆記之ActionBar Item用法分析

    這篇文章主要介紹了Android學習筆記之ActionBar Item用法,結合實例形式分析了ActionBar Item的具體功能與相關使用技巧,需要的朋友可以參考下
    2017-05-05
  • Android通過應用程序創(chuàng)建快捷方式的方法

    Android通過應用程序創(chuàng)建快捷方式的方法

    這篇文章主要介紹了Android通過應用程序創(chuàng)建快捷方式的方法,涉及Android基于應用程序創(chuàng)建快捷方式的圖標及動作等技巧,具有一定參考借鑒價值,需要的朋友可以參考下
    2015-09-09
  • Android實現今日頭條訂閱頻道效果

    Android實現今日頭條訂閱頻道效果

    這篇文章主要為大家詳細介紹了Android實現今日頭條訂閱頻道效果,具有一定的參考價值,感興趣的小伙伴們可以參考一下
    2019-01-01
  • 高仿網易新聞頂部滑動條效果實現代碼

    高仿網易新聞頂部滑動條效果實現代碼

    網易新聞的主界面頂部的滑動條個人感覺還是比較漂亮的所以今天也模仿了下,網易頂部滑動條的效果,由于初次模仿這種效果,可能有些地方還不夠完美,不過基本已經實現,希望大家能夠喜歡
    2013-01-01
  • Android中TextView實現超過固定行數顯示“...展開全部”

    Android中TextView實現超過固定行數顯示“...展開全部”

    這篇文章主要給大家介紹了關于Android中TextView如何實現超過固定行數顯示"...展開全部"的相關資料,文中通過示例代碼介紹的非常詳細,對大家的學習或者工作具有一定的參考學習價值,需要的朋友們下面隨著小編來一起學習學習吧。
    2017-12-12
  • Android 中WebView 截圖的實現方式

    Android 中WebView 截圖的實現方式

    這篇文章主要介紹了Android 中WebView 截圖的實現方式,WebView 作為一種特殊的控件,自然不能像其他系統(tǒng) View 或者截屏的方式來獲取截圖。本文通過實例代碼給大家介紹的非常詳細,需要的朋友參考下吧
    2017-12-12
  • Android簡單實現一個顏色漸變的ProgressBar的方法

    Android簡單實現一個顏色漸變的ProgressBar的方法

    本篇文章主要介紹了Android簡單實現一個顏色漸變的ProgressBar的方法,具有一定的參考價值,感興趣的小伙伴們可以參考一下
    2017-12-12

最新評論