diff options
author | 2013-01-29 16:11:52 +0900 | |
---|---|---|
committer | 2013-01-29 18:32:04 +0900 | |
commit | 17dae3057c234d9aed83c1ba31dbbc3aceb790ca (patch) | |
tree | 25734321a51b4eb3ecf8e084ac4dca7844838306 /java/res | |
parent | 56012e5ab952ecae965818d89b9ee51ef1f84ddb (diff) | |
download | latinime-17dae3057c234d9aed83c1ba31dbbc3aceb790ca.tar.gz latinime-17dae3057c234d9aed83c1ba31dbbc3aceb790ca.tar.xz latinime-17dae3057c234d9aed83c1ba31dbbc3aceb790ca.zip |
Remove {max,min}keyboardHeight attribute from Keyboard
This change removes a DisplayMetrics reference from KeyboardBuilder.
Change-Id: I512694274e69e5281d5be47c3f938bcfd6571152
Diffstat (limited to 'java/res')
-rw-r--r-- | java/res/values/attrs.xml | 7 | ||||
-rw-r--r-- | java/res/values/styles.xml | 3 |
2 files changed, 0 insertions, 10 deletions
diff --git a/java/res/values/attrs.xml b/java/res/values/attrs.xml index 51a0758e6..5b3898709 100644 --- a/java/res/values/attrs.xml +++ b/java/res/values/attrs.xml @@ -173,13 +173,6 @@ <attr name="themeId" format="integer" /> <!-- Touch position correction --> <attr name="touchPositionCorrectionData" format="reference" /> - <!-- Default keyboard height --> - <attr name="keyboardHeight" format="dimension|fraction" /> - <!-- Maximum keyboard height, in pixels or percentage of display height --> - <attr name="maxKeyboardHeight" format="dimension|fraction" /> - <!-- Minimum keyboard height represented in pixels, percentage of display height if fraction - is positive, or percentage of display width if fraction is negative. --> - <attr name="minKeyboardHeight" format="dimension|fraction" /> <!-- Keyboard top, bottom, both horizontal edges paddings. --> <attr name="keyboardTopPadding" format="dimension|fraction" /> <attr name="keyboardBottomPadding" format="dimension|fraction" /> diff --git a/java/res/values/styles.xml b/java/res/values/styles.xml index f07f2d352..19d6da86e 100644 --- a/java/res/values/styles.xml +++ b/java/res/values/styles.xml @@ -21,9 +21,6 @@ <item name="themeId">0</item> <item name="touchPositionCorrectionData">@array/touch_position_correction_data_default</item> <item name="rowHeight">25%p</item> - <item name="keyboardHeight">@dimen/keyboardHeight</item> - <item name="maxKeyboardHeight">@fraction/maxKeyboardHeight</item> - <item name="minKeyboardHeight">@fraction/minKeyboardHeight</item> <item name="moreKeysTemplate">@xml/kbd_more_keys_keyboard_template</item> <item name="keyboardTopPadding">@fraction/keyboard_top_padding</item> <item name="keyboardBottomPadding">@fraction/keyboard_bottom_padding</item> |