热门标签 | HotTags
当前位置:  开发笔记 > 编程语言 > 正文

Android自定义StepView仿外卖配送进度

Android自定义StepView仿外卖配送进度-本文实例为大家分享了Android自定义StepView配送进度展示的具体代码,供大家参考,具体内容如下效果图使用可在layou

本文实例为大家分享了Android自定义StepView配送进度展示的具体代码,供大家参考,具体内容如下

效果图


使用

可在layout文件下设置以下属性。

 
 
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
CheckBox cbTouch = findViewById(R.id.cb_touch); 
CheckBox cbIsDown = findViewById(R.id.cb_is_down); 
final StepView stepView = findViewById(R.id.step_view); 
String[] stepTexts = new String[]{"订单已提交", "商家已接单", "配送中", "已送达"}; 
stepView.setStepTexts(stepTexts);//传入每一进度的文字描述 
stepView.setCurrentStep(2);//设置当前进度所在位置 
stepView.setOnItemStepTouchListener(new StepView.OnItemStepTouchListener() { 
 @Override 
 public void onItemStepTouch(int postion) { 
 Log.d(TAG, "当前点击位置: "+postion); 
 } 
}); 
cbTouch.setOnCheckedChangeListener(new CompoundButton.OnCheckedChangeListener() { 
 @Override 
 public void onCheckedChanged(CompoundButton buttonView, boolean isChecked) { 
 stepView.setStepIsTouch(isChecked); 
 } 
}); 
cbIsDown.setOnCheckedChangeListener(new CompoundButton.OnCheckedChangeListener() { 
 @Override 
 public void onCheckedChanged(CompoundButton buttonView, boolean isChecked) { 
 stepView.setTextUpLine(!isChecked); 
 } 
});

步骤

1、在构造函数中初始化文字、线、step图片的属性。

public StepView(Context context, @Nullable AttributeSet attrs, int defStyleAttr) { 
 super(context, attrs, defStyleAttr); 
 init(context, attrs); 
 } 
 
 private void init(Context context, AttributeSet attrs) { 
 mLinePaint = new Paint(); 
 mLinePaint.setAntiAlias(true); 
 mTextPaint = new Paint(); 
 mTextPaint.setAntiAlias(true); 
 mPreLineLength = 0; 
 //默认的step图片 
 mNormalBitmap = BitmapFactory.decodeResource(getResources(), R.drawable.ic_normal); 
 mPassedBitmap = BitmapFactory.decodeResource(getResources(), R.drawable.ic_passed); 
 mTargetBitmap = BitmapFactory.decodeResource(getResources(), R.drawable.ic_target); 
 
 TypedArray typedArray = context.obtainStyledAttributes(attrs, R.styleable.StepView); 
 //获取xml文件中的线的颜色值、size 
 mNormalLineColor = typedArray.getColor(R.styleable.StepView_normal_line_color, Color.BLUE); 
 mPassedLineColor = typedArray.getColor(R.styleable.StepView_passed_line_color, Color.WHITE); 
 int lineSize = (int) typedArray.getDimension(R.styleable.StepView_line_size, 2); 
 //获取xml文件中的文本的颜色值、size 
 mNormalTextColor = typedArray.getColor(R.styleable.StepView_normal_text_color, Color.BLACK); 
 mTargetTextColor = typedArray.getColor(R.styleable.StepView_target_text_color, Color.BLACK); 
 int textSize = (int) typedArray.getDimension(R.styleable.StepView_text_size, 10); 
 //获取xml文件中的step的size,设置给step图片的高度 
 int stepSize = (int) typedArray.getDimension(R.styleable.StepView_step_size, 0); 
 //获取xml文件中的文本和线之间的间距 
 mTextLineMargin = (int) typedArray.getDimension(R.styleable.StepView_text_line_margin, 3); 
 //获取xml文件中的step总数 
 mStepCount = typedArray.getInt(R.styleable.StepView_step_count, 2); 
 
 //获取xml文件中的当前step位置 
 mCurrentStep = typedArray.getInt(R.styleable.StepView_current_step, 0); 
 //获取xml文件中step图片 
 BitmapDrawable normalDrawable = (BitmapDrawable) typedArray.getDrawable(R.styleable.StepView_normal_step_iv); 
 BitmapDrawable passedDrawable = (BitmapDrawable) typedArray.getDrawable(R.styleable.StepView_passed_step_iv); 
 BitmapDrawable targetDrawable = (BitmapDrawable) typedArray.getDrawable(R.styleable.StepView_target_step_iv); 
 //获取xml文件中step是否可点击TRUE可以,FALSE不可以,默认为FALSE 
 mStepIsTouch = typedArray.getBoolean(R.styleable.StepView_step_is_touch, false); 
 //获取xml文件中text是否在线上,TRUE在线上,FALSE不在线上,默认为FALSE 
 mTextUpLine = typedArray.getBoolean(R.styleable.StepView_text_up_line, true); 
 mTextPaint.setTextSize(textSize); 
 mLinePaint.setStrokeWidth(lineSize); 
 mNormalBitmap = normalDrawable.getBitmap();//将xml文件中指定的图片赋给对应的bitmap 
 mPassedBitmap = passedDrawable.getBitmap(); 
 mTargetBitmap = targetDrawable.getBitmap(); 
 mNormalBitmapWH = getBitmapWH(stepSize, mNormalBitmap); 
 mPassedBitmapWH = getBitmapWH(stepSize, mPassedBitmap); 
 mTargetBitmapWH = getBitmapWH(stepSize, mTargetBitmap); 
 if (stepSize != 0) {//如果stepSize不为0,要对其进行压缩处理,使其高度等于stepSize 
  mNormalBitmap = zoomImg(mNormalBitmap, mNormalBitmapWH); 
  mPassedBitmap = zoomImg(mPassedBitmap, mPassedBitmapWH); 
  mTargetBitmap = zoomImg(mTargetBitmap, mPassedBitmapWH); 
 } 
 mStepRectFs = new RectF[mStepCount];//初始化step所对应的矩阵数组,点击step时会用到,用于确定点击的是哪个step 
 typedArray.recycle(); 
}

