aboutsummaryrefslogtreecommitdiffstats
path: root/java/src
diff options
context:
space:
mode:
authorKen Wakasa <kwakasa@google.com>2011-12-17 20:27:17 +0900
committerKen Wakasa <kwakasa@google.com>2011-12-17 20:45:39 +0900
commit67394a394f325e948cde8aaeb2bce0fa0936b5a2 (patch)
tree15441ce35d37fa4590201b85bc25511ccbf8d44f /java/src
parente5748387ac753066fb2f88ea413bcf37761575a4 (diff)
downloadlatinime-67394a394f325e948cde8aaeb2bce0fa0936b5a2.tar.gz
latinime-67394a394f325e948cde8aaeb2bce0fa0936b5a2.tar.xz
latinime-67394a394f325e948cde8aaeb2bce0fa0936b5a2.zip
Preparatory small clean up for bug: 5776979
Change-Id: I96b20d3775180366fac50c2bb4e0b47a92ee4cdb
Diffstat (limited to 'java/src')
-rw-r--r--java/src/com/android/inputmethod/keyboard/LatinKeyboard.java8
1 files changed, 7 insertions, 1 deletions
diff --git a/java/src/com/android/inputmethod/keyboard/LatinKeyboard.java b/java/src/com/android/inputmethod/keyboard/LatinKeyboard.java
index a36eea7aa..dae151833 100644
--- a/java/src/com/android/inputmethod/keyboard/LatinKeyboard.java
+++ b/java/src/com/android/inputmethod/keyboard/LatinKeyboard.java
@@ -280,9 +280,13 @@ public class LatinKeyboard extends Keyboard {
final int textStyle;
final int defaultTextSize;
if (MEDIUM_TEXT_SIZE_OF_LANGUAGE_ON_SPACEBAR.equals(textSizeOfLanguageOnSpacebar)) {
+ // TODO: TextAppearance_Medium depends on the current system wide font size
+ // settings. Probably should stop using this.
textStyle = android.R.style.TextAppearance_Medium;
defaultTextSize = 18;
} else {
+ // TODO: TextAppearance_Small depends on the current system wide font size
+ // settings. Probably should stop using this.
textStyle = android.R.style.TextAppearance_Small;
defaultTextSize = 14;
}
@@ -331,7 +335,9 @@ public class LatinKeyboard extends Keyboard {
private static final int[] ATTR_TEXT_SIZE = { android.R.attr.textSize };
- public static int getTextSizeFromTheme(Theme theme, int style, int defValue) {
+ private static int getTextSizeFromTheme(Theme theme, int style, int defValue) {
+ // TODO: This method should return text size that is independent from the current
+ // system wide font size settings.
final TypedArray a = theme.obtainStyledAttributes(style, ATTR_TEXT_SIZE);
final int textSize = a.getDimensionPixelSize(a.getResourceId(0, 0), defValue);
a.recycle();