scan_corner.xml 652 B

1234567891011121314151617181920212223242526
  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="#00FFFFFF" />
  7. </shape>
  8. </item>
  9. <!-- 上边线 -->
  10. <item android:bottom="36dp">
  11. <shape>
  12. <stroke
  13. android:width="4dp"
  14. android:color="#00E5FF" />
  15. </shape>
  16. </item>
  17. <!-- 左边线 -->
  18. <item android:right="36dp">
  19. <shape>
  20. <stroke
  21. android:width="4dp"
  22. android:color="#00E5FF" />
  23. </shape>
  24. </item>
  25. </layer-list>