前言:

通过view绘制虚实线,采用Android自带API——DashPathEffect。具体使用请参考更多的链接,这里只是讲解。

构造函数

DashPathEffect 的构造函数有两个参数:

DashPathEffect (float[] intervals, float phase)

官方文档解释如下:

The intervals array must contain an even number of entries (>=2), with the even indices specifying the "on" intervals, and the odd indices specifying the "off" intervals. phase is an offset into the intervals array (mod the sum of all of the intervals). The intervals array controls the length of the dashes. The paint's strokeWidth controls the thickness of the dashes. Note: this path effect only affects drawing with the paint's style is set to STROKE or FILL_AND_STROKE. It is ignored if the drawing is done with style == FILL.

翻译成中文如下:

间隔数组必须包含偶数个条目(大于等于2),偶数索引指定“开”间隔,而奇数索引指定“关”间隔。相位是间隔数组的偏移量(所有间隔的总和)。间隔数组控制了冲线的长度。画笔宽度宽度控制着冲线的厚度。注意:路径效果只对画笔样式为描边或填充和描边有效。如果画笔样式为填充则会忽略它。

下面通过一个示例来研究这两个参数的作用。

代码部分

  • MainActivity.java
package ivan.rich.patheffect;

import android.support.v7.app.AppCompatActivity;
import android.os.Bundle; public class MainActivity extends AppCompatActivity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
}
}
  • activity_main.xml
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context="ivan.rich.patheffect.MainActivity"> <ivan.rich.patheffect.PathEffectView
android:layout_width="match_parent"
android:layout_height="match_parent"/>
</LinearLayout>
  • PathEffectView.java
package ivan.rich.patheffect;

import android.content.Context;
import android.graphics.Canvas;
import android.graphics.DashPathEffect;
import android.graphics.Paint;
import android.graphics.Path;
import android.support.annotation.Nullable;
import android.util.AttributeSet;
import android.view.View; public class PathEffectView extends View { private int mWidth;
private int mHeight; private Paint mLinePaint;
private Paint mPaint;
private Path mPath; public PathEffectView(Context context) {
this(context, null);
} public PathEffectView(Context context, @Nullable AttributeSet attrs) {
super(context, attrs);
init();
} private void init() {
mPaint = new Paint();
mPaint.setAntiAlias(true);
mPaint.setStrokeWidth(20);
mPaint.setColor(getResources().getColor(R.color.colorPrimary));
mPaint.setStyle(Paint.Style.STROKE); mLinePaint = new Paint(Paint.ANTI_ALIAS_FLAG);
mLinePaint.setStrokeWidth(1);
mLinePaint.setStyle(Paint.Style.STROKE);
mLinePaint.setColor(getResources().getColor(R.color.colorAccent)); mPath = new Path();
} @Override
protected void onSizeChanged(int w, int h, int oldw, int oldh) {
super.onSizeChanged(w, h, oldw, oldh);
mWidth = w;
mHeight = h;
} @Override
protected void onDraw(Canvas canvas) {
super.onDraw(canvas);
// 绘制一条参考线
canvas.drawLine(60, 0, 60, mHeight, mLinePaint); // 绘制第一条虚线
DashPathEffect dashPathEffect1 = new DashPathEffect(new float[]{60, 60}, 0);
mPaint.setPathEffect(dashPathEffect1);
mPath.reset();
mPath.moveTo(0, mHeight / 10);
mPath.lineTo(mWidth, mHeight / 10);
canvas.drawPath(mPath, mPaint); // 绘制第二条虚线
DashPathEffect dashPathEffect2 = new DashPathEffect(new float[]{60, 60}, 20);
mPaint.setPathEffect(dashPathEffect2);
mPath.reset();
mPath.moveTo(0, mHeight * 2 / 10);
mPath.lineTo(mWidth, mHeight * 2 / 10);
canvas.drawPath(mPath, mPaint); // 绘制第三条虚线
DashPathEffect dashPathEffect3 = new DashPathEffect(new float[]{60, 60}, 40);
mPaint.setPathEffect(dashPathEffect3);
mPath.reset();
mPath.moveTo(0, mHeight * 3 / 10);
mPath.lineTo(mWidth, mHeight * 3 / 10);
canvas.drawPath(mPath, mPaint); // 绘制第四条虚线
DashPathEffect dashPathEffect4 = new DashPathEffect(new float[]{60, 60}, 60);
mPaint.setPathEffect(dashPathEffect4);
mPath.reset();
mPath.moveTo(0, mHeight * 4 / 10);
mPath.lineTo(mWidth, mHeight * 4 / 10);
canvas.drawPath(mPath, mPaint); // 绘制第五条虚线
DashPathEffect dashPathEffect5 = new DashPathEffect(new float[]{60, 60, 30, 30}, 0);
mPaint.setPathEffect(dashPathEffect5);
mPath.reset();
mPath.moveTo(0, mHeight * 6 / 10);
mPath.lineTo(mWidth, mHeight * 6 / 10);
canvas.drawPath(mPath, mPaint); // 绘制第六条虚线
DashPathEffect dashPathEffect6 = new DashPathEffect(new float[]{60, 30, 30, 60}, 0);
mPaint.setPathEffect(dashPathEffect6);
mPath.reset();
mPath.moveTo(0, mHeight * 7 / 10);
mPath.lineTo(mWidth, mHeight * 7 / 10);
canvas.drawPath(mPath, mPaint); // 绘制第七条虚线
DashPathEffect dashPathEffect7 = new DashPathEffect(new float[]{30, 60, 60, 30}, 0);
mPaint.setPathEffect(dashPathEffect7);
mPath.reset();
mPath.moveTo(0, mHeight * 8 / 10);
mPath.lineTo(mWidth, mHeight * 8 / 10);
canvas.drawPath(mPath, mPaint); // 绘制第八条虚线
DashPathEffect dashPathEffect8 = new DashPathEffect(new float[]{30, 30, 60, 60}, 0);
mPaint.setPathEffect(dashPathEffect8);
mPath.reset();
mPath.moveTo(0, mHeight * 9 / 10);
mPath.lineTo(mWidth, mHeight * 9 / 10);
canvas.drawPath(mPath, mPaint);
}
}

