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. 利用svn自动同步更新到网站服务器 -- 网摘

    首先在服务器上安装VisualSVN Server ,根据提示选好安装的路径,一路确定.安装好后运行VisualSVN Server ,在Repositories上点击右键,选择create New ...

  2. 通过扩展改善ASP.NET MVC的验证机制[实现篇]

    原文:通过扩展改善ASP.NET MVC的验证机制[实现篇] 在<使用篇>中我们谈到扩展的验证编程方式,并且演示了本解决方案的三大特性:消息提供机制的分离.多语言的支持和多验证规则的支持, ...

  3. Java清理临时目录文件Demo(一)

    /** * 删除单个文件 * * @param sPath * 被删除文件的文件名 * @return 单个文件删除成功返回true,否则返回false */ public static boolea ...

  4. css mainDiv和popbox居中

    <style>     .beCenter {         width:460px;         height:212px;         background:#ccc;    ...

  5. bootstrap-paginator 分页插件笔记

    [MVC]bootstrap-paginator 分页插件笔记   bootstrap-paginator基于bootstrap框架,使用起来非常简单.官网:http://harttle.github ...

  6. 【转】 教你如何创建类似QQ的android弹出菜单

    原文地址:http://www.apkbus.com/android-18034-1-1.html 大家可能看到android的自带的系统菜单比较难看,如图: 2011-12-4 23:13 上传 下 ...

  7. 第三方控件netadvantage UltraWebGrid如何生成多级跨行表头个人总结

    1.生成多级表头,横向和纵向跨度. 1>对于有字段的的表头合并:也就是(工期.项目经理信息除外)可以在前台通过spanx和spany属性控制.对于空字段(工资.项目经理必须通过后台动态添加),而 ...

  8. 附加被分离DB

    如何附加被分离的质疑数据库?   简介 有些时间,由于日志损坏等原因,导致了数据库质疑.如果此时你分离了数据库,那你会发现你无法再附加上数据库,那后果还是很严重的.因此本文提供了一种方式,可以使得当数 ...

  9. Hadoop 使用FileSystem API 读取数据

    代码: package com.hadoop; import java.io.IOException; import java.io.InputStream; import java.net.URI; ...

  10. (转)poj1182食物链

    这题主要是看了http://blog.csdn.net/c0de4fun/article/details/7318642这篇解题报告,所以内容基本是转的!感谢大牛这么详细的把过程写的很清楚! 这道题目 ...