styles.xml 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <resources>
  3. <style name="Animations" />
  4. <!-- PopDownMenu -->
  5. <style name="Animations.PopDownMenu" />
  6. <style name="Animations.PopDownMenu.Center">
  7. <item name="@android:windowEnterAnimation">@anim/grow_from_top</item>
  8. <item name="@android:windowExitAnimation">@anim/shrink_from_bottom</item>
  9. </style>
  10. <style name="Animations.PopDownMenu.Left">
  11. <item name="@android:windowEnterAnimation">@anim/grow_from_topleft_to_bottomright</item>
  12. <item name="@android:windowExitAnimation">@anim/shrink_from_bottomright_to_topleft</item>
  13. </style>
  14. <style name="Animations.PopDownMenu.Right">
  15. <item name="@android:windowEnterAnimation">@anim/grow_from_topright_to_bottomleft</item>
  16. <item name="@android:windowExitAnimation">@anim/shrink_from_bottomleft_to_topright</item>
  17. </style>
  18. <style name="Animations.PopDownMenu.Reflect">
  19. <item name="@android:windowEnterAnimation">@anim/pump_top</item>
  20. <item name="@android:windowExitAnimation">@anim/disappear</item>
  21. </style>
  22. <!-- PopUpMenu -->
  23. <style name="Animations.PopUpMenu" />
  24. <style name="Animations.PopUpMenu.Center">
  25. <item name="@android:windowEnterAnimation">@anim/grow_from_bottom</item>
  26. <item name="@android:windowExitAnimation">@anim/shrink_from_top</item>
  27. </style>
  28. <style name="Animations.PopUpMenu.Left">
  29. <item name="@android:windowEnterAnimation">@anim/grow_from_bottomleft_to_topright</item>
  30. <item name="@android:windowExitAnimation">@anim/shrink_from_topright_to_bottomleft</item>
  31. </style>
  32. <style name="Animations.PopUpMenu.Right">
  33. <item name="@android:windowEnterAnimation">@anim/grow_from_bottomright_to_topleft</item>
  34. <item name="@android:windowExitAnimation">@anim/shrink_from_topleft_to_bottomright</item>
  35. </style>
  36. <style name="Animations.PopUpMenu.Reflect">
  37. <item name="@android:windowEnterAnimation">@anim/pump_bottom</item>
  38. <item name="@android:windowExitAnimation">@anim/disappear</item>
  39. </style>
  40. <color name="setup_text_hint">#777777</color>
  41. <color name="setup_text_typed">#000000</color>
  42. </resources>