运行结果

参数分析

1.首先看截图上半部分的四条虚线段,四条虚线对应的DashPathEffect如下:

DashPathEffect dashPathEffect1 = new DashPathEffect(new float[]{60, 60}, 0);
DashPathEffect dashPathEffect2 = new DashPathEffect(new float[]{60, 60}, 20);
DashPathEffect dashPathEffect3 = new DashPathEffect(new float[]{60, 60}, 40);
DashPathEffect dashPathEffect4 = new DashPathEffect(new float[]{60, 60}, 60);

这四个DashPathEffect的区别在于第二个参数phase值不同,以参考线为基准可以清晰地看到phase参数的作用是将整个View向“左”移动phase。什么意思呢,左移为0:不移动;左移为20:移动20个单位长度;左移为40:移动40个单位长度。因此,左移60的时候,第四根线条相对第一根线条,左移了一个实线段。

2.然后看截图下半部分的四条虚线段,这四条虚线段对应的DashPathEffect如下:

DashPathEffect dashPathEffect5 = new DashPathEffect(new float[]{60, 60, 30, 30}, 0);
DashPathEffect dashPathEffect6 = new DashPathEffect(new float[]{60, 30, 30, 60}, 0);
DashPathEffect dashPathEffect7 = new DashPathEffect(new float[]{30, 60, 60, 30}, 0);
DashPathEffect dashPathEffect8 = new DashPathEffect(new float[]{60, 60, 40, 40, 20, 20}, 0);

从效果图可以看出间隔数组的偶数索引处数组值对应的是实线宽度,奇数索引处数组值对应的是实线之后空白线的宽度。前面已经提到过数组必须包含偶数个条目,所以“on”和“off”值是对应的。在绘制View时系统遍历当前间隔数组,依次绘制第一个“on”和第一个“off”值,第二个“on”和第二个“off"值。。。,照此类推直至绘制完所有对应的"on"和"off”值,然后按照此方法循环遍历间隔数组直至View的绘制完成。用代码概括来说就是:

for (i=0 ; i<intervals.length; i+=2) {
// 实线宽度on
mLineWidth = intervals[i];
// 实线之间空白线宽度off
mBlankSpace = intervals[i+1];
}

总结

构造函数

DashPathEffect(float intervals[], float phase)

参数含义

  • intervals: 控制实线和实线之后空白线的宽度(数组长度必须为偶数)
  • phase: 将View向”左“偏移phase

用法

Paint.setPathEffect(DashPathEffect dashPathEffect);

