欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

android虚线边框

程序员文章站 2023-12-24 20:26:09
...

效果图:
android虚线边框
使用到的属性:
dashWidth 虚线宽度
dashGap 虚线点之间的间隙

    <!--虚线边框-->
    <stroke
        android:width="1dp"
        android:color="@android:color/black"
        android:dashWidth="1dp"
        android:dashGap="2dp" />

shape文件:

<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
    android:shape="rectangle">

    <!--填充色-->
    <solid android:color="@android:color/white" />

    <!--圆角-->
    <!--    <corners android:radius="12dp" />-->

    <!--虚线边框-->
    <stroke
        android:width="1dp"
        android:color="@android:color/black"
        android:dashWidth="1dp"
        android:dashGap="2dp" />
</shape>

上一篇:

下一篇: