wallpaper_tile_fg.xml 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <!-- Copyright (C) 2011 The Android Open Source Project
  3. Licensed under the Apache License, Version 2.0 (the "License");
  4. you may not use this file except in compliance with the License.
  5. You may obtain a copy of the License at
  6. http://www.apache.org/licenses/LICENSE-2.0
  7. Unless required by applicable law or agreed to in writing, software
  8. distributed under the License is distributed on an "AS IS" BASIS,
  9. WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  10. See the License for the specific language governing permissions and
  11. limitations under the License.
  12. -->
  13. <selector xmlns:android="http://schemas.android.com/apk/res/android">
  14. <item android:state_checked="true" >
  15. <shape>
  16. <stroke
  17. android:width="2dp"
  18. android:color="#FFFFFFFF" />
  19. <solid android:color="#33FFFFFF"/>
  20. </shape>
  21. </item>
  22. <item android:state_focused="true" >
  23. <shape>
  24. <stroke
  25. android:width="2dp"
  26. android:color="#FFFFFFFF" />
  27. </shape>
  28. </item>
  29. <item android:state_pressed="true">
  30. <shape android:shape="rectangle">
  31. <solid android:color="#33FFFFFF"/>
  32. </shape>
  33. </item>
  34. <item android:state_selected="true" >
  35. <shape>
  36. <stroke
  37. android:width="2dp"
  38. android:color="#FFFFFFFF" />
  39. <solid android:color="#33FFFFFF"/>
  40. </shape>
  41. </item>
  42. <item android:drawable="@android:color/transparent" />
  43. </selector>