91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

如何在Android中利用itemdecoration實現一個時間線效果

發布時間:2021-02-23 16:34:36 來源:億速云 閱讀:150 作者:Leah 欄目:開發技術

今天就跟大家聊聊有關如何在Android中利用itemdecoration實現一個時間線效果,可能很多人都不太了解,為了讓大家更加了解,小編給大家總結了以下內容,希望大家根據這篇文章可以有所收獲。

代碼如下:

// 時間線裝飾器
public class TimeLineDecoration extends RecyclerView.ItemDecoration {
  private Paint mPaint;

  public TimeLineDecoration() {
    mPaint = new Paint();
    mPaint.setStyle(Paint.Style.FILL);
    mPaint.setColor(Color.BLUE);
    mPaint.setStrokeWidth(5);
  }

  @Override
  public void onDraw(@NonNull Canvas c, @NonNull RecyclerView parent, @NonNull RecyclerView.State state) {
    super.onDraw(c, parent, state);
    RecyclerView.LayoutManager layoutManager = parent.getLayoutManager();
    // 這里的childcount為可見item的個數。 與item的個數不一定相同。
    int childCount = parent.getChildCount();
    for (int i = 0; i < childCount; i++) {
      View child = parent.getChildAt(i);
      // 避免硬編碼,這里通過代碼獲取在getItemOffsets方法中設置的寬度
      int leftDecoWidth = layoutManager.getLeftDecorationWidth(child);
      // 根據position獲取當前的數據,然后根據數據狀態繪制不同的形狀
      int position = parent.getChildAdapterPosition(child);
      int cx = leftDecoWidth / 2;
      int cy = child.getTop() + child.getHeight() / 2;
      int radius = 20;
      if (position == 2) {
        c.drawRect(cx - radius, cy - radius, cx + radius, cy + radius, mPaint);
      } else if (position == 4) {
        // 繪制外圈為空心圓,內圈為實心圓
        mPaint.setStyle(Paint.Style.STROKE);
        c.drawCircle(cx, cy, radius, mPaint);
        mPaint.setStyle(Paint.Style.FILL);
        c.drawCircle(cx, cy, radius >> 1, mPaint);
      } else {
        c.drawCircle(cx, cy, radius, mPaint);
      }

      // 繪制item中間的連接線,第一個item與最后一個item的連接線需單獨處理一下。
      if (position == 0) {
        c.drawLine(cx, cy + mPaint.getStrokeWidth() + radius, cx, child.getBottom(), mPaint);
      } else if (position == parent.getAdapter().getItemCount() - 1) {
        c.drawLine(cx, child.getTop(), cx, cy - mPaint.getStrokeWidth() - radius, mPaint);
      } else {
        c.drawLine(cx, cy + mPaint.getStrokeWidth() + radius, cx, child.getBottom(), mPaint);
        c.drawLine(cx, child.getTop(), cx, cy - mPaint.getStrokeWidth() - radius, mPaint);
      }
    }
  }

  @Override
  public void onDrawOver(@NonNull Canvas c, @NonNull RecyclerView parent, @NonNull RecyclerView.State state) {
    super.onDrawOver(c, parent, state);
    // 不受outRect設置的范圍影響,可以繪制在item上。
  }

  @Override
  public void getItemOffsets(@NonNull Rect outRect, @NonNull View view, @NonNull RecyclerView parent, @NonNull RecyclerView.State state) {
    super.getItemOffsets(outRect, view, parent, state);
    // 在item左邊留下100像素的空間。 item的布局會在減掉這100像素后處理。
    outRect.left = 100;
  }
}

然后將該itemdecoration設置到recyclerview上。

RecyclerAdapter adapter = new RecyclerAdapter(this, data);
mRecyclerView.setLayoutManager(new LinearLayoutManager(this));
mRecyclerView.addItemDecoration(new TimeLineDecoration());
mRecyclerView.setAdapter(adapter);

看完上述內容,你們對如何在Android中利用itemdecoration實現一個時間線效果有進一步的了解嗎?如果還想了解更多知識或者相關內容,請關注億速云行業資訊頻道,感謝大家的支持。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

光山县| 呼伦贝尔市| 米易县| 泰安市| 宜川县| 屯留县| 白山市| 调兵山市| 寿光市| 邻水| 德清县| 黎城县| 荔浦县| 崇阳县| 通化市| 南部县| 三江| 驻马店市| 丽江市| 长寿区| 威宁| 海兴县| 荣昌县| 岑巩县| 乌苏市| 延庆县| 临漳县| 临猗县| 米泉市| 德昌县| 临沭县| 砀山县| 墨江| 康定县| 高密市| 沭阳县| 侯马市| 筠连县| 萝北县| 丹巴县| 张家港市|