欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  移动技术

Android自定义水平或垂直虚线效果

程序员文章站 2022-04-13 22:49:23
项目中有时候会用到虚线,怎么办?drawable下创建一个shape类型的xml文件绘制,然后引用到view的background下?如果用到虚线的地方很多呢?创建多个,分...

项目中有时候会用到虚线,怎么办?drawable下创建一个shape类型的xml文件绘制,然后引用到view的background下?如果用到虚线的地方很多呢?创建多个,分别引用?横向的还好说,竖向的呢?垂直的虚线,普通的创建是显示不出来的,如果需要,就要进行旋转等的操作。但是,还是那个问题,需要很多个怎么办?挨个创建?

完全没必要,写个自定义,对外暴露设置虚线属性的方法就行。源码如下:

最后的说明很重要!!!
最后的说明很重要!!!
最后的说明很重要!!!

效果图:

Android自定义水平或垂直虚线效果

源码:

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, attrs, 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,5,new float[]{10,2,5,5});


 }

}

说明:

1、这个自定义view,会自动判断是水平还是竖直。自己仅仅需要在布局文件中设置了宽高就行。
2、在自定义的源码中,仅仅是粗略的限定了虚线路径,准确的说,应该是宽的中点到高的中点,因为一般的虚线都是1px,或者1dp宽,少数会到2dp,这么窄的值,取不取中点无所谓。如果虚线很宽,就会有一点误差,如图:

Android自定义水平或垂直虚线效果

蓝色的是绘制出来的虚线,但是这个虚线10dp宽,即:虚线画笔比设置的宽度要小,就会这样。不过一般不会有种情况。如果遇到,根据实际情况修改即可

3、不建议为了省事而把终点设置为:mpath.lineto(width, height);
4、需要虚线的时候,布局到文件中,setlineattribute即可,不用每次都新建一个shape

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。