1.在res/values/目录下 新建文件 attrs.xml

<?
 xml
 
version
=
 "1.0"
 
encoding

"utf-8"
 ?>
<
 resources
>
 
    
<
declare-styleable 
name 
=
 "dashedline"
>
        
<
attr 
name 
=
 "lineColor"
 
format
=
 "color"
 
/>
    
</
declare-styleable 
>
 
</
 resources
>

 
2.创建自定义View,DashedLine.java

public
 
class 
DashedLine 
extends
 View {
           
private
 Paint 
paint
 = 
null
;
           
private
 Path 
path
 = 
null
;
           
private
 PathEffect 
pe
 = 
null
;
 
           
public
 DashedLine(Context paramContext) {
                    
this
(paramContext, 
null
);
          }
 
           
public
 DashedLine(Context paramContext, AttributeSet paramAttributeSet) {
                    
super
(paramContext, paramAttributeSet);
    
               
  //通过R.styleable.dashedline获得我们在attrs.xml中定义的
//<declare-
styleable 
name="
dashedline
"> 
TypedArray

                   TypedArray a = paramContext.obtainStyledAttributes(paramAttributeSet, R.styleable.
 dashedline
);
                    
//我们在attrs.xml中<declare-
styleable 
name="
dashedline
">节点下
//添加了<attr name="lineColor" format="color" />

                    
//表示这个属性名为lineColor类型为color。当用户在布局文件中对它有设定值时
                    
//可通过TypedArray获得它的值当用户无设置值是采用默认值0XFF00000

                    
int
 lineColor = a.getColor(R.styleable. 
dashedline_lineColor
, 0XFF000000);
                   a.recycle();
                    
this

paint
 = 
new
 Paint();
                    
this

path
 = 
new
 Path();
                    
this

paint
.setStyle(Paint.Style. 
STROKE
);
                    
this

paint
.setColor(lineColor);
                    
this

paint
.setAntiAlias( 
true
);
                    
this

paint
.setStrokeWidth(BitmapHelper. 
dip2px
(getContext(), 2.0F));
                    
float
[] arrayOfFloat = 
new
 
float
[4];
                   arrayOfFloat[0] = BitmapHelper. 
dip2px
(getContext(), 2.0F);
                   arrayOfFloat[1] = BitmapHelper. 
dip2px
(getContext(), 2.0F);
                   arrayOfFloat[2] = BitmapHelper. 
dip2px
(getContext(), 2.0F);
                   arrayOfFloat[3] = BitmapHelper. 
dip2px
(getContext(), 2.0F);
                    
this

pe
 = 
new
 DashPathEffect(arrayOfFloat, BitmapHelper.
dip2px
(getContext(), 1.0F));
          }
 
           
@Override
           
protected
 
void
 onDraw(Canvas canvas) {
                    
super
.onDraw(canvas);
                    
this

path
.moveTo(0.0F, 0.0F);
                    
this

path
.lineTo(getMeasuredWidth(), 0.0F);
                    
this

paint
.setPathEffect( 
this

pe
);
                   canvas.drawPath( 
this

path

this

paint
);
          }
 
}
3.新建布局文件dashedline.xml

<?
 xml
 
version
=
 "1.0"
 
encoding

"utf-8"
 ?>

<
 LinearLayout
 
xmlns:android

"http://schemas.android.com/apk/res/android"
    
xmlns:dash
=
 "http://schemas.android.com/apk/res/com.example.martixtest"
    
android:layout_width
=
 "fill_parent"
    
android:layout_height
=
 "fill_parent"
    
android:background
=
 "#eee"
    
android:orientation
=
 "vertical"
 
>
 
    
<
com.example.martixtest.myview.DashedLine
        
android:layout_width

"fill_parent"
        
android:layout_height

"1dip"
        
android:layout_margin

"10dip"
        
dash:lineColor

"#ff50f8"
 
/>
 
    
<
com.example.martixtest.myview.DashedLine
        
android:layout_width

"fill_parent"
        
android:layout_height

"1dip"
        
android:layout_margin

"10dip"
/>
 
    
<
com.example.martixtest.myview.DashedLine
        
android:layout_width

"fill_parent"
        
android:layout_height

"1dip"
        
android:layout_margin

"10dip"
        
dash:lineColor

"#f34f71"
 
/>
 
</
 LinearLayout
>
4.最终运行效果如下:






android自定义View---生成虚线的View的更多相关文章

  1. android自定义View_0——Create a custom view class

    一:创建一个自定义view的原则: 1.符合android的标准 2.能在layout的xml中定义控件属性 3.实现些新功能 4.要兼容android的大多数版本 二:定义一个view的子类 1.可 ...

  2. Android 自定义录音、播放动画View,让你的录音浪起来

    最近公司项目有一个录音的录制和播放动画需求,然后时间是那么紧,那么赶紧开撸. 先看效果图 嗯,然后大致就是这样,按住录音,然后有一个倒计时,最外层一个进度条,还有一个类似模拟声波的动画效果(其实中间的 ...

  3. Android 自定义 View 圆形进度条总结

    Android 自定义圆形进度条总结 版权声明:本文为博主原创文章,未经博主允许不得转载. 微博:厉圣杰 微信公众号:牙锅子 源码:CircleProgress 文中如有纰漏,欢迎大家留言指出. 最近 ...

  4. Android 自定义View合集

    自定义控件学习 https://github.com/GcsSloop/AndroidNote/tree/master/CustomView 小良自定义控件合集 https://github.com/ ...

  5. [原] Android 自定义View步骤

    例子如下:Android 自定义View 密码框 例子 1 良好的自定义View 易用,标准,开放. 一个设计良好的自定义view和其他设计良好的类很像.封装了某个具有易用性接口的功能组合,这些功能能 ...

  6. Android自定义View

    转载请标明出处:http://blog.csdn.net/lmj623565791/article/details/24252901 很多的Android入门程序猿来说对于Android自定义View ...

  7. Android 自定义View (一)

    转载请标明出处:http://blog.csdn.net/lmj623565791/article/details/24252901 很多的Android入门程序猿来说对于Android自定义View ...

  8. Android 自定义View之BounceProgressBar

    之前几天下载了很久没用了的桌面版酷狗来用用的时候,发现其中加载歌曲的等待进度条的效果不错(个人感觉),如下: 然后趁着这周末两天天气较冷,窝在宿舍放下成堆的操作系统作业(目测要抄一节多课的一堆堆文字了 ...

  9. Android自定义View和控件之一-定制属于自己的UI

    照例,拿来主义.我的学习是基于下面的三篇blog.前两是基本的流程,第三篇里有比较细致的绘制相关的属性.第4篇介绍了如何减少布局层次来提高效率. 1. 教你搞定Android自定义View 2. 教你 ...

随机推荐

  1. GhostDoc的使用

    原文:GhostDoc的使用 一.简介 GhostDoc是Visual Studio的一个免费插件,可以为开发人员自动生成XML格式的注释文档. 二.下载 需要的朋友可以去这里下载,填个Email地址 ...

  2. Android性能优化:谈话Bitmap内存管理和优化

    最近除了那些忙着项目开发的事情,目前正在准备我的论文.短的时间没有写博客,今晚难得想总结.只要有一点时间.因此,为了凑合用,行.唠叨罗嗦,直接进入正题. 从事Android自移动终端的发展,想必是常常 ...

  3. Visual Studio 2013进行单元测试

    使用Visual Studio 2013进行单元测试--初级篇   1.打开VS2013 --> 新建一个项目.这里我们默认创建一个控制台项目.取名为UnitTestDemo 2.在解决方案里面 ...

  4. JSON解析之Gson

    1.Gson简介 Gson是一个将Java对象转为JSON表示的开源类库,由Google提供,并且也可以讲JSON字符串转为对应的Java对象.虽然有一些其他的开源项目也支持将Java对象转为JSON ...

  5. Sql Server中如何快速修正SQL 语句错误

    本文将和大家讨论一些关于找SQL 错误的问题. 现在的系统基本都是需要用到数据库的,既然用到数据库我们就要写SQL 脚本,常用的做法是现在Microsoft Sql Server Management ...

  6. 【转】Android Application 对象介绍

    What is Application Application和Activity,Service一样是android框架的一个系统组件,当android程序启动时系统会创建一个 application ...

  7. Oracle中join left,join right,inner join,(+) 等

    Oracle中join left,join right,inner join,(+) 等 博客分类: Oracle   建表create table TEST1create table TEST1(  ...

  8. 动画操作 (Applying Animations) ngAnimate12

    动画操作 (Applying Animations) ngAnimate step 12 1.切换目录 git checkout step-12 npm start 2.效果图 这里在点击右边的缩略图 ...

  9. CentOS7安装Hadoop2.7流程

     准备3个虚拟机节点 其实这一步骤非常简单,如果你已经完成了第2步,此时你已经准备好了第一个虚拟节点,那第二个和第三个虚拟机节点如何准备?可能你已经想明白了,你可以按第2步的方法,再分别安装两遍lin ...

  10. YARN

    YARN 介绍 Apache Hadoop YARN作为hadoop的子项目加入到Hadoop Common (core libraries), Hadoop HDFS (storage) and H ...