diff options
author | 2012-03-16 16:41:18 +0900 | |
---|---|---|
committer | 2012-03-21 20:29:51 +0900 | |
commit | 72913f97edb74e877f78b25418a568a4b0f5ae5c (patch) | |
tree | 09df79e7be55dae829138707943fd2d097782636 /java/src/com/android/inputmethod/latin/suggestions/MoreSuggestionsView.java | |
parent | 9945f364061dc0b297da0e13a7e864ac6890bb4c (diff) | |
download | latinime-72913f97edb74e877f78b25418a568a4b0f5ae5c.tar.gz latinime-72913f97edb74e877f78b25418a568a4b0f5ae5c.tar.xz latinime-72913f97edb74e877f78b25418a568a4b0f5ae5c.zip |
Refactor key drawing code in KeyboardView
Change-Id: Ic7af05caee32eb6cba68d27ba4e2d9072472b34d
Diffstat (limited to 'java/src/com/android/inputmethod/latin/suggestions/MoreSuggestionsView.java')
-rw-r--r-- | java/src/com/android/inputmethod/latin/suggestions/MoreSuggestionsView.java | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/java/src/com/android/inputmethod/latin/suggestions/MoreSuggestionsView.java b/java/src/com/android/inputmethod/latin/suggestions/MoreSuggestionsView.java index f11b1a4c1..e64e7a685 100644 --- a/java/src/com/android/inputmethod/latin/suggestions/MoreSuggestionsView.java +++ b/java/src/com/android/inputmethod/latin/suggestions/MoreSuggestionsView.java @@ -43,17 +43,17 @@ import com.android.inputmethod.latin.R; public class MoreSuggestionsView extends KeyboardView implements MoreKeysPanel { private final int[] mCoordinates = new int[2]; - private final KeyDetector mModalPanelKeyDetector; + final KeyDetector mModalPanelKeyDetector; private final KeyDetector mSlidingPanelKeyDetector; private Controller mController; - private KeyboardActionListener mListener; + KeyboardActionListener mListener; private int mOriginX; private int mOriginY; - private static final TimerProxy EMPTY_TIMER_PROXY = new TimerProxy.Adapter(); + static final TimerProxy EMPTY_TIMER_PROXY = new TimerProxy.Adapter(); - private final KeyboardActionListener mSuggestionsPaneListener = + final KeyboardActionListener mSuggestionsPaneListener = new KeyboardActionListener.Adapter() { @Override public void onPressKey(int primaryCode) { |