2、在onMeasure中对StepView的宽高进行设置,并根据StepView的宽高计算每条直线的长度。

@Override 
protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) { 
 int widthMode = MeasureSpec.getMode(widthMeasureSpec); 
 int widthSize = MeasureSpec.getSize(widthMeasureSpec); 
 int heightMode = MeasureSpec.getMode(heightMeasureSpec); 
 int heightSize = MeasureSpec.getSize(heightMeasureSpec); 
 int width = widthSize - getPaddingLeft() - getPaddingRight();//任何模式下with都是父容器给定的with-padding值 
 int height = 0; 
 if (heightMode == MeasureSpec.EXACTLY) { 
 height = heightSize - getPaddingTop() - getPaddingBottom(); 
 } else { 
 height = dp2px(getContext(), 80); 
 } 
 setMeasuredDimension(width, height); 
 mPreLineLength = width / (mStepCount + 1);//计算每条线的长度,由于线比step多一个所以加1 
}

3、开始绘制,先画线,再画step和文字。

@Override 
protected void onDraw(Canvas canvas) { 
 if (mStepCount != 0) { 
 drawLine(canvas);//drawLine和drawStep分两次循环是为了防止部分线覆盖step 
 drawStep(canvas); 
 } 
}

4、画线,前一条线的stopX坐标是下一条线的startX坐标,并根据当前step所在的位置对lineColor进行设置。

