/ime/latinime/res/values/styles.xml

http://eyes-free.googlecode.com/ · XML · 44 lines · 28 code · 2 blank · 14 comment · 0 complexity · 5d4c2f0f9308135f3e4330104e59d868 MD5 · raw file

  1. <?xml version="1.0" encoding="utf-8"?>
  2. <!-- Copyright (C) 2010 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. <resources>
  14. <style name="LatinKeyboardBaseView">
  15. <item name="android:background">@drawable/keyboard_background</item>
  16. <item name="keyBackground">@drawable/btn_keyboard_key</item>
  17. <item name="keyTextSize">@dimen/key_text_size</item>
  18. <item name="keyTextColor">#FFFFFFFF</item>
  19. <item name="keyPreviewLayout">@layout/key_preview</item>
  20. <item name="keyPreviewOffset">@dimen/key_preview_offset</item>
  21. <item name="keyPreviewHeight">@dimen/key_preview_height</item>
  22. <item name="labelTextSize">@dimen/key_label_text_size</item>
  23. <item name="popupLayout">@layout/keyboard_popup</item>
  24. <item name="keyHysteresisDistance">@dimen/key_hysteresis_distance</item>
  25. <item name="verticalCorrection">@dimen/keyboard_vertical_correction</item>
  26. <item name="shadowColor">#BB000000</item>
  27. <item name="shadowRadius">2.75</item>
  28. <item name="backgroundDimAmount">0.5</item>
  29. <item name="symbolColorScheme">white</item>
  30. </style>
  31. <style name="KeyPreviewAnimation">
  32. <item name="android:windowEnterAnimation">@anim/key_preview_fadein</item>
  33. <item name="android:windowExitAnimation">@anim/key_preview_fadeout</item>
  34. </style>
  35. <style name="MiniKeyboardAnimation">
  36. <item name="android:windowEnterAnimation">@anim/mini_keyboard_fadein</item>
  37. <item name="android:windowExitAnimation">@anim/mini_keyboard_fadeout</item>
  38. </style>
  39. </resources>