Android 虚线实现绘制 - DashPathEffect的更多相关文章

  1. android自定义View绘制天气温度曲线

    原文:android自定义View绘制天气温度曲线 版权声明:本文为博主原创文章,未经博主允许不得转载. https://blog.csdn.net/u012942410/article/detail ...

  2. Android View 如何绘制

    上文说道了Android如何测量,但是一个漂亮的控件我只知道您长到哪儿,这当然不行.只需要简单重写OnDraw方法,并在Canvas(画布)对象上调用那根五颜六色的画笔就能够画出这控件"性感 ...

  3. Android实现图表绘制和展示

    本文演示在Android平台中绘制和展示图表示例,本示例是基于RChart 2实现的. 在一个系统中经常要用到图表统计数据,在WEB开发中图表绘制是一件简单的事情,因为有比较多的开源方案.但在Andr ...

  4. Android View的绘制机制流程深入详解(四)

    本系列文章主要着重深入介绍Android View的绘制机制及流程,第四篇主要介绍Android自定义View及ViewGroup的实现方法和流程. 主要介绍了自绘控件.自定义组合控件.自定义继承控件 ...

  5. Android View的绘制机制流程深入详解(三)

    本系列文章主要着重深入介绍Android View的绘制机制及流程,第三篇主要介绍并分析视图状态以及重绘流程,首先剖析了 视图的几种状态,然后在深入分析视图的重绘机制流程. 真题园网:http://w ...

  6. Android View的绘制机制流程深入详解(二)

    本系列文章主要着重深入介绍Android View的绘制机制及流程,第二篇主要介绍并分析Android视图的绘制的原理和流程.主要从 onMeasure().onLayout()和onDraw()这三 ...

  7. Android View的绘制机制流程深入详解(一)

    本系列文章主要着重深入介绍Android View的绘制机制及流程,第一篇主要介绍并分析LayoutInflater的原理, 从而理解setContentView的加载原理.对于LayoutInfla ...

  8. Android之View绘制流程源码分析

    版权声明:本文出自汪磊的博客,转载请务必注明出处. 对于稍有自定义View经验的安卓开发者来说,onMeasure,onLayout,onDraw这三个方法都不会陌生,起码多少都有所接触吧. 在安卓中 ...

  9. 使用GPA针对android应用的绘制分析

    使用GPA针对android应用的绘制分析 以前经常用GPA来perf端游的绘制,很多perf工具例如perfhud,pix对于加壳的程序总是束手无策,但是GPA却不受这个限制,可以自动HOOK 3D ...

随机推荐

  1. POJ-1390-Blocks (复杂区间DP)

    $ POJ~1390~~Blocks: $ (很难想的区间DP) $ solution: $ 很好的一道题目.看起来似乎很简单,当时一直认为可以用二维区间DP来完成,转移 $ n^3 $ . 后来发现 ...

  2. django 修改字段后,同步数据库,失败:django.db.utils.InternalError: (1054, "Unknown column 'api_config.project_id_id' in 'field list'")

    问题原因是,修改字段后,同步失败了,然后执行查询的时候,就会提示这个错误,这个字段没有 最暴力的方法可以直接在数据库中修改字段,但是修改后,models没同步,可能会存在问题,因此开始我的百度之旅(这 ...

  3. LSTM 神经网络输入输出层

    今天终于弄明白,TensorFlow和Keras中LSTM神经网络的输入输出层到底应该怎么设置和连接了.写个备忘. https://machinelearningmastery.com/how-to- ...

  4. Nginx-常用命令和配置文件

    Nginx常用命令 1.启动命令 在/usr/local/nginx/sbin 目录下执行 ./nginx 2.关闭命令 在/usr/local/nginx/sbin 目录下执行 ./nginx s ...

  5. handy源码阅读(三):SafeQueue类

    SafeQueue类继承与信号量mutex(用于加锁),nonocopyable 定义如下: template <typename T> struct SafeQueue : privat ...

  6. 最佳实践 | 数据库迁云解决方案选型 & 流程全解析

    Oracle是非常强大的综合数据库,但同时也存在一些劣势,比如由于采用集中式架构,无法很好地实现横向扩展,并且其稳定性依赖于硬件.出于架构升级.降低成本和云化等需求,越来越多的企业需要“去Oracle ...

  7. php range()函数 语法

    php range()函数 语法 作用:创建一个包含指定范围的元素的数组.dd马达哪家好 语法:range(low,high,step) 参数: 参数 描述 low  必需.规定数组的最低值. hig ...

  8. mysql错误日志及sql日志的区别

    my.ini # power by phpStudy 2014 www.phpStudy.net 官网下载最新版 [client] port=3306 [mysql] default-characte ...

  9. 生产环境下,oracle不同用户间的数据迁移。第一部分

    :任务名称:生产环境下schema ELON数据迁移至schema TIAN ######################################## 测试一:测试参数 数据泵数据导出:exp ...

  10. jenkins展示html测试报告(不使用html publisher)

     最终效果: 点击『测试报告』,查看测试报告: 一开始的思路是: jenkins上展示html报告[转载] jenkins使用HTML Publisher Plugin插件 拉取报告样式缺失问题解决 ...