code_bg.xml
525 Bytes
<?xml version="1.0" encoding="UTF-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle" >
<solid android:color="@color/input_bg"/>
<corners android:radius="30dip"/>
<!--显示一条虚线,破折线的宽度为dashWith,破折线之间的空隙的宽度为dashGap,当dashGap=0dp时,为实线 -->
<stroke
android:dashGap="0dp"
android:dashWidth="2dp"
android:width="1.5dp"
android:color="@color/login_text_blue" />
</shape>