项目中有时候会用到虚线,怎么办?drawable下创建一个shape类型的xml文件绘制,然后引用到vIEw的background下?如果用到虚线的地方很多呢?创建多个,分别引用?横向的还好说,竖向的呢?垂直的虚线,普通的创建是显示不出来的,如果需要,就要进行旋转等的 *** 作。但是,还是那个问题,需要很多个怎么办?挨个创建?
完全没必要,写个自定义,对外暴露设置虚线属性的方法就行。源码如下:
最后的说明很重要!!!
最后的说明很重要!!!
最后的说明很重要!!!
效果图:
源码:
ImaginarylineVIEw
package com.chen.demo;import androID.content.Context;import androID.graphics.Canvas;import androID.graphics.DashPathEffect;import androID.graphics.Paint;import androID.graphics.Path;import androID.graphics.PathEffect;import androID.support.annotation.Nullable;import androID.util.AttributeSet;import androID.vIEw.VIEw;/** * 自定义垂直虚线vIEw * chenjianqiang * 2017/6/14 * <p> * 使用方法: * 在代码中findvIEw之后,调用setlineAttribute方法,自定义虚线颜色及宽度 */public class ImaginarylineVIEw extends VIEw { private Context ct; private Paint mPaint; private Path mPath; private PathEffect effects; private int wIDth; private int height; private int defaultcolor=0xffff0000; public ImaginarylineVIEw(Context context) { this(context,null); } public ImaginarylineVIEw(Context context,@Nullable AttributeSet attrs) { this(context,attrs,-1); } public ImaginarylineVIEw(Context context,@Nullable AttributeSet attrs,int defStyleAttr) { super(context,defStyleAttr); ct = context; init(); } @OverrIDe protected voID onSizeChanged(int w,int h,int olDW,int oldh) { super.onSizeChanged(w,h,olDW,oldh); wIDth = w; height = h; } private voID init() { //初始化,并打开抗锯齿 mPaint = new Paint(Paint.ANTI_AliAS_FLAG); mPaint.setStyle(Paint.Style.stroke); mPaint.setcolor(defaultcolor); mPaint.setstrokeWIDth(dip2px(ct,1)); mPath = new Path(); //数组含义:里面最少要有2个值,值的个数必须是偶数个。偶数位(包含0),表示实线长度,奇数位表示断开的长度 effects = new DashPathEffect(new float[]{4,2},0); } /** * 设置线的必要属性 * * @param color 十六进制颜色值 * @param linewidth 虚线宽度,单位是dp */ public voID setlineAttribute(int color,float linewidth,float[] f) { if (color == 0) { color = defaultcolor; } if (linewidth == 0) { linewidth = 1; } if(f==null){ f=new float[]{4,2}; } effects = new DashPathEffect(f,0); mPaint.setstrokeWIDth(dip2px(ct,linewidth)); mPaint.setcolor(color); invalIDate(); } @OverrIDe protected voID onDraw(Canvas canvas) { super.onDraw(canvas); //定义起点 mPath.moveto(0,0); //定义终点 if(wIDth>height){ //宽度比高度大,是横线 mPath.lineto(wIDth,0); }else{ //竖线。(根据实际情况,这里不考虑宽高相等情况) mPath.lineto(0,height); } mPaint.setPathEffect(effects); canvas.drawPath(mPath,mPaint); } private static int dip2px(Context context,float dpValue) { final float scale = context.getResources().getdisplayMetrics().density; return (int) (dpValue * scale + 0.5f); }}
activity_main
<?xml version="1.0" enCoding="utf-8"?><linearLayout xmlns:androID="http://schemas.androID.com/apk/res/androID" androID:layout_wIDth="match_parent" androID:layout_height="match_parent" androID:orIEntation="vertical"> <TextVIEw androID:text="默认横线" androID:layout_marginStart="20dp" androID:layout_margintop="20dp" androID:layout_wIDth="wrap_content" androID:layout_height="wrap_content"/> <com.chen.demo.ImaginarylineVIEw androID:background="#5500ff00" androID:layout_marginStart="20dp" androID:layout_margintop="20dp" androID:layout_wIDth="100dp" androID:layout_height="1dp"/> <TextVIEw androID:text="自定义属性横线" androID:layout_marginStart="20dp" androID:layout_margintop="20dp" androID:layout_wIDth="wrap_content" androID:layout_height="wrap_content"/> <com.chen.demo.ImaginarylineVIEw androID:ID="@+ID/horizontal_line" androID:layout_marginStart="20dp" androID:layout_margintop="20dp" androID:layout_wIDth="100dp" androID:layout_height="1dp"/> <TextVIEw androID:text="默认横线" androID:layout_marginStart="20dp" androID:layout_margintop="20dp" androID:layout_wIDth="wrap_content" androID:layout_height="wrap_content"/> <com.chen.demo.ImaginarylineVIEw androID:layout_marginStart="20dp" androID:layout_margintop="20dp" androID:layout_wIDth="2dp" androID:layout_height="100dp"/> <TextVIEw androID:text="自定义属性竖线" androID:layout_marginStart="20dp" androID:layout_margintop="20dp" androID:layout_wIDth="wrap_content" androID:layout_height="wrap_content"/> <com.chen.demo.ImaginarylineVIEw androID:ID="@+ID/vertical_line" androID:layout_marginStart="20dp" androID:layout_margintop="20dp" androID:layout_wIDth="2dp" androID:layout_height="100dp"/></linearLayout>
MainActivity
package com.chen.demo;import androID.app.Activity;import androID.os.Bundle;import androID.vIEw.Window;public class MainActivity extends Activity { private ImaginarylineVIEw horizontal_line; private ImaginarylineVIEw vertical_line; @OverrIDe protected voID onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); requestwindowFeature(Window.FEATURE_NO_Title); setContentVIEw(R.layout.activity_main); horizontal_line= (ImaginarylineVIEw) findVIEwByID(R.ID.horizontal_line); horizontal_line.setlineAttribute(0xff00ff00,5,null); vertical_line= (ImaginarylineVIEw) findVIEwByID(R.ID.vertical_line); vertical_line.setlineAttribute(0xff0000ff,new float[]{10,2,5}); }}
说明:
1、这个自定义view,会自动判断是水平还是竖直。自己仅仅需要在布局文件中设置了宽高就行。
2、在自定义的源码中,仅仅是粗略的限定了虚线路径,准确的说,应该是宽的中点到高的中点,因为一般的虚线都是1px,或者1dp宽,少数会到2dp,这么窄的值,取不取中点无所谓。如果虚线很宽,就会有一点误差,如图:
蓝色的是绘制出来的虚线,但是这个虚线10dp宽,即:虚线画笔比设置的宽度要小,就会这样。不过一般不会有种情况。如果遇到,根据实际情况修改即可
3、不建议为了省事而把终点设置为:mPath.lineto(wIDth,height);
4、需要虚线的时候,布局到文件中,setlineAttribute即可,不用每次都新建一个shape
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持编程小技巧。
以上是内存溢出为你收集整理的Android自定义水平或垂直虚线效果全部内容,希望文章能够帮你解决Android自定义水平或垂直虚线效果所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)