shapre_default_edit_bg.xml 678 B

12345678910111213141516171819202122
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <shape xmlns:android="http://schemas.android.com/apk/res/android">
  3. <!-- 设置边框宽度 -->
  4. <stroke android:width="1dp" android:color="#F0F0F0"/>
  5. <!-- 四个角的弧度 -->
  6. <corners
  7. android:bottomLeftRadius="50dp"
  8. android:bottomRightRadius="50dp"
  9. android:topLeftRadius="50dp"
  10. android:topRightRadius="50dp" />
  11. <!-- padding:TextView里面的文字与TextView边界的间隔 -->
  12. <padding
  13. android:bottom="5dp"
  14. android:left="10dp"
  15. android:right="10dp"
  16. android:top="5dp" />
  17. <!-- <size android:width="100dp" android:height="45dp"/> -->
  18. </shape>