美文网首页Android
Android 圆角shape

Android 圆角shape

作者: 青楼爱小生 | 来源:发表于2020-03-03 18:01 被阅读0次
    <shape xmlns:android="http://schemas.android.com/apk/res/android"
        android:shape="rectangle">
        <!-- 填充的颜色 -->
        <solid android:color="@color/bottom_controller_color" />
    
        <!-- 边框的颜色和粗细 -->
        <stroke
            android:width="1dp"
            android:color="@color/bottom_controller_color"
            />
    
        <corners
            android:bottomLeftRadius="0dp"
            android:bottomRightRadius="0dp"
            android:radius="20dp"
            android:topLeftRadius="0dp"
            android:topRightRadius="18dp"
            />
    
    </shape>
    

    相关文章

      网友评论

        本文标题:Android 圆角shape

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