Version für alte Androidversionen der Visiereinstellung für Recurvebogen.
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

z_selector_background.xml 1.0KB

12345678910111213141516171819202122232425262728293031323334353637
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <selector
  3. xmlns:android="http://schemas.android.com/apk/res/android">
  4. <item
  5. android:state_window_focused="false"
  6. android:drawable="@android:color/transparent" />
  7. <!--
  8. Even though these two point to the same resource, have two states so
  9. the drawable will invalidate itself when coming out of pressed state.
  10. -->
  11. <item
  12. android:state_focused="true"
  13. android:state_enabled="false"
  14. android:state_pressed="true"
  15. android:drawable="@drawable/z_selector_background_pressed" />
  16. <item
  17. android:state_focused="true"
  18. android:state_enabled="false"
  19. android:drawable="@drawable/z_selector_background_focused" />
  20. <item
  21. android:state_focused="true"
  22. android:state_pressed="true"
  23. android:drawable="@drawable/z_selector_background_pressed" />
  24. <item
  25. android:state_focused="false"
  26. android:state_pressed="true"
  27. android:drawable="@drawable/z_selector_background_pressed" />
  28. <item
  29. android:state_focused="true"
  30. android:drawable="@drawable/z_selector_background_focused" />
  31. </selector>