button_ren_wu_rign.xml 850 B

123456789101112131415161718192021
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <selector xmlns:android="http://schemas.android.com/apk/res/android">
  3. <!-- Selected state -->
  4. <item android:state_checked="true">
  5. <shape android:shape="rectangle">
  6. <solid android:color="#ff0183fa" />
  7. <corners
  8. android:bottomLeftRadius="0dp"
  9. android:bottomRightRadius="40dp"
  10. android:topLeftRadius="0dp"
  11. android:topRightRadius="40dp" />
  12. </shape>
  13. </item>
  14. <!-- Default state -->
  15. <item android:state_checked="false">
  16. <shape android:shape="rectangle">
  17. <solid android:color="#ffffffff" />
  18. <corners android:bottomLeftRadius="0dp" android:bottomRightRadius="40dp" android:topLeftRadius="0dp" android:topRightRadius="40dp" />
  19. </shape>
  20. </item>
  21. </selector>