From fdb6999e553009e98fc87856ce607677eab5af28 Mon Sep 17 00:00:00 2001 From: "Tadashi G. Takaoka" Date: Fri, 10 Feb 2012 03:17:39 +0900 Subject: [PATCH] Key should be distinguished also by moreKeys contents and etc. Change-Id: Ib2caabee6af78153b5a7be0e4df522288f2a7d48 --- java/src/com/android/inputmethod/keyboard/Key.java | 14 +++++++++----- 1 file changed, 9 insertions(+), 5 deletions(-) diff --git a/java/src/com/android/inputmethod/keyboard/Key.java b/java/src/com/android/inputmethod/keyboard/Key.java index b90d45d3b..cf3a437cf 100644 --- a/java/src/com/android/inputmethod/keyboard/Key.java +++ b/java/src/com/android/inputmethod/keyboard/Key.java @@ -335,18 +335,18 @@ public class Key { key.mHintLabel, key.mIconId, key.mBackgroundType, + Arrays.hashCode(key.mMoreKeys), + key.mOutputText, + key.mActionFlags, + key.mLabelFlags, // Key can be distinguishable without the following members. // key.mAltCode, - // key.mOutputText, - // key.mActionFlags, - // key.mLabelFlags, // key.mDisabledIconId, // key.mPreviewIconId, // key.mHorizontalGap, // key.mVerticalGap, // key.mVisualInsetLeft, // key.mVisualInsetRight, - // Arrays.hashCode(key.mMoreKeys), // key.mMaxMoreKeysColumn, }); } @@ -361,7 +361,11 @@ public class Key { && TextUtils.equals(o.mLabel, mLabel) && TextUtils.equals(o.mHintLabel, mHintLabel) && o.mIconId == mIconId - && o.mBackgroundType == mBackgroundType; + && o.mBackgroundType == mBackgroundType + && Arrays.equals(o.mMoreKeys, mMoreKeys) + && TextUtils.equals(o.mOutputText, mOutputText) + && o.mActionFlags == mActionFlags + && o.mLabelFlags == mLabelFlags; } @Override