help_cell_body_background.xml 646 B

12345678910111213141516171819
  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. </shape>
  10. </item>
  11. <item android:state_pressed="false">
  12. <shape android:shape="rectangle">
  13. <gradient
  14. android:startColor="#80000000"
  15. android:endColor="#80000000"
  16. android:angle="270" />
  17. </shape>
  18. </item>
  19. </selector>