美文网首页
shape画虚线

shape画虚线

作者: 君莫醉 | 来源:发表于2019-01-30 14:41 被阅读12次

    横着的虚线

        <View
            android:layout_width="match_parent"
            android:layout_height="@dimen/base2dp"
            android:layout_marginLeft="@dimen/base10dp"
            android:layout_marginRight="@dimen/base10dp"
            android:layout_marginTop="@dimen/base5dp"
            android:background="@drawable/bg_shape_xx"
            android:layout_below="@+id/sv_tv_zan"
            android:gravity="center"
            android:layerType="software" />
    
    
    <shape xmlns:android="http://schemas.android.com/apk/res/android"
        android:shape="line">
        <stroke
            android:width="1dp"
            android:color="@color/sv_color_line1"
            android:dashWidth="2dp"
            android:dashGap="3dp" />
    </shape>
    

    竖着的虚线

    <?xml version="1.0" encoding="utf-8"?>
    <layer-list xmlns:android="http://schemas.android.com/apk/res/android">
        <item
            android:left="-300dp"
            android:right="-300dp">
            <rotate
                android:fromDegrees="90"
                android:visible="true">
                <shape android:shape="line">
                    <stroke
                        android:width="1dp"
                        android:color="@color/color_line1"
                        android:dashGap="2dp"
                        android:dashWidth="6dp"/>
                </shape>
            </rotate>
        </item>
    </layer-list>
    
    

    相关文章

      网友评论

          本文标题:shape画虚线

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