bg_input.xml 630 B

12345678910111213141516
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <shape xmlns:android="http://schemas.android.com/apk/res/android">
  3. <!--设置圆角-->
  4. <!-- 按顺序分别对应:左下角的角度、右下角的角度、左上角的角度、右上角的角度-->
  5. <corners
  6. android:bottomLeftRadius="@dimen/dp_1"
  7. android:bottomRightRadius="@dimen/dp_1"
  8. android:topLeftRadius="@dimen/dp_1"
  9. android:topRightRadius="@dimen/dp_1" />
  10. <!-- 设置边框大小与背景色-->
  11. <stroke
  12. android:width="2dp"
  13. android:color="@color/ColorGray" />
  14. <solid android:color="@color/white" />
  15. </shape>