private void drawLine(Canvas canvas) { 
 float lineStartX = getPaddingLeft(); 
 float lineStartY = getLineStartY(); 
 float lineStopX = 0; 
 float lineStopY = lineStartY; 
 for (int i = 0; i 

5、画step和文字。

private void drawStep(Canvas canvas) { 
 float lineStartX = getPaddingLeft(); 
 float lineStartY = getLineStartY(); 
 Bitmap currentBitmap; 
 int[] currentBitmapWH; 
 float lineStopX; 
 float bitmapLeft; 
 float bitmapTop; 
 for (int i = 0; i 

6、对触摸事件进行处理。

@Override 
public boolean onTouchEvent(MotionEvent event) { 
 if (!mStepIsTouch) {//不能点击返回FALSE不处理 
 return false; 
 } 
 switch (event.getAction()) { 
 case MotionEvent.ACTION_DOWN: 
  float x = event.getX(); 
  float y = event.getY(); 
  int touchStep = getTouchStep(new PointF(x, y));//获取被点击的点的位置 
  if (touchStep != -1) { 
  mCurrentStep = touchStep + 1; 
  invalidate(); 
  } 
  break; 
 } 
 return true; 
}

7、step的触摸监听。

private OnItemStepTouchListener mOnItemStepTouchListener; 
 
public void setOnItemStepTouchListener(OnItemStepTouchListener onItemStepTouchListener) { 
 mOnItemStepTouchListener= onItemStepTouchListener; 
} 
 
//每一个step的触摸监听 
public interface OnItemStepTouchListener { 
 void onItemStepTouch(int postion); 
}

8、设置当前进度所在位置,也可在layout文件中通过current_step属性进行设置。

//设置当前step 
public void setCurrentStep(int currentStep) { 
 mCurrentStep = currentStep; 
 invalidate(); 
}

9、设置step对应的文字,不传入不会显示文字。

//设置step对应的texts 
public void setStepTexts(String[] stepTexts) { 
 mStepTexts = stepTexts; 
 mStepCount = mStepTexts.length; 
 mStepRectFs = new RectF[mStepCount];//初始化step所对应的矩阵数组,点击step时会用到,用于确定点击的是哪个step 
}

10、设置step是否可点击,不出入默认为false不可点击,也可在layout文件中通过step_is_touch属性进行设置。

public void setStepIsTouch(boolean stepIsTouch) { 
 mStepIsTouch = stepIsTouch; 
}

11、设置文字是否在线上,不传入默认为true在线上,也可在layout文件中通过text_up_line属性进行设置。

public void setTextUpLine(boolean textUpLine) { 
 mTextUpLine = textUpLine; 
 invalidate(); 
}

源码地址:StepViewDemo


推荐阅读
  • 目录介绍01.CoordinatorLayout滑动抖动问题描述02.滑动抖动问题分析03.自定义AppBarLayout.Behavior说明04.CoordinatorLayo ... [详细]
  • 利用HTML5 Canvas高效构建电信网络拓扑图
    电信网络拓扑图在实际应用中具有很高的实用价值。本文介绍了一个基于HTML5 Canvas的电信网络拓扑图项目,不仅实现了基本的图形展示功能,还加入了自动布局和属性栏功能,使项目更加完善。此Demo经过细微调整即可直接应用于实际项目中。 ... [详细]
  • 本文介绍了如何在Java中使用`JCheckBoxMenuItem.setMnemonic()`方法,并提供了多个实际应用的代码示例。 ... [详细]
  • td{border:1pxsolid#808080;}参考:和FMX相关的类(表)TFmxObjectIFreeNotification ... [详细]
  • 中科院学位论文排版指南
    随着毕业季的到来,许多即将毕业的学生开始撰写学位论文。本文介绍了使用LaTeX排版学位论文的方法,特别是针对中国科学院大学研究生学位论文撰写规范指导意见的最新要求。LaTeX以其精确的控制和美观的排版效果成为许多学者的首选。 ... [详细]
  • Redux入门指南
    本文介绍Redux的基本概念和工作原理,帮助初学者理解如何使用Redux管理应用程序的状态。Redux是一个用于JavaScript应用的状态管理库,特别适用于React项目。 ... [详细]
  • 在 Android 开发中,通过 Intent 启动 Activity 或 Service 时,可以使用 putExtra 方法传递数据。接收方可以通过 getIntent().getExtras() 获取这些数据。本文将介绍如何使用 RoboGuice 框架简化这一过程,特别是 @InjectExtra 注解的使用。 ... [详细]
  • 黑马头条项目:Vue 文章详情模块与交互功能实现
    本文详细介绍了如何在黑马头条项目中配置文章详情模块的路由、获取和展示文章详情数据,以及实现关注、点赞、不喜欢和评论功能。通过这些步骤,您可以全面了解如何开发一个完整的前端文章详情页面。 ... [详细]
  • 深入解析 Android IPC 中的 Messenger 机制
    本文详细介绍了 Android 中基于消息传递的进程间通信(IPC)机制——Messenger。通过实例和源码分析,帮助开发者更好地理解和使用这一高效的通信工具。 ... [详细]
  • 本文提供了手势解锁功能的详细实现方法和源码下载链接。通过分析手势解锁的界面和逻辑,详细介绍如何在iOS应用中实现这一功能。 ... [详细]
  • 当前,许多屏幕截图应用程序支持任意形状的截图功能。这引发了一个技术问题:如何高效地判断一个像素点是否位于指定的曲线或形状内部?本文将深入探讨这一问题,并提供一种简洁有效的解决方案。 ... [详细]
  • 纵向|发生_ListView和EditText使用解决方案 ... [详细]
  • 本文详细介绍了如何在iOS5中创建和理解简单的Hello World应用,包括Interface Builder的使用、Objective-C源代码文件的结构以及事件处理机制。 ... [详细]
  • 本文详细探讨了如何在 C# 中使用 Infragistics 组件库解决常见的开发问题,包括工具栏按钮禁用、Grid 中的时间记录及样式设置、以及 Excel 导出功能的实现。 ... [详细]
  • 本文介绍如何通过自定义控件LoadLayout实现ListView的上拉加载更多和下拉刷新功能。LoadLayout支持上拉加载,而下拉刷新则利用了android.support.v4.widget.SwipeRefreshLayout组件。 ... [详细]
author-avatar
销魂苗苗若郗
这个家伙很懒,什么也没留下!
PHP1.CN | 中国最专业的PHP中文社区 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved | 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有