Android App zur Berechnung einer HDR Belichtungsreihe.
Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

dropdown_fs.xml 1.1KB

1234567891011121314151617181920212223242526272829
  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/glassdropdown_normal" />
  18. <item
  19. android:state_pressed="true"
  20. android:drawable="@drawable/glassdropdown_pressed" />
  21. <item
  22. android:state_focused="true"
  23. android:state_pressed="false"
  24. android:drawable="@drawable/glassdropdown_focused" />
  25. <item
  26. android:drawable="@drawable/glassdropdown_normal" />
  27. </selector>