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

    <!-- 圆角 -->
    <corners
        android:bottomLeftRadius="@dimen/nut_button_radius"
        android:bottomRightRadius="@dimen/nut_button_radius" />

    <!-- 填充 -->
    <solid android:color="#ffffff" />

    <!-- 描边 -->
    <stroke
        android:width="0dp"
        android:color="@color/nut_color_gray_light"
        android:dashWidth="1dp"
        android:dashGap="2dp" />

</shape>