码迷,mamicode.com
首页 > 移动开发 > 详细

android-shape 设置虚线

时间:2015-01-20 00:46:49      阅读:281      评论:0      收藏:0      [点我收藏+]

标签:

<?xml version="1.0" encoding="utf-8"?>
    <shape xmlns:android="http://schemas.android.com/apk/res/android"
        android:shape="line" > 
<!--虚线相关参数-->
<stroke android:dashGap="3dp" android:dashWidth="6dp" android:width="0.5dp" android:color="#19000000" />
<!--这个必须设置,而且值要比上面的大-->
<size android:height="20dp" /> </shape>

参数意义:

android:dashGap="3dp":表示的是虚线的长度
android:dashWidth="6dp":表示的是实线的长度
 android:width="0.5dp":线的宽度
android:color="#19000000":颜色
android:height="20dp":意义不明,但是,如果设定值小于<stroke>中的width的话,虚线不显示

注意:在4.0,你会发现虚线显示的是直线,方法就是在引用这个直线的view,添加属性,如下
 <View
        style="@style/separator_style"
<!--显示虚线的必须属性-->
android:layerType
="software" android:background="@drawable/divider_horizontal_dot_line" android:layout_width="0dip" android:layout_weight="1" />

 

 

android-shape 设置虚线

标签:

原文地址:http://www.cnblogs.com/zhangshuli-1989/p/zhangshuli_zj_15011923.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!