aboutsummaryrefslogtreecommitdiffstats
path: root/java/src
diff options
context:
space:
mode:
authorTadashi G. Takaoka <takaoka@google.com>2013-01-25 13:11:51 +0900
committerTadashi G. Takaoka <takaoka@google.com>2013-01-28 11:49:44 +0900
commit8630cd9d1708d42b3ed5d07d89ade2f3c1f85e47 (patch)
tree47a58b52f1bd9265182179dd759ebcd25beb416f /java/src
parentf77e9d7e3adcd89c00243f4215bebb3ece3b59dd (diff)
downloadlatinime-8630cd9d1708d42b3ed5d07d89ade2f3c1f85e47.tar.gz
latinime-8630cd9d1708d42b3ed5d07d89ade2f3c1f85e47.tar.xz
latinime-8630cd9d1708d42b3ed5d07d89ade2f3c1f85e47.zip
Remove keyboard layout description on the spacebar
Bug: 8056376 Change-Id: I33f07e7a044c2b5fc20de40c7a9777dab493e41c
Diffstat (limited to 'java/src')
-rw-r--r--java/src/com/android/inputmethod/keyboard/MainKeyboardView.java11
-rw-r--r--java/src/com/android/inputmethod/latin/SubtypeLocale.java31
2 files changed, 25 insertions, 17 deletions
diff --git a/java/src/com/android/inputmethod/keyboard/MainKeyboardView.java b/java/src/com/android/inputmethod/keyboard/MainKeyboardView.java
index 1dd7b06dd..4d10f0e69 100644
--- a/java/src/com/android/inputmethod/keyboard/MainKeyboardView.java
+++ b/java/src/com/android/inputmethod/keyboard/MainKeyboardView.java
@@ -1443,9 +1443,9 @@ public final class MainKeyboardView extends KeyboardView implements PointerTrack
// fr_CA qwerty F Fr Français Français (Canada)
// de qwertz F De Deutsch Deutsch
// zz qwerty F QWERTY QWERTY
- // fr qwertz T Fr Français Français (QWERTZ)
- // de qwerty T De Deutsch Deutsch (QWERTY)
- // en_US azerty T En English English (US) (AZERTY)
+ // fr qwertz T Fr Français Français
+ // de qwerty T De Deutsch Deutsch
+ // en_US azerty T En English English (US)
// zz azerty T AZERTY AZERTY
// Get InputMethodSubtype's full display name in its locale.
@@ -1453,8 +1453,7 @@ public final class MainKeyboardView extends KeyboardView implements PointerTrack
if (SubtypeLocale.isNoLanguage(subtype)) {
return SubtypeLocale.getKeyboardLayoutSetDisplayName(subtype);
}
-
- return SubtypeLocale.getSubtypeDisplayName(subtype);
+ return SubtypeLocale.getSubtypeLocaleDisplayName(subtype.getLocale());
}
// Get InputMethodSubtype's short display name in its locale.
@@ -1472,6 +1471,6 @@ public final class MainKeyboardView extends KeyboardView implements PointerTrack
return SubtypeLocale.getKeyboardLayoutSetDisplayName(subtype);
}
final Locale locale = SubtypeLocale.getSubtypeLocale(subtype);
- return StringUtils.toTitleCase(locale.getDisplayLanguage(locale), locale);
+ return SubtypeLocale.getSubtypeLocaleDisplayName(locale.getLanguage());
}
}
diff --git a/java/src/com/android/inputmethod/latin/SubtypeLocale.java b/java/src/com/android/inputmethod/latin/SubtypeLocale.java
index 2f26f9296..9cbfe6698 100644
--- a/java/src/com/android/inputmethod/latin/SubtypeLocale.java
+++ b/java/src/com/android/inputmethod/latin/SubtypeLocale.java
@@ -140,26 +140,32 @@ public final class SubtypeLocale {
&& isExceptionalLocale(localeString)) {
return sExceptionalLocaleToWithLayoutNameIdsMap.get(localeString);
}
- final String key = localeString.equals(NO_LANGUAGE)
+ final String key = NO_LANGUAGE.equals(localeString)
? getNoLanguageLayoutKey(keyboardLayoutName)
: keyboardLayoutName;
final Integer nameId = sKeyboardLayoutToNameIdsMap.get(key);
return nameId == null ? UNKNOWN_KEYBOARD_LAYOUT : nameId;
}
+ private static Locale getDisplayLocaleOfSubtypeLocale(final String localeString) {
+ if (NO_LANGUAGE.equals(localeString)) {
+ return sResources.getConfiguration().locale;
+ }
+ return LocaleUtils.constructLocaleFromString(localeString);
+ }
+
public static String getSubtypeLocaleDisplayNameInSystemLocale(final String localeString) {
final Locale displayLocale = sResources.getConfiguration().locale;
return getSubtypeLocaleDisplayNameInternal(localeString, displayLocale);
}
public static String getSubtypeLocaleDisplayName(final String localeString) {
- final Locale displayLocale = LocaleUtils.constructLocaleFromString(localeString);
+ final Locale displayLocale = getDisplayLocaleOfSubtypeLocale(localeString);
return getSubtypeLocaleDisplayNameInternal(localeString, displayLocale);
}
private static String getSubtypeLocaleDisplayNameInternal(final String localeString,
final Locale displayLocale) {
- final Locale locale = LocaleUtils.constructLocaleFromString(localeString);
final Integer exceptionalNameResId = sExceptionalLocaleToNameIdsMap.get(localeString);
final String displayName;
if (exceptionalNameResId != null) {
@@ -170,7 +176,11 @@ public final class SubtypeLocale {
}
};
displayName = getExceptionalName.runInLocale(sResources, displayLocale);
+ } else if (NO_LANGUAGE.equals(localeString)) {
+ // No language subtype should be displayed in system locale.
+ return sResources.getString(R.string.subtype_no_language);
} else {
+ final Locale locale = LocaleUtils.constructLocaleFromString(localeString);
displayName = locale.getDisplayName(displayLocale);
}
return StringUtils.toTitleCase(displayName, displayLocale);
@@ -203,13 +213,13 @@ public final class SubtypeLocale {
}
public static String getSubtypeDisplayNameInSystemLocale(final InputMethodSubtype subtype) {
- final Locale subtypeLocale = sResources.getConfiguration().locale;
- return getSubtypeDisplayNameInternal(subtype, subtypeLocale);
+ final Locale displayLocale = sResources.getConfiguration().locale;
+ return getSubtypeDisplayNameInternal(subtype, displayLocale);
}
public static String getSubtypeDisplayName(final InputMethodSubtype subtype) {
- final Locale subtypeLocale = LocaleUtils.constructLocaleFromString(subtype.getLocale());
- return getSubtypeDisplayNameInternal(subtype, subtypeLocale);
+ final Locale displayLocale = getDisplayLocaleOfSubtypeLocale(subtype.getLocale());
+ return getSubtypeDisplayNameInternal(subtype, displayLocale);
}
private static String getSubtypeDisplayNameInternal(final InputMethodSubtype subtype,
@@ -225,6 +235,7 @@ public final class SubtypeLocale {
// TODO: Remove this catch when InputMethodManager.getCurrentInputMethodSubtype
// is fixed.
Log.w(TAG, "Unknown subtype: mode=" + subtype.getMode()
+ + " nameResId=" + subtype.getNameResId()
+ " locale=" + subtype.getLocale()
+ " extra=" + subtype.getExtraValue()
+ "\n" + Utils.getStackTrace());
@@ -232,15 +243,13 @@ public final class SubtypeLocale {
}
}
};
- final Locale locale = isNoLanguage(subtype)
- ? sResources.getConfiguration().locale : displayLocale;
return StringUtils.toTitleCase(
- getSubtypeName.runInLocale(sResources, locale), locale);
+ getSubtypeName.runInLocale(sResources, displayLocale), displayLocale);
}
public static boolean isNoLanguage(final InputMethodSubtype subtype) {
final String localeString = subtype.getLocale();
- return localeString.equals(NO_LANGUAGE);
+ return NO_LANGUAGE.equals(localeString);
}
public static Locale getSubtypeLocale(final InputMethodSubtype subtype) {