android:width="2px" android:...">
美文网首页
Android--shape虚线

Android--shape虚线

作者: 小相柳 | 来源:发表于2016-12-09 10:02 被阅读41次

虚线的写法:

android:shape="line">

android:width="2px"

android:color="@color/mp.text.title"

android:dashWidth="10px"

android:dashGap="10px"/>

用法及注意事项:

android:layout_width="match_parent"

android:layout_height="wrap_content"

android:layout_marginBottom="@dimen/mp.margin.normal"

android:layout_marginTop="@dimen/mp.margin.normal"

android:background="@drawable/shape_dot_line"

android:layerType="software"/>

注意一定要设置layerType,否则是一条直线

相关文章

  • Android--shape虚线

    虚线的写法: android:shape="line"> android:width="2px" android:...

  • html5画虚线

    竖直虚线 显示效果: 水平虚线

  • shape画虚线

    横着的虚线 竖着的虚线

  • iOS竖直虚线画法

    项目中有画水平虚线和竖直虚线的需求,便在网上参考了别人的水平虚线画法,子类化了竖直虚线的DashLineView ...

  • Android实现水平虚线和竖直虚线

    水平虚线 竖直虚线 思路一: 先写横虚线,然后再通过旋转获得竖直虚线 这个地方为啥需要设置left和right是-...

  • React Native加虚线

    介绍两种加虚线的方法 1.组件方法: 使用: backgroundColor-->虚线颜色,width-->虚线宽...

  • 作业秀(92)一米字格

    米字格,即方格内印有“米”字形虚线的格。 由横中虚线、竖中虚线、和两条对角斜虚线组成。 米字格多在临摹书法时使用,...

  • 使用css3的repeating-linear-gradient

    还在用 border-style: dashed 画虚线吗?虽然也是虚线,但是不能控制每一个虚线的宽度

  • iOS 绘制虚线

    /** ** lineView: 需要绘制成虚线的view ** lineLength: 虚线的宽度 ** ...

  • Swift 绘制虚线

    lineLength:虚线长度lineSpacing:虚线间的间距 使用示例:

网友评论

      本文标题:Android--shape虚线

      本文链接:https://www.haomeiwen.com/subject/xbjemttx.html