cyeditlogin.xml 459 B

123456789101112131415161718
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <shape
  3. xmlns:android="http://schemas.android.com/apk/res/android">
  4. <!-- 内部颜色 -->
  5. <solid
  6. android:color="#ffffff" />
  7. <!-- 边缘线条颜色 -->
  8. <stroke
  9. android:width="1dp"
  10. android:color="#d5dad3" />
  11. <!-- 圆角的幅度 -->
  12. <corners
  13. android:topLeftRadius="0dip"
  14. android:topRightRadius="0dip"
  15. android:bottomLeftRadius="0dip"
  16. android:bottomRightRadius="0dip" />
  17. </shape>