Android 自定义垂直虚线控件

2024-02-25 13:58

本文主要是介绍Android 自定义垂直虚线控件,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

开发中遇到垂直虚线作为分割线,本以为使用shape可以解决,没想到shape实现的只有水平方面的虚线没有垂直方向,无奈只能自己写一个控件。

为了以后使用方便,将设置控件的样式提到外部实现。需要的同学也可以拿去使用

1.在attrs.xml文件中添加使用方法

<declare-styleable name="LineDashView"><!--虚线颜色--><attr name="color" format="color"/><!--虚线宽度--><attr name="dashWidth" format="dimension"/><!--虚线间隔--><attr name="dashGap" format="dimension"/><!--虚线方向 垂直还是水平--><attr name="line_orientation" format="integer"><!--水平虚线--><enum name="horizontal" value="0" /><!--垂直虚线--><enum name="vertical" value="1" /></attr></declare-styleable>

2.虚线view现实类

import android.content.Context;
import android.content.res.ColorStateList;
import android.content.res.TypedArray;
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;import com.zh.app.R;/*** Created by zhanghe on 2019/8/3.* 水平或者垂直虚线*/public class LineDashView extends View {private Paint mPaint;private int height;private int width;private Path mPath;private float orientation;public LineDashView(Context context) {this(context,null);}public LineDashView(Context context, @Nullable AttributeSet attrs) {this(context, attrs,0);}public LineDashView(Context context, @Nullable AttributeSet attrs, int defStyleAttr) {super(context, attrs, defStyleAttr);final TypedArray a = context.obtainStyledAttributes(attrs, R.styleable.LineDashView, defStyleAttr,0);float dashGap = a.getDimension(R.styleable.LineDashView_dashGap, 0);float dashWidth = a.getDimension(R.styleable.LineDashView_dashWidth, 0);orientation = a.getInt(R.styleable.LineDashView_line_orientation, 0);ColorStateList colorStateList = a.getColorStateList(R.styleable.LineDashView_color);a.recycle();colorStateList = colorStateList != null ? colorStateList : ColorStateList.valueOf(0xFF000000);int lineColor = colorStateList.getColorForState(getDrawableState(), 0);mPaint = new Paint(Paint.ANTI_ALIAS_FLAG);mPaint.setColor(lineColor);mPaint.setStyle(Paint.Style.STROKE);DashPathEffect e = null;if (dashWidth > 0) {e = new DashPathEffect(new float[] { dashWidth, dashGap }, 0);}mPaint.setPathEffect(e);mPath = new Path();}@Overrideprotected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {super.onMeasure(widthMeasureSpec, heightMeasureSpec);width = MeasureSpec.getSize(widthMeasureSpec);height = MeasureSpec.getSize(heightMeasureSpec);mPaint.setStrokeWidth(width);}@Overrideprotected void onDraw(Canvas canvas) {super.onDraw(canvas);if (orientation == 0){//水平mPath.moveTo(0,0);mPath.lineTo(width,0);}else if (orientation == 1){//垂直mPath.moveTo(0,0);mPath.lineTo(0,height);}canvas.drawPath(mPath,mPaint);}
}

3.xml布局文件使用方式

<com.zh.app.widget.LineDashViewandroid:layout_width="1dp"android:layout_height="match_parent"app:color="@color/white"app:line_orientation="vertical"app:dashGap="2dp"app:dashWidth="4dp"/>

这篇关于Android 自定义垂直虚线控件的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/745693

相关文章

C#实现WinForm控件焦点的获取与失去

《C#实现WinForm控件焦点的获取与失去》在一个数据输入表单中,当用户从一个文本框切换到另一个文本框时,需要准确地判断焦点的转移,以便进行数据验证、提示信息显示等操作,本文将探讨Winform控件... 目录前言获取焦点改变TabIndex属性值调用Focus方法失去焦点总结最后前言在一个数据输入表单

Android数据库Room的实际使用过程总结

《Android数据库Room的实际使用过程总结》这篇文章主要给大家介绍了关于Android数据库Room的实际使用过程,详细介绍了如何创建实体类、数据访问对象(DAO)和数据库抽象类,需要的朋友可以... 目录前言一、Room的基本使用1.项目配置2.创建实体类(Entity)3.创建数据访问对象(DAO

SpringBoot 自定义消息转换器使用详解

《SpringBoot自定义消息转换器使用详解》本文详细介绍了SpringBoot消息转换器的知识,并通过案例操作演示了如何进行自定义消息转换器的定制开发和使用,感兴趣的朋友一起看看吧... 目录一、前言二、SpringBoot 内容协商介绍2.1 什么是内容协商2.2 内容协商机制深入理解2.2.1 内容

Android WebView的加载超时处理方案

《AndroidWebView的加载超时处理方案》在Android开发中,WebView是一个常用的组件,用于在应用中嵌入网页,然而,当网络状况不佳或页面加载过慢时,用户可能会遇到加载超时的问题,本... 目录引言一、WebView加载超时的原因二、加载超时处理方案1. 使用Handler和Timer进行超

【前端学习】AntV G6-08 深入图形与图形分组、自定义节点、节点动画(下)

【课程链接】 AntV G6:深入图形与图形分组、自定义节点、节点动画(下)_哔哩哔哩_bilibili 本章十吾老师讲解了一个复杂的自定义节点中,应该怎样去计算和绘制图形,如何给一个图形制作不间断的动画,以及在鼠标事件之后产生动画。(有点难,需要好好理解) <!DOCTYPE html><html><head><meta charset="UTF-8"><title>06

Android实现任意版本设置默认的锁屏壁纸和桌面壁纸(两张壁纸可不一致)

客户有些需求需要设置默认壁纸和锁屏壁纸  在默认情况下 这两个壁纸是相同的  如果需要默认的锁屏壁纸和桌面壁纸不一样 需要额外修改 Android13实现 替换默认桌面壁纸: 将图片文件替换frameworks/base/core/res/res/drawable-nodpi/default_wallpaper.*  (注意不能是bmp格式) 替换默认锁屏壁纸: 将图片资源放入vendo

Android平台播放RTSP流的几种方案探究(VLC VS ExoPlayer VS SmartPlayer)

技术背景 好多开发者需要遴选Android平台RTSP直播播放器的时候,不知道如何选的好,本文针对常用的方案,做个大概的说明: 1. 使用VLC for Android VLC Media Player(VLC多媒体播放器),最初命名为VideoLAN客户端,是VideoLAN品牌产品,是VideoLAN计划的多媒体播放器。它支持众多音频与视频解码器及文件格式,并支持DVD影音光盘,VCD影

自定义类型:结构体(续)

目录 一. 结构体的内存对齐 1.1 为什么存在内存对齐? 1.2 修改默认对齐数 二. 结构体传参 三. 结构体实现位段 一. 结构体的内存对齐 在前面的文章里我们已经讲过一部分的内存对齐的知识,并举出了两个例子,我们再举出两个例子继续说明: struct S3{double a;int b;char c;};int mian(){printf("%zd\n",s

android-opencv-jni

//------------------start opencv--------------------@Override public void onResume(){ super.onResume(); //通过OpenCV引擎服务加载并初始化OpenCV类库,所谓OpenCV引擎服务即是 //OpenCV_2.4.3.2_Manager_2.4_*.apk程序包,存

从状态管理到性能优化:全面解析 Android Compose

文章目录 引言一、Android Compose基本概念1.1 什么是Android Compose?1.2 Compose的优势1.3 如何在项目中使用Compose 二、Compose中的状态管理2.1 状态管理的重要性2.2 Compose中的状态和数据流2.3 使用State和MutableState处理状态2.4 通过ViewModel进行状态管理 三、Compose中的列表和滚动