hearshapexml.xml 866 B

123456789101112131415161718192021222324
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <layer-list xmlns:android="http://schemas.android.com/apk/res/android">
  3. <!-- 边框颜色值 -->
  4. <item>
  5. <shape>
  6. <solid android:color="#0E0D0D" /> <!--边框的颜色-->
  7. <!-- 边框底部两个角都是有弧度的 -->
  8. <corners
  9. android:bottomRightRadius="0dp"
  10. android:topRightRadius="0dp" /> <!--里面的角度 如果是矩形 不用管 默认即可-->
  11. </shape>
  12. </item>
  13. <item android:left="1dp"> <!--设置除了左边都有边框-->
  14. <shape>
  15. <corners
  16. android:bottomRightRadius="0dp"
  17. android:topRightRadius="0dp" /> <!--外面的角度 矩形也不用管-->
  18. <solid android:color="#ffffff" /> <!--里面的颜色-->
  19. </shape>
  20. </item>
  21. </layer-list>