help_cell_foot_background.xml 910 B

12345678910111213141516171819202122232425
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <selector xmlns:android="http://schemas.android.com/apk/res/android" >
  3. <item android:state_pressed="true">
  4. <shape android:shape="rectangle">
  5. <gradient
  6. android:startColor="#40ff7E00"
  7. android:endColor="#40ff7E00"
  8. android:angle="270" />
  9. <corners
  10. android:bottomLeftRadius="10dp"
  11. android:bottomRightRadius="10dp" />
  12. </shape>
  13. </item>
  14. <item android:state_pressed="false">
  15. <shape android:shape="rectangle">
  16. <gradient
  17. android:startColor="#80000000"
  18. android:endColor="#80000000"
  19. android:angle="270" />
  20. <corners
  21. android:bottomLeftRadius="10dp"
  22. android:bottomRightRadius="10dp" />
  23. </shape>
  24. </item>
  25. </selector>