Android 구현 목록 시간 축
실 현 된 효과 도 는 다음 과 같다.
실현 하 는 방식 은 recycleview 의 ItemDecoration 이라는 추상 적 인 유형 을 이용 하 는 것 이다.바로 우리 가 자주 분할 선 을 그 리 는 이런 유형 이다.
구체 적 으로 다음 과 같다.
public class DividerItemDecoration extends RecyclerView.ItemDecoration{
// ( )
private Paint mPaint;
// ( + )
private Paint mPaint1;
private Paint mPaint2;
private Paint mPaint3;
//
private int itemView_leftinterval;
private int itemView_topinterval;
//
private int circle_radius;
//
private Bitmap mIcon;
// ( )
private List<String> monthList= new ArrayList<>();
// ( )
private List<String> yearList= new ArrayList<>();
public void setMonthList(List<String> monthList) {
this.monthList = monthList;
}
public void setYearList(List<String> yearList) {
this.yearList = yearList;
}
// ,
public DividerItemDecoration(Context context) {
// ( )
mPaint = new Paint();
mPaint.setColor(Color.rgb(58, 154, 239));
mPaint.setStyle(Paint.Style.STROKE);
mPaint.setStrokeWidth(3);
// ( )
// &
mPaint1 = new Paint();
mPaint1.setColor(Color.BLACK);
mPaint1.setTextSize(30);
mPaint2 = new Paint();
mPaint2.setColor(context.getResources().getColor(R.color.divider));
mPaint2.setTextSize(26);
mPaint3 = new Paint();
mPaint3.setColor(Color.rgb(58, 154, 239));
mPaint3.setTextSize(20);
// ItemView
itemView_leftinterval = 150;
// ItemView
itemView_topinterval = 30;
// 10
circle_radius = 8;
}
// getItemOffsets()
// : ItemView &
@Override
public void getItemOffsets(Rect outRect, View view, RecyclerView parent, RecyclerView.State state) {
super.getItemOffsets(outRect, view, parent, state);
// ItemView & 150 px & 30px, onDraw()
outRect.set(itemView_leftinterval, itemView_topinterval, 0, 0);
}
// onDraw()
// : &
@Override
public void onDraw(Canvas c, RecyclerView parent, RecyclerView.State state) {
super.onDraw(c, parent, state);
// RecyclerView Child view
int childCount = parent.getChildCount();
// Item, ,
for (int i = 0; i < childCount; i++) {
// Item
View child = parent.getChildAt(i);
View lastChild = null;
if (i > 0) {
lastChild = parent.getChildAt(i - 1);
}
/**
*
*/
// = = (x,y)
float centerx = child.getLeft() - itemView_leftinterval / 4;
float centery = child.getTop() + itemView_topinterval +10;
//
c.drawCircle(centerx, centery, circle_radius, mPaint);
/**
* (x )
*/
// (x,y)
float upLine_up_x = centerx;
float upLine_up_y = 0;
if (i>0){
upLine_up_y = lastChild.getBottom();
}else {
upLine_up_y = centery - itemView_topinterval;
}
// (x,y)
float upLine_bottom_x = centerx;
float upLine_bottom_y = centery - circle_radius;
//
c.drawLine(upLine_up_x, upLine_up_y, upLine_bottom_x, upLine_bottom_y, mPaint);
/**
* ,
*/
if (i <childCount-1){
// (x,y)
float bottomLine_up_x = centerx;
float bottom_up_y = centery + circle_radius;
// (x,y)
float bottomLine_bottom_x = centerx;
float bottomLine_bottom_y = child.getBottom();
//
c.drawLine(bottomLine_up_x, bottom_up_y, bottomLine_bottom_x, bottomLine_bottom_y, mPaint);
}
/**
*
*/
// Item
int index = parent.getChildAdapterPosition(child);
//
float Text_x = child.getLeft() - itemView_leftinterval * 5 / 6;
float Text_y = upLine_bottom_y;
// Item
switch (index) {
case (0):
//
c.drawText(monthList.get(0), Text_x, Text_y, mPaint1);
c.drawText(yearList.get(0), Text_x + 8, Text_y + 28, mPaint2);
break;
case (1):
//
c.drawText(monthList.get(1), Text_x, Text_y, mPaint1);
c.drawText(yearList.get(1), Text_x + 8, Text_y + 28, mPaint2);
break;
case (2):
//
if (TextUtils.isEmpty(yearList.get(2))){
c.drawText(monthList.get(2), Text_x, Text_y, mPaint3);
}else {
c.drawText(monthList.get(2), Text_x, Text_y, mPaint1);
c.drawText(yearList.get(2), Text_x + 8, Text_y + 28, mPaint2);
}
break;
case (3):
//
c.drawText(monthList.get(3), Text_x, Text_y, mPaint1);
c.drawText(yearList.get(3), Text_x + 8, Text_y + 28, mPaint2);
break;
case (4):
//
c.drawText(monthList.get(4), Text_x, Text_y, mPaint1);
c.drawText(yearList.get(4), Text_x + 8, Text_y + 28, mPaint2);
break;
default:c.drawText(" ", Text_x, Text_y, mPaint1);
}
}
}
}
사용 이 비교적 간단 합 니 다:
DividerItemDecoration dividerItemDecoration = new DividerItemDecoration(this);
dividerItemDecoration.setMonthList(monthList);
dividerItemDecoration.setYearList(yearList);
mRecyclerView.addItemDecoration(dividerItemDecoration);
이상 이 바로 본 고의 모든 내용 입 니 다.여러분 의 학습 에 도움 이 되 고 저 희 를 많이 응원 해 주 셨 으 면 좋 겠 습 니 다.
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
Bitrise에서 배포 어플리케이션 설정 테스트하기이 글은 Bitrise 광고 달력의 23일째 글입니다. 자체 또는 당사 등에서 Bitrise 구축 서비스를 사용합니다. 그나저나 며칠 전 Bitrise User Group Meetup #3에서 아래 슬라이드를 발표했...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.