aboutsummaryrefslogtreecommitdiffstats
path: root/java
diff options
context:
space:
mode:
authorTadashi G. Takaoka <takaoka@google.com>2010-09-21 10:44:29 -0700
committerAndroid Git Automerger <android-git-automerger@android.com>2010-09-21 10:44:29 -0700
commit41acad294cbd6cbf0433fceb7ee6a67a296b9906 (patch)
treee204e71fb1af8e60c74b65f11544905e447f70ce /java
parent75abaf5d8f2367bad2d51bf983586bd9baa93952 (diff)
parentc01d978f56f90425f070d57a66968aa77ef69a7d (diff)
downloadlatinime-41acad294cbd6cbf0433fceb7ee6a67a296b9906.tar.gz
latinime-41acad294cbd6cbf0433fceb7ee6a67a296b9906.tar.xz
latinime-41acad294cbd6cbf0433fceb7ee6a67a296b9906.zip
am c01d978f: am a104575c: Merge "Draw language label on space key of symbol+alt mode" into gingerbread
Merge commit 'c01d978f56f90425f070d57a66968aa77ef69a7d' * commit 'c01d978f56f90425f070d57a66968aa77ef69a7d': Draw language label on space key of symbol+alt mode
Diffstat (limited to 'java')
-rw-r--r--java/src/com/android/inputmethod/latin/LatinKeyboard.java22
1 files changed, 8 insertions, 14 deletions
diff --git a/java/src/com/android/inputmethod/latin/LatinKeyboard.java b/java/src/com/android/inputmethod/latin/LatinKeyboard.java
index 1414626db..4e139e849 100644
--- a/java/src/com/android/inputmethod/latin/LatinKeyboard.java
+++ b/java/src/com/android/inputmethod/latin/LatinKeyboard.java
@@ -56,8 +56,8 @@ public class LatinKeyboard extends Keyboard {
private Drawable mMicPreviewIcon;
private Drawable m123MicIcon;
private Drawable m123MicPreviewIcon;
- private Drawable mButtonArrowLeftIcon;
- private Drawable mButtonArrowRightIcon;
+ private final Drawable mButtonArrowLeftIcon;
+ private final Drawable mButtonArrowRightIcon;
private Key mShiftKey;
private Key mEnterKey;
private Key mF1Key;
@@ -66,15 +66,15 @@ public class LatinKeyboard extends Keyboard {
private int mSpaceKeyIndex = -1;
private int mSpaceDragStartX;
private int mSpaceDragLastDiff;
- /* package */ Locale mLocale;
+ private Locale mLocale;
private LanguageSwitcher mLanguageSwitcher;
- private Resources mRes;
- private Context mContext;
+ private final Resources mRes;
+ private final Context mContext;
// Whether this keyboard has voice icon on it
private boolean mHasVoiceButton;
// Whether voice icon is enabled at all
private boolean mVoiceEnabled;
- private boolean mIsAlphaKeyboard;
+ private final boolean mIsAlphaKeyboard;
private CharSequence m123Label;
private boolean mCurrentlyInSpace;
private SlidingLocaleDrawable mSlidingLocaleIcon;
@@ -97,7 +97,7 @@ public class LatinKeyboard extends Keyboard {
private static final float OVERLAP_PERCENTAGE_LOW_PROB = 0.70f;
private static final float OVERLAP_PERCENTAGE_HIGH_PROB = 0.85f;
- static int sSpacebarVerticalCorrection;
+ private static int sSpacebarVerticalCorrection;
public LatinKeyboard(Context context, int xmlLayoutResId) {
this(context, xmlLayoutResId, 0);
@@ -131,11 +131,6 @@ public class LatinKeyboard extends Keyboard {
mSpaceKeyIndex = indexOf(' ');
}
- public LatinKeyboard(Context context, int layoutTemplateResId,
- CharSequence characters, int columns, int horizontalPadding) {
- super(context, layoutTemplateResId, characters, columns, horizontalPadding);
- }
-
@Override
protected Key createKeyFromXml(Resources res, Row parent, int x, int y,
XmlResourceParser parser) {
@@ -482,9 +477,8 @@ public class LatinKeyboard extends Keyboard {
.equalsIgnoreCase(locale.getLanguage())) {
locale = null;
}
- setColorOfSymbolIcons(isAutoCompletion, isBlackSym);
- if (mLocale != null && mLocale.equals(locale)) return;
mLocale = locale;
+ setColorOfSymbolIcons(isAutoCompletion, isBlackSym);
}
boolean isCurrentlyInSpace() {