Android App zur Berechnung einer HDR Belichtungsreihe.
Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

btn_fs.xml 1.2KB

1234567891011121314151617181920212223242526272829303132
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <!--
  3. Copyright (C) 2008 The Android Open Source Project Licensed under the
  4. Apache License, Version 2.0 (the "License"); you may not use this file
  5. except in compliance with the License. You may obtain a copy of the
  6. License at http://www.apache.org/licenses/LICENSE-2.0 Unless required
  7. by applicable law or agreed to in writing, software distributed under
  8. the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR
  9. CONDITIONS OF ANY KIND, either express or implied. See the License for
  10. the specific language governing permissions and limitations under the
  11. License.
  12. -->
  13. <selector
  14. xmlns:android="http://schemas.android.com/apk/res/android">
  15. <!-- item
  16. android:state_window_focused="false"
  17. android:drawable="@drawable/glassbutton_normal" /-->
  18. <item
  19. android:state_pressed="true"
  20. android:drawable="@drawable/glassbutton_pressed" />
  21. <item
  22. android:state_enabled="false"
  23. android:drawable="@drawable/glassbutton_disabled" />
  24. <item
  25. android:state_focused="true"
  26. android:state_pressed="false"
  27. android:drawable="@drawable/glassbutton_focused" />
  28. <item
  29. android:drawable="@drawable/glassbutton_normal" />
  30. </selector>