SuggestionStripView.java revision 1672ccbbb6167f434842093feaadc2bcd5634eab
1923bf41f853a544fd0d71fbf7dc90359ec35981The Android Open Source Project/*
2913e2aeef26f172d500a4ebfc644b5f47778841aTadashi G. Takaoka * Copyright (C) 2011 The Android Open Source Project
3e49bd1c43acad08f103b38430a8bbcba23f325b3Tadashi G. Takaoka *
48aa9963a895f9dd5bb1bc92ab2e4f461e058f87aTadashi G. Takaoka * Licensed under the Apache License, Version 2.0 (the "License");
58aa9963a895f9dd5bb1bc92ab2e4f461e058f87aTadashi G. Takaoka * you may not use this file except in compliance with the License.
68aa9963a895f9dd5bb1bc92ab2e4f461e058f87aTadashi G. Takaoka * You may obtain a copy of the License at
7e49bd1c43acad08f103b38430a8bbcba23f325b3Tadashi G. Takaoka *
88aa9963a895f9dd5bb1bc92ab2e4f461e058f87aTadashi G. Takaoka *      http://www.apache.org/licenses/LICENSE-2.0
9e49bd1c43acad08f103b38430a8bbcba23f325b3Tadashi G. Takaoka *
10923bf41f853a544fd0d71fbf7dc90359ec35981The Android Open Source Project * Unless required by applicable law or agreed to in writing, software
118aa9963a895f9dd5bb1bc92ab2e4f461e058f87aTadashi G. Takaoka * distributed under the License is distributed on an "AS IS" BASIS,
128aa9963a895f9dd5bb1bc92ab2e4f461e058f87aTadashi G. Takaoka * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
138aa9963a895f9dd5bb1bc92ab2e4f461e058f87aTadashi G. Takaoka * See the License for the specific language governing permissions and
148aa9963a895f9dd5bb1bc92ab2e4f461e058f87aTadashi G. Takaoka * limitations under the License.
15923bf41f853a544fd0d71fbf7dc90359ec35981The Android Open Source Project */
16923bf41f853a544fd0d71fbf7dc90359ec35981The Android Open Source Project
178c3d5b6961a9b9d40c4bf21ad495f852971c24f4Tadashi G. Takaokapackage com.android.inputmethod.latin.suggestions;
18923bf41f853a544fd0d71fbf7dc90359ec35981The Android Open Source Project
19923bf41f853a544fd0d71fbf7dc90359ec35981The Android Open Source Projectimport android.content.Context;
2066a787b953d703201c6b827abbee74e8cd9bb063Amith Yamasaniimport android.content.res.Resources;
21c2ea3f7dd95e7e9dccc61ac2ef9b56b1db8e5b48Tadashi G. Takaokaimport android.graphics.Color;
22bcd30bf3e74c7c10d5b69a54cdf90c6b682a0747Tadashi G. Takaokaimport android.support.v4.view.ViewCompat;
236abc852255072e9c5741a7d8f264bec99b0ce14eTadashi G. Takaokaimport android.text.TextUtils;
24923bf41f853a544fd0d71fbf7dc90359ec35981The Android Open Source Projectimport android.util.AttributeSet;
25c2ea3f7dd95e7e9dccc61ac2ef9b56b1db8e5b48Tadashi G. Takaokaimport android.util.TypedValue;
263fc4ddec68b4f56f53ed6da80b5e44f38c085740Tadashi G. Takaokaimport android.view.GestureDetector;
27923bf41f853a544fd0d71fbf7dc90359ec35981The Android Open Source Projectimport android.view.LayoutInflater;
2829e7b7ed6ef88c3e10cc6469801fef87241c9cb5Tadashi G. Takaokaimport android.view.MotionEvent;
29923bf41f853a544fd0d71fbf7dc90359ec35981The Android Open Source Projectimport android.view.View;
30e49bd1c43acad08f103b38430a8bbcba23f325b3Tadashi G. Takaokaimport android.view.View.OnClickListener;
31ae5c736e37973e26b201d45ff6c139862a6e05cfTadashi G. Takaokaimport android.view.View.OnLongClickListener;
32e26ef1bccddc942fdaeada3409c8e8ff18a35008Tadashi G. Takaokaimport android.view.ViewGroup;
339ac6c9064d24a3a0e96db470bb76c997c51bb5c8Tadashi G. Takaokaimport android.view.ViewParent;
34c412309b7a32308b1b0a175dafc13f90254353c5Tadashi G. Takaokaimport android.widget.RelativeLayout;
35923bf41f853a544fd0d71fbf7dc90359ec35981The Android Open Source Projectimport android.widget.TextView;
36923bf41f853a544fd0d71fbf7dc90359ec35981The Android Open Source Project
377339a62a1368b632c0cedaf1d876a0e8590a47edTadashi G. Takaokaimport com.android.inputmethod.keyboard.Keyboard;
387339a62a1368b632c0cedaf1d876a0e8590a47edTadashi G. Takaokaimport com.android.inputmethod.keyboard.KeyboardSwitcher;
39d9449ccf3ce9e5eabb022aed6a45bba680bce115Tadashi G. Takaokaimport com.android.inputmethod.keyboard.MainKeyboardView;
4029e7b7ed6ef88c3e10cc6469801fef87241c9cb5Tadashi G. Takaokaimport com.android.inputmethod.keyboard.MoreKeysPanel;
416f9105383a56c9ae15e35d3abf19c33d1efe5636Tadashi G. Takaokaimport com.android.inputmethod.latin.AudioAndHapticFeedbackManager;
425faf41951929301af80026bc3191812ef874fd5aTadashi G. Takaokaimport com.android.inputmethod.latin.Constants;
43ce78a2d8ab7630cff509c2b21b4b11abd8db4795Tadashi G. Takaokaimport com.android.inputmethod.latin.InputAttributes;
448c3d5b6961a9b9d40c4bf21ad495f852971c24f4Tadashi G. Takaokaimport com.android.inputmethod.latin.LatinImeLogger;
458c3d5b6961a9b9d40c4bf21ad495f852971c24f4Tadashi G. Takaokaimport com.android.inputmethod.latin.R;
468c3d5b6961a9b9d40c4bf21ad495f852971c24f4Tadashi G. Takaokaimport com.android.inputmethod.latin.SuggestedWords;
479310f42a36eabe99ed7dcd3b835d6cdaa3c6fdcaJean Chalardimport com.android.inputmethod.latin.SuggestedWords.SuggestedWordInfo;
48a9ca7867b5a7c0be115966211a05f5d460c8638cKurt Partridgeimport com.android.inputmethod.latin.define.ProductionFlag;
49ce78a2d8ab7630cff509c2b21b4b11abd8db4795Tadashi G. Takaokaimport com.android.inputmethod.latin.settings.Settings;
506f7905ae757c30ac0f8080f025b88afc61a6f6b1Tadashi G. Takaokaimport com.android.inputmethod.latin.suggestions.MoreSuggestions.MoreSuggestionsListener;
51e28eba5074664d5716b8e58b8d0a235746b261ebKen Wakasaimport com.android.inputmethod.latin.utils.CollectionUtils;
528dda9e480b6519ca57565c8aa507e14bff739b60Tadashi G. Takaokaimport com.android.inputmethod.latin.utils.ImportantNoticeUtils;
536b966160ac8570271547bf63217efa5e228d4accKurt Partridgeimport com.android.inputmethod.research.ResearchLogger;
54ddb61ea461b920d87be4ad78c8a36eec1013b965Tadashi G. Takaoka
55179ada958b0bb46c6b9c8eb8b220d84dd3db855aTadashi G. Takaokaimport java.util.ArrayList;
56179ada958b0bb46c6b9c8eb8b220d84dd3db855aTadashi G. Takaoka
57a28a05e971cc242b338331a3b78276fa95188d19Tadashi G. Takaokapublic final class SuggestionStripView extends RelativeLayout implements OnClickListener,
58c412309b7a32308b1b0a175dafc13f90254353c5Tadashi G. Takaoka        OnLongClickListener {
59c97810693dfe83bf37c09f73c8d4b40f2ba8dddbTadashi G. Takaoka    public interface Listener {
6018d688c94bb8e1e26de2d12445cb3096c6126f75Jean Chalard        public void addWordToUserDictionary(String word);
618a296e43c903a3377f28943ba4a59082ae7fe60aTadashi G. Takaoka        public void showImportantNoticeContents();
629310f42a36eabe99ed7dcd3b835d6cdaa3c6fdcaJean Chalard        public void pickSuggestionManually(int index, SuggestedWordInfo word);
63c97810693dfe83bf37c09f73c8d4b40f2ba8dddbTadashi G. Takaoka    }
64c97810693dfe83bf37c09f73c8d4b40f2ba8dddbTadashi G. Takaoka
658c3d5b6961a9b9d40c4bf21ad495f852971c24f4Tadashi G. Takaoka    static final boolean DBG = LatinImeLogger.sDBG;
66c2ea3f7dd95e7e9dccc61ac2ef9b56b1db8e5b48Tadashi G. Takaoka    private static final float DEBUG_INFO_TEXT_SIZE_IN_DIP = 6.0f;
676f7218627eda110a8454053f8ecb7b80edfdc8cesatok
68913e2aeef26f172d500a4ebfc644b5f47778841aTadashi G. Takaoka    private final ViewGroup mSuggestionsStrip;
69148dedbc5dfa22d6db30b28ae9ede139206af429Tadashi G. Takaoka    private final ViewGroup mAddToDictionaryStrip;
708a296e43c903a3377f28943ba4a59082ae7fe60aTadashi G. Takaoka    private final View mImportantNoticeStrip;
71d9449ccf3ce9e5eabb022aed6a45bba680bce115Tadashi G. Takaoka    MainKeyboardView mMainKeyboardView;
7274b6897a12ec603ef835aaa77a01f0c32f49aa1cTadashi G. Takaoka
7329e7b7ed6ef88c3e10cc6469801fef87241c9cb5Tadashi G. Takaoka    private final View mMoreSuggestionsContainer;
7429e7b7ed6ef88c3e10cc6469801fef87241c9cb5Tadashi G. Takaoka    private final MoreSuggestionsView mMoreSuggestionsView;
7529e7b7ed6ef88c3e10cc6469801fef87241c9cb5Tadashi G. Takaoka    private final MoreSuggestions.Builder mMoreSuggestionsBuilder;
7629e7b7ed6ef88c3e10cc6469801fef87241c9cb5Tadashi G. Takaoka
77500a9752b1e61885f37b0fb26f09dfdd65da4e5eTadashi G. Takaoka    private final ArrayList<TextView> mWordViews = CollectionUtils.newArrayList();
78500a9752b1e61885f37b0fb26f09dfdd65da4e5eTadashi G. Takaoka    private final ArrayList<TextView> mDebugInfoViews = CollectionUtils.newArrayList();
79500a9752b1e61885f37b0fb26f09dfdd65da4e5eTadashi G. Takaoka    private final ArrayList<View> mDividerViews = CollectionUtils.newArrayList();
8074b6897a12ec603ef835aaa77a01f0c32f49aa1cTadashi G. Takaoka
813e5a3c18bebbfb56012383411b24ee81ffde09cbTadashi G. Takaoka    Listener mListener;
826f7905ae757c30ac0f8080f025b88afc61a6f6b1Tadashi G. Takaoka    private SuggestedWords mSuggestedWords = SuggestedWords.EMPTY;
834f8a8f125e329b55e49d31a98b5368113440c755Tadashi G. Takaoka    private int mSuggestionsCountInStrip;
846a6075caba3865383eeeb52cccc63a28e4ae5900Amith Yamasani
85653603b7253d96c7fad674ed301de5bc8050b68cTadashi G. Takaoka    private final SuggestionStripLayoutHelper mLayoutHelper;
86148dedbc5dfa22d6db30b28ae9ede139206af429Tadashi G. Takaoka    private final StripVisibilityGroup mStripVisibilityGroup;
87148dedbc5dfa22d6db30b28ae9ede139206af429Tadashi G. Takaoka
88148dedbc5dfa22d6db30b28ae9ede139206af429Tadashi G. Takaoka    private static class StripVisibilityGroup {
89148dedbc5dfa22d6db30b28ae9ede139206af429Tadashi G. Takaoka        private final View mSuggestionsStrip;
90148dedbc5dfa22d6db30b28ae9ede139206af429Tadashi G. Takaoka        private final View mAddToDictionaryStrip;
918a296e43c903a3377f28943ba4a59082ae7fe60aTadashi G. Takaoka        private final View mImportantNoticeStrip;
92148dedbc5dfa22d6db30b28ae9ede139206af429Tadashi G. Takaoka
938a296e43c903a3377f28943ba4a59082ae7fe60aTadashi G. Takaoka        public StripVisibilityGroup(final View suggestionsStrip, final View addToDictionaryStrip,
948a296e43c903a3377f28943ba4a59082ae7fe60aTadashi G. Takaoka                final View importantNoticeStrip) {
95148dedbc5dfa22d6db30b28ae9ede139206af429Tadashi G. Takaoka            mSuggestionsStrip = suggestionsStrip;
96148dedbc5dfa22d6db30b28ae9ede139206af429Tadashi G. Takaoka            mAddToDictionaryStrip = addToDictionaryStrip;
978a296e43c903a3377f28943ba4a59082ae7fe60aTadashi G. Takaoka            mImportantNoticeStrip = importantNoticeStrip;
98148dedbc5dfa22d6db30b28ae9ede139206af429Tadashi G. Takaoka            showSuggestionsStrip();
99148dedbc5dfa22d6db30b28ae9ede139206af429Tadashi G. Takaoka        }
100148dedbc5dfa22d6db30b28ae9ede139206af429Tadashi G. Takaoka
101bcd30bf3e74c7c10d5b69a54cdf90c6b682a0747Tadashi G. Takaoka        public void setLayoutDirection(final boolean isRtlLanguage) {
102bcd30bf3e74c7c10d5b69a54cdf90c6b682a0747Tadashi G. Takaoka            final int layoutDirection = isRtlLanguage ? ViewCompat.LAYOUT_DIRECTION_RTL
103bcd30bf3e74c7c10d5b69a54cdf90c6b682a0747Tadashi G. Takaoka                    : ViewCompat.LAYOUT_DIRECTION_LTR;
104bcd30bf3e74c7c10d5b69a54cdf90c6b682a0747Tadashi G. Takaoka            ViewCompat.setLayoutDirection(mSuggestionsStrip, layoutDirection);
105bcd30bf3e74c7c10d5b69a54cdf90c6b682a0747Tadashi G. Takaoka            ViewCompat.setLayoutDirection(mAddToDictionaryStrip, layoutDirection);
1068a296e43c903a3377f28943ba4a59082ae7fe60aTadashi G. Takaoka            ViewCompat.setLayoutDirection(mImportantNoticeStrip, layoutDirection);
107bcd30bf3e74c7c10d5b69a54cdf90c6b682a0747Tadashi G. Takaoka        }
108bcd30bf3e74c7c10d5b69a54cdf90c6b682a0747Tadashi G. Takaoka
109148dedbc5dfa22d6db30b28ae9ede139206af429Tadashi G. Takaoka        public void showSuggestionsStrip() {
110148dedbc5dfa22d6db30b28ae9ede139206af429Tadashi G. Takaoka            mSuggestionsStrip.setVisibility(VISIBLE);
111148dedbc5dfa22d6db30b28ae9ede139206af429Tadashi G. Takaoka            mAddToDictionaryStrip.setVisibility(INVISIBLE);
1128a296e43c903a3377f28943ba4a59082ae7fe60aTadashi G. Takaoka            mImportantNoticeStrip.setVisibility(INVISIBLE);
113148dedbc5dfa22d6db30b28ae9ede139206af429Tadashi G. Takaoka        }
114148dedbc5dfa22d6db30b28ae9ede139206af429Tadashi G. Takaoka
115148dedbc5dfa22d6db30b28ae9ede139206af429Tadashi G. Takaoka        public void showAddToDictionaryStrip() {
116148dedbc5dfa22d6db30b28ae9ede139206af429Tadashi G. Takaoka            mSuggestionsStrip.setVisibility(INVISIBLE);
117148dedbc5dfa22d6db30b28ae9ede139206af429Tadashi G. Takaoka            mAddToDictionaryStrip.setVisibility(VISIBLE);
1188a296e43c903a3377f28943ba4a59082ae7fe60aTadashi G. Takaoka            mImportantNoticeStrip.setVisibility(INVISIBLE);
1198a296e43c903a3377f28943ba4a59082ae7fe60aTadashi G. Takaoka        }
1208a296e43c903a3377f28943ba4a59082ae7fe60aTadashi G. Takaoka
1218a296e43c903a3377f28943ba4a59082ae7fe60aTadashi G. Takaoka        public void showImportantNoticeStrip() {
1228a296e43c903a3377f28943ba4a59082ae7fe60aTadashi G. Takaoka            mSuggestionsStrip.setVisibility(INVISIBLE);
1238a296e43c903a3377f28943ba4a59082ae7fe60aTadashi G. Takaoka            mAddToDictionaryStrip.setVisibility(INVISIBLE);
1248a296e43c903a3377f28943ba4a59082ae7fe60aTadashi G. Takaoka            mImportantNoticeStrip.setVisibility(VISIBLE);
125148dedbc5dfa22d6db30b28ae9ede139206af429Tadashi G. Takaoka        }
126148dedbc5dfa22d6db30b28ae9ede139206af429Tadashi G. Takaoka
127148dedbc5dfa22d6db30b28ae9ede139206af429Tadashi G. Takaoka        public boolean isShowingAddToDictionaryStrip() {
128148dedbc5dfa22d6db30b28ae9ede139206af429Tadashi G. Takaoka            return mAddToDictionaryStrip.getVisibility() == VISIBLE;
129148dedbc5dfa22d6db30b28ae9ede139206af429Tadashi G. Takaoka        }
130148dedbc5dfa22d6db30b28ae9ede139206af429Tadashi G. Takaoka    }
13174b6897a12ec603ef835aaa77a01f0c32f49aa1cTadashi G. Takaoka
132923bf41f853a544fd0d71fbf7dc90359ec35981The Android Open Source Project    /**
1334702671ea4feb0c79a879e2e3013afdd6ed800b1Tadashi G. Takaoka     * Construct a {@link SuggestionStripView} for showing suggestions to be picked by the user.
134923bf41f853a544fd0d71fbf7dc90359ec35981The Android Open Source Project     * @param context
135923bf41f853a544fd0d71fbf7dc90359ec35981The Android Open Source Project     * @param attrs
136923bf41f853a544fd0d71fbf7dc90359ec35981The Android Open Source Project     */
1373e5a3c18bebbfb56012383411b24ee81ffde09cbTadashi G. Takaoka    public SuggestionStripView(final Context context, final AttributeSet attrs) {
1384702671ea4feb0c79a879e2e3013afdd6ed800b1Tadashi G. Takaoka        this(context, attrs, R.attr.suggestionStripViewStyle);
13908a6f2aea71d998206c47c16dcda4eaa90f8c9eaTadashi G. Takaoka    }
14008a6f2aea71d998206c47c16dcda4eaa90f8c9eaTadashi G. Takaoka
1413e5a3c18bebbfb56012383411b24ee81ffde09cbTadashi G. Takaoka    public SuggestionStripView(final Context context, final AttributeSet attrs,
1423e5a3c18bebbfb56012383411b24ee81ffde09cbTadashi G. Takaoka            final int defStyle) {
143c412309b7a32308b1b0a175dafc13f90254353c5Tadashi G. Takaoka        super(context, attrs, defStyle);
144923bf41f853a544fd0d71fbf7dc90359ec35981The Android Open Source Project
14516713e5630b93fb5625df26745eb73271f189457Tadashi G. Takaoka        final LayoutInflater inflater = LayoutInflater.from(context);
146913e2aeef26f172d500a4ebfc644b5f47778841aTadashi G. Takaoka        inflater.inflate(R.layout.suggestions_strip, this);
14786e815a142c8aa13213151e381a8a24ef23073d3Tadashi G. Takaoka
148913e2aeef26f172d500a4ebfc644b5f47778841aTadashi G. Takaoka        mSuggestionsStrip = (ViewGroup)findViewById(R.id.suggestions_strip);
149148dedbc5dfa22d6db30b28ae9ede139206af429Tadashi G. Takaoka        mAddToDictionaryStrip = (ViewGroup)findViewById(R.id.add_to_dictionary_strip);
1508a296e43c903a3377f28943ba4a59082ae7fe60aTadashi G. Takaoka        mImportantNoticeStrip = findViewById(R.id.important_notice_strip);
1518a296e43c903a3377f28943ba4a59082ae7fe60aTadashi G. Takaoka        mStripVisibilityGroup = new StripVisibilityGroup(mSuggestionsStrip, mAddToDictionaryStrip,
1528a296e43c903a3377f28943ba4a59082ae7fe60aTadashi G. Takaoka                mImportantNoticeStrip);
153148dedbc5dfa22d6db30b28ae9ede139206af429Tadashi G. Takaoka
154a1ed211c4e80eb81ce399e0eaff88bbdf1e3199fJean Chalard        for (int pos = 0; pos < SuggestedWords.MAX_SUGGESTIONS; pos++) {
155c2ea3f7dd95e7e9dccc61ac2ef9b56b1db8e5b48Tadashi G. Takaoka            final TextView word = new TextView(context, null, R.attr.suggestionWordStyle);
1562442e779857e7eda253aadcb1c4dff5ccb3e53f4Tadashi G. Takaoka            word.setOnClickListener(this);
157ae5c736e37973e26b201d45ff6c139862a6e05cfTadashi G. Takaoka            word.setOnLongClickListener(this);
158500a9752b1e61885f37b0fb26f09dfdd65da4e5eTadashi G. Takaoka            mWordViews.add(word);
159913e2aeef26f172d500a4ebfc644b5f47778841aTadashi G. Takaoka            final View divider = inflater.inflate(R.layout.suggestion_divider, null);
160a1aab83a24e74cb0fad4b1c1e59b18d23ecbdad3Tadashi G. Takaoka            divider.setOnClickListener(this);
161500a9752b1e61885f37b0fb26f09dfdd65da4e5eTadashi G. Takaoka            mDividerViews.add(divider);
162c2ea3f7dd95e7e9dccc61ac2ef9b56b1db8e5b48Tadashi G. Takaoka            final TextView info = new TextView(context, null, R.attr.suggestionWordStyle);
163c2ea3f7dd95e7e9dccc61ac2ef9b56b1db8e5b48Tadashi G. Takaoka            info.setTextColor(Color.WHITE);
164c2ea3f7dd95e7e9dccc61ac2ef9b56b1db8e5b48Tadashi G. Takaoka            info.setTextSize(TypedValue.COMPLEX_UNIT_DIP, DEBUG_INFO_TEXT_SIZE_IN_DIP);
165c2ea3f7dd95e7e9dccc61ac2ef9b56b1db8e5b48Tadashi G. Takaoka            mDebugInfoViews.add(info);
166c9716b28ce438e06b5cacc07fc002944bcbe24a0Tadashi G. Takaoka        }
167179ada958b0bb46c6b9c8eb8b220d84dd3db855aTadashi G. Takaoka
168653603b7253d96c7fad674ed301de5bc8050b68cTadashi G. Takaoka        mLayoutHelper = new SuggestionStripLayoutHelper(
169500a9752b1e61885f37b0fb26f09dfdd65da4e5eTadashi G. Takaoka                context, attrs, defStyle, mWordViews, mDividerViews, mDebugInfoViews);
17029e7b7ed6ef88c3e10cc6469801fef87241c9cb5Tadashi G. Takaoka
17129e7b7ed6ef88c3e10cc6469801fef87241c9cb5Tadashi G. Takaoka        mMoreSuggestionsContainer = inflater.inflate(R.layout.more_suggestions, null);
17229e7b7ed6ef88c3e10cc6469801fef87241c9cb5Tadashi G. Takaoka        mMoreSuggestionsView = (MoreSuggestionsView)mMoreSuggestionsContainer
17329e7b7ed6ef88c3e10cc6469801fef87241c9cb5Tadashi G. Takaoka                .findViewById(R.id.more_suggestions_view);
17408ae0d5ca03ed455827e82222df249d1cafb5d71Tadashi G. Takaoka        mMoreSuggestionsBuilder = new MoreSuggestions.Builder(context, mMoreSuggestionsView);
175bfc1d732ac92fa1bd5b19ad9e7c71ce9a1f9dc00Tadashi G. Takaoka
17650e1073e11240fe51b3baf0e2ed80dac0d9f001dTadashi G. Takaoka        final Resources res = context.getResources();
17750e1073e11240fe51b3baf0e2ed80dac0d9f001dTadashi G. Takaoka        mMoreSuggestionsModalTolerance = res.getDimensionPixelOffset(
1782fa3693c264a4c150ac307d9bb7f6f8f18cc4ffcKen Wakasa                R.dimen.config_more_suggestions_modal_tolerance);
1793fc4ddec68b4f56f53ed6da80b5e44f38c085740Tadashi G. Takaoka        mMoreSuggestionsSlidingDetector = new GestureDetector(
1803fc4ddec68b4f56f53ed6da80b5e44f38c085740Tadashi G. Takaoka                context, mMoreSuggestionsSlidingListener);
181923bf41f853a544fd0d71fbf7dc90359ec35981The Android Open Source Project    }
182c9716b28ce438e06b5cacc07fc002944bcbe24a0Tadashi G. Takaoka
183923bf41f853a544fd0d71fbf7dc90359ec35981The Android Open Source Project    /**
184c97810693dfe83bf37c09f73c8d4b40f2ba8dddbTadashi G. Takaoka     * A connection back to the input method.
185923bf41f853a544fd0d71fbf7dc90359ec35981The Android Open Source Project     * @param listener
186923bf41f853a544fd0d71fbf7dc90359ec35981The Android Open Source Project     */
1873e5a3c18bebbfb56012383411b24ee81ffde09cbTadashi G. Takaoka    public void setListener(final Listener listener, final View inputView) {
188c97810693dfe83bf37c09f73c8d4b40f2ba8dddbTadashi G. Takaoka        mListener = listener;
189d9449ccf3ce9e5eabb022aed6a45bba680bce115Tadashi G. Takaoka        mMainKeyboardView = (MainKeyboardView)inputView.findViewById(R.id.keyboard_view);
190923bf41f853a544fd0d71fbf7dc90359ec35981The Android Open Source Project    }
191923bf41f853a544fd0d71fbf7dc90359ec35981The Android Open Source Project
192bcd30bf3e74c7c10d5b69a54cdf90c6b682a0747Tadashi G. Takaoka    public void setSuggestions(final SuggestedWords suggestedWords, final boolean isRtlLanguage) {
193e49bd1c43acad08f103b38430a8bbcba23f325b3Tadashi G. Takaoka        clear();
194bcd30bf3e74c7c10d5b69a54cdf90c6b682a0747Tadashi G. Takaoka        mStripVisibilityGroup.setLayoutDirection(isRtlLanguage);
195e79b1a83126b41e09a8ec0a8dbb751ae0e02c7f6Tadashi G. Takaoka        mSuggestedWords = suggestedWords;
1964f8a8f125e329b55e49d31a98b5368113440c755Tadashi G. Takaoka        mSuggestionsCountInStrip = mLayoutHelper.layoutAndReturnSuggestionCountInStrip(
1974f8a8f125e329b55e49d31a98b5368113440c755Tadashi G. Takaoka                mSuggestedWords, mSuggestionsStrip, this);
1989c3860ce461c3791891bf667edc77fe798c8d332Ken Wakasa        if (ProductionFlag.USES_DEVELOPMENT_ONLY_DIAGNOSTICS) {
1994702671ea4feb0c79a879e2e3013afdd6ed800b1Tadashi G. Takaoka            ResearchLogger.suggestionStripView_setSuggestions(mSuggestedWords);
200a9ca7867b5a7c0be115966211a05f5d460c8638cKurt Partridge        }
2018a296e43c903a3377f28943ba4a59082ae7fe60aTadashi G. Takaoka        mStripVisibilityGroup.showSuggestionsStrip();
20216713e5630b93fb5625df26745eb73271f189457Tadashi G. Takaoka    }
20374b6897a12ec603ef835aaa77a01f0c32f49aa1cTadashi G. Takaoka
204c160a3932f74fea72c5347798c001d4ae961864cKen Wakasa    public int setMoreSuggestionsHeight(final int remainingHeight) {
205c160a3932f74fea72c5347798c001d4ae961864cKen Wakasa        return mLayoutHelper.setMoreSuggestionsHeight(remainingHeight);
206c8b0e5797e20d3fa25d319a9709aabc9149f8ff9Tadashi G. Takaoka    }
207b47319867ef3834a222865b8cb6abe62962e70f7Tadashi G. Takaoka
208b00a1d0c0adbdfc507676772201e979e539a2801Amith Yamasani    public boolean isShowingAddToDictionaryHint() {
209148dedbc5dfa22d6db30b28ae9ede139206af429Tadashi G. Takaoka        return mStripVisibilityGroup.isShowingAddToDictionaryStrip();
210b00a1d0c0adbdfc507676772201e979e539a2801Amith Yamasani    }
211b00a1d0c0adbdfc507676772201e979e539a2801Amith Yamasani
2129b1a66843ddde552ea626a7b24c2c71ba23aa63aTadashi G. Takaoka    public void showAddToDictionaryHint(final String word) {
2139b1a66843ddde552ea626a7b24c2c71ba23aa63aTadashi G. Takaoka        mLayoutHelper.layoutAddToDictionaryHint(word, mAddToDictionaryStrip, getWidth());
214148dedbc5dfa22d6db30b28ae9ede139206af429Tadashi G. Takaoka        // {@link TextView#setTag()} is used to hold the word to be added to dictionary. The word
215148dedbc5dfa22d6db30b28ae9ede139206af429Tadashi G. Takaoka        // will be extracted at {@link #onClick(View)}.
216148dedbc5dfa22d6db30b28ae9ede139206af429Tadashi G. Takaoka        mAddToDictionaryStrip.setTag(word);
217148dedbc5dfa22d6db30b28ae9ede139206af429Tadashi G. Takaoka        mAddToDictionaryStrip.setOnClickListener(this);
218148dedbc5dfa22d6db30b28ae9ede139206af429Tadashi G. Takaoka        mStripVisibilityGroup.showAddToDictionaryStrip();
21966a787b953d703201c6b827abbee74e8cd9bb063Amith Yamasani    }
22066a787b953d703201c6b827abbee74e8cd9bb063Amith Yamasani
2216558253160e2039c87f424bd814f402ecd31de3bKen Wakasa    public boolean dismissAddToDictionaryHint() {
222c04bbc1ae9be81d25a356407c27a8e7fa22028bfTadashi G. Takaoka        if (isShowingAddToDictionaryHint()) {
223c04bbc1ae9be81d25a356407c27a8e7fa22028bfTadashi G. Takaoka            clear();
224c04bbc1ae9be81d25a356407c27a8e7fa22028bfTadashi G. Takaoka            return true;
225c04bbc1ae9be81d25a356407c27a8e7fa22028bfTadashi G. Takaoka        }
226c04bbc1ae9be81d25a356407c27a8e7fa22028bfTadashi G. Takaoka        return false;
2276558253160e2039c87f424bd814f402ecd31de3bKen Wakasa    }
2286558253160e2039c87f424bd814f402ecd31de3bKen Wakasa
2298dda9e480b6519ca57565c8aa507e14bff739b60Tadashi G. Takaoka    // This method checks if we should show the important notice (checks on permanent storage if
2308dda9e480b6519ca57565c8aa507e14bff739b60Tadashi G. Takaoka    // it has been shown once already or not, and if in the setup wizard). If applicable, it shows
2318dda9e480b6519ca57565c8aa507e14bff739b60Tadashi G. Takaoka    // the notice. In all cases, it returns true if it was shown, false otherwise.
232ce78a2d8ab7630cff509c2b21b4b11abd8db4795Tadashi G. Takaoka    public boolean maybeShowImportantNoticeTitle(final InputAttributes inputAttributes) {
233ce78a2d8ab7630cff509c2b21b4b11abd8db4795Tadashi G. Takaoka        if (!ImportantNoticeUtils.shouldShowImportantNotice(getContext(), inputAttributes)) {
2348dda9e480b6519ca57565c8aa507e14bff739b60Tadashi G. Takaoka            return false;
2358dda9e480b6519ca57565c8aa507e14bff739b60Tadashi G. Takaoka        }
2368dda9e480b6519ca57565c8aa507e14bff739b60Tadashi G. Takaoka        final int width = getWidth();
237affdd364232549d2062fc180f924f5b6496c26fdTadashi G. Takaoka        if (width <= 0) {
238affdd364232549d2062fc180f924f5b6496c26fdTadashi G. Takaoka            return false;
239affdd364232549d2062fc180f924f5b6496c26fdTadashi G. Takaoka        }
2401672ccbbb6167f434842093feaadc2bcd5634eabTadashi G. Takaoka        final String importantNoticeTitle = ImportantNoticeUtils.getNextImportantNoticeTitle(
2416abc852255072e9c5741a7d8f264bec99b0ce14eTadashi G. Takaoka                getContext());
2426abc852255072e9c5741a7d8f264bec99b0ce14eTadashi G. Takaoka        if (TextUtils.isEmpty(importantNoticeTitle)) {
2436abc852255072e9c5741a7d8f264bec99b0ce14eTadashi G. Takaoka            return false;
2446abc852255072e9c5741a7d8f264bec99b0ce14eTadashi G. Takaoka        }
2456abc852255072e9c5741a7d8f264bec99b0ce14eTadashi G. Takaoka        mLayoutHelper.layoutImportantNotice(mImportantNoticeStrip, width, importantNoticeTitle);
2468a296e43c903a3377f28943ba4a59082ae7fe60aTadashi G. Takaoka        mStripVisibilityGroup.showImportantNoticeStrip();
2478a296e43c903a3377f28943ba4a59082ae7fe60aTadashi G. Takaoka        mImportantNoticeStrip.setOnClickListener(this);
2488dda9e480b6519ca57565c8aa507e14bff739b60Tadashi G. Takaoka        return true;
2498a296e43c903a3377f28943ba4a59082ae7fe60aTadashi G. Takaoka    }
2508a296e43c903a3377f28943ba4a59082ae7fe60aTadashi G. Takaoka
251923bf41f853a544fd0d71fbf7dc90359ec35981The Android Open Source Project    public void clear() {
252913e2aeef26f172d500a4ebfc644b5f47778841aTadashi G. Takaoka        mSuggestionsStrip.removeAllViews();
2539ac6c9064d24a3a0e96db470bb76c997c51bb5c8Tadashi G. Takaoka        removeAllDebugInfoViews();
254148dedbc5dfa22d6db30b28ae9ede139206af429Tadashi G. Takaoka        mStripVisibilityGroup.showSuggestionsStrip();
25519dd753c0ccaea8dee71eeae7edc724c58c6f024Tadashi G. Takaoka        dismissMoreSuggestionsPanel();
256923bf41f853a544fd0d71fbf7dc90359ec35981The Android Open Source Project    }
257923bf41f853a544fd0d71fbf7dc90359ec35981The Android Open Source Project
2589ac6c9064d24a3a0e96db470bb76c997c51bb5c8Tadashi G. Takaoka    private void removeAllDebugInfoViews() {
2599ac6c9064d24a3a0e96db470bb76c997c51bb5c8Tadashi G. Takaoka        // The debug info views may be placed as children views of this {@link SuggestionStripView}.
2609ac6c9064d24a3a0e96db470bb76c997c51bb5c8Tadashi G. Takaoka        for (final View debugInfoView : mDebugInfoViews) {
2619ac6c9064d24a3a0e96db470bb76c997c51bb5c8Tadashi G. Takaoka            final ViewParent parent = debugInfoView.getParent();
2629ac6c9064d24a3a0e96db470bb76c997c51bb5c8Tadashi G. Takaoka            if (parent instanceof ViewGroup) {
2639ac6c9064d24a3a0e96db470bb76c997c51bb5c8Tadashi G. Takaoka                ((ViewGroup)parent).removeView(debugInfoView);
2649ac6c9064d24a3a0e96db470bb76c997c51bb5c8Tadashi G. Takaoka            }
2659ac6c9064d24a3a0e96db470bb76c997c51bb5c8Tadashi G. Takaoka        }
2669ac6c9064d24a3a0e96db470bb76c997c51bb5c8Tadashi G. Takaoka    }
2679ac6c9064d24a3a0e96db470bb76c997c51bb5c8Tadashi G. Takaoka
2686f7905ae757c30ac0f8080f025b88afc61a6f6b1Tadashi G. Takaoka    private final MoreSuggestionsListener mMoreSuggestionsListener = new MoreSuggestionsListener() {
26929e7b7ed6ef88c3e10cc6469801fef87241c9cb5Tadashi G. Takaoka        @Override
2706f7905ae757c30ac0f8080f025b88afc61a6f6b1Tadashi G. Takaoka        public void onSuggestionSelected(final int index, final SuggestedWordInfo wordInfo) {
2719310f42a36eabe99ed7dcd3b835d6cdaa3c6fdcaJean Chalard            mListener.pickSuggestionManually(index, wordInfo);
27219dd753c0ccaea8dee71eeae7edc724c58c6f024Tadashi G. Takaoka            dismissMoreSuggestionsPanel();
27329e7b7ed6ef88c3e10cc6469801fef87241c9cb5Tadashi G. Takaoka        }
27429e7b7ed6ef88c3e10cc6469801fef87241c9cb5Tadashi G. Takaoka
27529e7b7ed6ef88c3e10cc6469801fef87241c9cb5Tadashi G. Takaoka        @Override
27629e7b7ed6ef88c3e10cc6469801fef87241c9cb5Tadashi G. Takaoka        public void onCancelInput() {
27719dd753c0ccaea8dee71eeae7edc724c58c6f024Tadashi G. Takaoka            dismissMoreSuggestionsPanel();
27829e7b7ed6ef88c3e10cc6469801fef87241c9cb5Tadashi G. Takaoka        }
27929e7b7ed6ef88c3e10cc6469801fef87241c9cb5Tadashi G. Takaoka    };
28029e7b7ed6ef88c3e10cc6469801fef87241c9cb5Tadashi G. Takaoka
28129e7b7ed6ef88c3e10cc6469801fef87241c9cb5Tadashi G. Takaoka    private final MoreKeysPanel.Controller mMoreSuggestionsController =
28229e7b7ed6ef88c3e10cc6469801fef87241c9cb5Tadashi G. Takaoka            new MoreKeysPanel.Controller() {
28329e7b7ed6ef88c3e10cc6469801fef87241c9cb5Tadashi G. Takaoka        @Override
2840e08d70fe52737582b6c83dbf48aaf4d83063566Tadashi G. Takaoka        public void onDismissMoreKeysPanel(final MoreKeysPanel panel) {
2850e08d70fe52737582b6c83dbf48aaf4d83063566Tadashi G. Takaoka            mMainKeyboardView.onDismissMoreKeysPanel(panel);
286fa2d543785c52f639ad3157c57420f58a199c550Tom Ouyang        }
287fa2d543785c52f639ad3157c57420f58a199c550Tom Ouyang
288fa2d543785c52f639ad3157c57420f58a199c550Tom Ouyang        @Override
289a729377395967f7652d93992cbcf50cd2ff522d1Tadashi G. Takaoka        public void onShowMoreKeysPanel(final MoreKeysPanel panel) {
290d9449ccf3ce9e5eabb022aed6a45bba680bce115Tadashi G. Takaoka            mMainKeyboardView.onShowMoreKeysPanel(panel);
29129e7b7ed6ef88c3e10cc6469801fef87241c9cb5Tadashi G. Takaoka        }
292ac69ab400d1ea4f90b4ca24486d62212decf1069Tom Ouyang
293ac69ab400d1ea4f90b4ca24486d62212decf1069Tom Ouyang        @Override
2940e08d70fe52737582b6c83dbf48aaf4d83063566Tadashi G. Takaoka        public void onCancelMoreKeysPanel(final MoreKeysPanel panel) {
29519dd753c0ccaea8dee71eeae7edc724c58c6f024Tadashi G. Takaoka            dismissMoreSuggestionsPanel();
296ac69ab400d1ea4f90b4ca24486d62212decf1069Tom Ouyang        }
29729e7b7ed6ef88c3e10cc6469801fef87241c9cb5Tadashi G. Takaoka    };
29829e7b7ed6ef88c3e10cc6469801fef87241c9cb5Tadashi G. Takaoka
29919dd753c0ccaea8dee71eeae7edc724c58c6f024Tadashi G. Takaoka    public boolean isShowingMoreSuggestionPanel() {
30019dd753c0ccaea8dee71eeae7edc724c58c6f024Tadashi G. Takaoka        return mMoreSuggestionsView.isShowingInParent();
30119dd753c0ccaea8dee71eeae7edc724c58c6f024Tadashi G. Takaoka    }
30219dd753c0ccaea8dee71eeae7edc724c58c6f024Tadashi G. Takaoka
30319dd753c0ccaea8dee71eeae7edc724c58c6f024Tadashi G. Takaoka    public void dismissMoreSuggestionsPanel() {
30419dd753c0ccaea8dee71eeae7edc724c58c6f024Tadashi G. Takaoka        mMoreSuggestionsView.dismissMoreKeysPanel();
30519dd753c0ccaea8dee71eeae7edc724c58c6f024Tadashi G. Takaoka    }
30619dd753c0ccaea8dee71eeae7edc724c58c6f024Tadashi G. Takaoka
307e49bd1c43acad08f103b38430a8bbcba23f325b3Tadashi G. Takaoka    @Override
3083e5a3c18bebbfb56012383411b24ee81ffde09cbTadashi G. Takaoka    public boolean onLongClick(final View view) {
309ab16237e69061bb0aa7f882e48e5d93459c22ef3Tadashi G. Takaoka        AudioAndHapticFeedbackManager.getInstance().performHapticAndAudioFeedback(
3106f9105383a56c9ae15e35d3abf19c33d1efe5636Tadashi G. Takaoka                Constants.NOT_A_CODE, this);
3113fc4ddec68b4f56f53ed6da80b5e44f38c085740Tadashi G. Takaoka        return showMoreSuggestions();
3123fc4ddec68b4f56f53ed6da80b5e44f38c085740Tadashi G. Takaoka    }
3133fc4ddec68b4f56f53ed6da80b5e44f38c085740Tadashi G. Takaoka
3143e5a3c18bebbfb56012383411b24ee81ffde09cbTadashi G. Takaoka    boolean showMoreSuggestions() {
3157339a62a1368b632c0cedaf1d876a0e8590a47edTadashi G. Takaoka        final Keyboard parentKeyboard = KeyboardSwitcher.getInstance().getKeyboard();
3167339a62a1368b632c0cedaf1d876a0e8590a47edTadashi G. Takaoka        if (parentKeyboard == null) {
3177339a62a1368b632c0cedaf1d876a0e8590a47edTadashi G. Takaoka            return false;
318ae5c736e37973e26b201d45ff6c139862a6e05cfTadashi G. Takaoka        }
319653603b7253d96c7fad674ed301de5bc8050b68cTadashi G. Takaoka        final SuggestionStripLayoutHelper layoutHelper = mLayoutHelper;
320653603b7253d96c7fad674ed301de5bc8050b68cTadashi G. Takaoka        if (!layoutHelper.mMoreSuggestionsAvailable) {
3217339a62a1368b632c0cedaf1d876a0e8590a47edTadashi G. Takaoka            return false;
3227339a62a1368b632c0cedaf1d876a0e8590a47edTadashi G. Takaoka        }
3237339a62a1368b632c0cedaf1d876a0e8590a47edTadashi G. Takaoka        final int stripWidth = getWidth();
3247339a62a1368b632c0cedaf1d876a0e8590a47edTadashi G. Takaoka        final View container = mMoreSuggestionsContainer;
3257339a62a1368b632c0cedaf1d876a0e8590a47edTadashi G. Takaoka        final int maxWidth = stripWidth - container.getPaddingLeft() - container.getPaddingRight();
3267339a62a1368b632c0cedaf1d876a0e8590a47edTadashi G. Takaoka        final MoreSuggestions.Builder builder = mMoreSuggestionsBuilder;
3274f8a8f125e329b55e49d31a98b5368113440c755Tadashi G. Takaoka        builder.layout(mSuggestedWords, mSuggestionsCountInStrip, maxWidth,
328653603b7253d96c7fad674ed301de5bc8050b68cTadashi G. Takaoka                (int)(maxWidth * layoutHelper.mMinMoreSuggestionsWidth),
329653603b7253d96c7fad674ed301de5bc8050b68cTadashi G. Takaoka                layoutHelper.getMaxMoreSuggestionsRow(), parentKeyboard);
3307339a62a1368b632c0cedaf1d876a0e8590a47edTadashi G. Takaoka        mMoreSuggestionsView.setKeyboard(builder.build());
3317339a62a1368b632c0cedaf1d876a0e8590a47edTadashi G. Takaoka        container.measure(ViewGroup.LayoutParams.WRAP_CONTENT, ViewGroup.LayoutParams.WRAP_CONTENT);
3327339a62a1368b632c0cedaf1d876a0e8590a47edTadashi G. Takaoka
3337339a62a1368b632c0cedaf1d876a0e8590a47edTadashi G. Takaoka        final MoreKeysPanel moreKeysPanel = mMoreSuggestionsView;
3347339a62a1368b632c0cedaf1d876a0e8590a47edTadashi G. Takaoka        final int pointX = stripWidth / 2;
335653603b7253d96c7fad674ed301de5bc8050b68cTadashi G. Takaoka        final int pointY = -layoutHelper.mMoreSuggestionsBottomGap;
3367339a62a1368b632c0cedaf1d876a0e8590a47edTadashi G. Takaoka        moreKeysPanel.showMoreKeysPanel(this, mMoreSuggestionsController, pointX, pointY,
337fa2d543785c52f639ad3157c57420f58a199c550Tom Ouyang                mMoreSuggestionsListener);
3387339a62a1368b632c0cedaf1d876a0e8590a47edTadashi G. Takaoka        mOriginX = mLastX;
3397339a62a1368b632c0cedaf1d876a0e8590a47edTadashi G. Takaoka        mOriginY = mLastY;
3404f8a8f125e329b55e49d31a98b5368113440c755Tadashi G. Takaoka        for (int i = 0; i < mSuggestionsCountInStrip; i++) {
341500a9752b1e61885f37b0fb26f09dfdd65da4e5eTadashi G. Takaoka            mWordViews.get(i).setPressed(false);
3427339a62a1368b632c0cedaf1d876a0e8590a47edTadashi G. Takaoka        }
3437339a62a1368b632c0cedaf1d876a0e8590a47edTadashi G. Takaoka        return true;
344ae5c736e37973e26b201d45ff6c139862a6e05cfTadashi G. Takaoka    }
345ae5c736e37973e26b201d45ff6c139862a6e05cfTadashi G. Takaoka
346e32548f32d32bc2fbf07ccd373bc55ece80388ceTadashi G. Takaoka    // Working variables for {@link #onLongClick(View)} and
347e32548f32d32bc2fbf07ccd373bc55ece80388ceTadashi G. Takaoka    // {@link onInterceptTouchEvent(MotionEvent)}.
34850e1073e11240fe51b3baf0e2ed80dac0d9f001dTadashi G. Takaoka    private int mLastX;
34950e1073e11240fe51b3baf0e2ed80dac0d9f001dTadashi G. Takaoka    private int mLastY;
35050e1073e11240fe51b3baf0e2ed80dac0d9f001dTadashi G. Takaoka    private int mOriginX;
35150e1073e11240fe51b3baf0e2ed80dac0d9f001dTadashi G. Takaoka    private int mOriginY;
35250e1073e11240fe51b3baf0e2ed80dac0d9f001dTadashi G. Takaoka    private final int mMoreSuggestionsModalTolerance;
3533fc4ddec68b4f56f53ed6da80b5e44f38c085740Tadashi G. Takaoka    private final GestureDetector mMoreSuggestionsSlidingDetector;
3543fc4ddec68b4f56f53ed6da80b5e44f38c085740Tadashi G. Takaoka    private final GestureDetector.OnGestureListener mMoreSuggestionsSlidingListener =
3553fc4ddec68b4f56f53ed6da80b5e44f38c085740Tadashi G. Takaoka            new GestureDetector.SimpleOnGestureListener() {
3563fc4ddec68b4f56f53ed6da80b5e44f38c085740Tadashi G. Takaoka        @Override
3573fc4ddec68b4f56f53ed6da80b5e44f38c085740Tadashi G. Takaoka        public boolean onScroll(MotionEvent down, MotionEvent me, float deltaX, float deltaY) {
3583fc4ddec68b4f56f53ed6da80b5e44f38c085740Tadashi G. Takaoka            final float dy = me.getY() - down.getY();
3593fc4ddec68b4f56f53ed6da80b5e44f38c085740Tadashi G. Takaoka            if (deltaY > 0 && dy < 0) {
3603fc4ddec68b4f56f53ed6da80b5e44f38c085740Tadashi G. Takaoka                return showMoreSuggestions();
3613fc4ddec68b4f56f53ed6da80b5e44f38c085740Tadashi G. Takaoka            }
3623fc4ddec68b4f56f53ed6da80b5e44f38c085740Tadashi G. Takaoka            return false;
3633fc4ddec68b4f56f53ed6da80b5e44f38c085740Tadashi G. Takaoka        }
3643fc4ddec68b4f56f53ed6da80b5e44f38c085740Tadashi G. Takaoka    };
36550e1073e11240fe51b3baf0e2ed80dac0d9f001dTadashi G. Takaoka
366ae5c736e37973e26b201d45ff6c139862a6e05cfTadashi G. Takaoka    @Override
367e32548f32d32bc2fbf07ccd373bc55ece80388ceTadashi G. Takaoka    public boolean onInterceptTouchEvent(final MotionEvent me) {
36851c38a441a09a4920703e765cb26179e7a80f029Tadashi G. Takaoka        if (!mMoreSuggestionsView.isShowingInParent()) {
36950e1073e11240fe51b3baf0e2ed80dac0d9f001dTadashi G. Takaoka            mLastX = (int)me.getX();
37050e1073e11240fe51b3baf0e2ed80dac0d9f001dTadashi G. Takaoka            mLastY = (int)me.getY();
371e32548f32d32bc2fbf07ccd373bc55ece80388ceTadashi G. Takaoka            return mMoreSuggestionsSlidingDetector.onTouchEvent(me);
37229e7b7ed6ef88c3e10cc6469801fef87241c9cb5Tadashi G. Takaoka        }
3738ac6d505b7ceab020a4085b3dfbea5b47362b030Tadashi G. Takaoka
37429e7b7ed6ef88c3e10cc6469801fef87241c9cb5Tadashi G. Takaoka        final int action = me.getAction();
37529e7b7ed6ef88c3e10cc6469801fef87241c9cb5Tadashi G. Takaoka        final int index = me.getActionIndex();
3768ac6d505b7ceab020a4085b3dfbea5b47362b030Tadashi G. Takaoka        final int x = (int)me.getX(index);
3778ac6d505b7ceab020a4085b3dfbea5b47362b030Tadashi G. Takaoka        final int y = (int)me.getY(index);
378e32548f32d32bc2fbf07ccd373bc55ece80388ceTadashi G. Takaoka        if (Math.abs(x - mOriginX) >= mMoreSuggestionsModalTolerance
379e32548f32d32bc2fbf07ccd373bc55ece80388ceTadashi G. Takaoka                || mOriginY - y >= mMoreSuggestionsModalTolerance) {
380e32548f32d32bc2fbf07ccd373bc55ece80388ceTadashi G. Takaoka            // Decided to be in the sliding input mode only when the touch point has been moved
381e32548f32d32bc2fbf07ccd373bc55ece80388ceTadashi G. Takaoka            // upward. Further {@link MotionEvent}s will be delivered to
382e32548f32d32bc2fbf07ccd373bc55ece80388ceTadashi G. Takaoka            // {@link #onTouchEvent(MotionEvent)}.
38350e1073e11240fe51b3baf0e2ed80dac0d9f001dTadashi G. Takaoka            return true;
38450e1073e11240fe51b3baf0e2ed80dac0d9f001dTadashi G. Takaoka        }
38550e1073e11240fe51b3baf0e2ed80dac0d9f001dTadashi G. Takaoka
386e32548f32d32bc2fbf07ccd373bc55ece80388ceTadashi G. Takaoka        if (action == MotionEvent.ACTION_UP || action == MotionEvent.ACTION_POINTER_UP) {
387e32548f32d32bc2fbf07ccd373bc55ece80388ceTadashi G. Takaoka            // Decided to be in the modal input mode.
388e32548f32d32bc2fbf07ccd373bc55ece80388ceTadashi G. Takaoka            mMoreSuggestionsView.adjustVerticalCorrectionForModalMode();
389e32548f32d32bc2fbf07ccd373bc55ece80388ceTadashi G. Takaoka        }
390e32548f32d32bc2fbf07ccd373bc55ece80388ceTadashi G. Takaoka        return false;
391e32548f32d32bc2fbf07ccd373bc55ece80388ceTadashi G. Takaoka    }
392e32548f32d32bc2fbf07ccd373bc55ece80388ceTadashi G. Takaoka
393e32548f32d32bc2fbf07ccd373bc55ece80388ceTadashi G. Takaoka    @Override
394e32548f32d32bc2fbf07ccd373bc55ece80388ceTadashi G. Takaoka    public boolean onTouchEvent(final MotionEvent me) {
395e32548f32d32bc2fbf07ccd373bc55ece80388ceTadashi G. Takaoka        // In the sliding input mode. {@link MotionEvent} should be forwarded to
396e32548f32d32bc2fbf07ccd373bc55ece80388ceTadashi G. Takaoka        // {@link MoreSuggestionsView}.
397e32548f32d32bc2fbf07ccd373bc55ece80388ceTadashi G. Takaoka        final int index = me.getActionIndex();
398e32548f32d32bc2fbf07ccd373bc55ece80388ceTadashi G. Takaoka        final int x = (int)me.getX(index);
399e32548f32d32bc2fbf07ccd373bc55ece80388ceTadashi G. Takaoka        final int y = (int)me.getY(index);
40033482a9b9ccf605c63fab7c9b8273a240bbc2035Tadashi G. Takaoka        me.setLocation(mMoreSuggestionsView.translateX(x), mMoreSuggestionsView.translateY(y));
40133482a9b9ccf605c63fab7c9b8273a240bbc2035Tadashi G. Takaoka        mMoreSuggestionsView.onTouchEvent(me);
40229e7b7ed6ef88c3e10cc6469801fef87241c9cb5Tadashi G. Takaoka        return true;
40329e7b7ed6ef88c3e10cc6469801fef87241c9cb5Tadashi G. Takaoka    }
40429e7b7ed6ef88c3e10cc6469801fef87241c9cb5Tadashi G. Takaoka
40529e7b7ed6ef88c3e10cc6469801fef87241c9cb5Tadashi G. Takaoka    @Override
4063e5a3c18bebbfb56012383411b24ee81ffde09cbTadashi G. Takaoka    public void onClick(final View view) {
4078a296e43c903a3377f28943ba4a59082ae7fe60aTadashi G. Takaoka        if (view == mImportantNoticeStrip) {
4088a296e43c903a3377f28943ba4a59082ae7fe60aTadashi G. Takaoka            mListener.showImportantNoticeContents();
4098a296e43c903a3377f28943ba4a59082ae7fe60aTadashi G. Takaoka            return;
4108a296e43c903a3377f28943ba4a59082ae7fe60aTadashi G. Takaoka        }
411148dedbc5dfa22d6db30b28ae9ede139206af429Tadashi G. Takaoka        final Object tag = view.getTag();
412148dedbc5dfa22d6db30b28ae9ede139206af429Tadashi G. Takaoka        // {@link String} tag is set at {@link #showAddToDictionaryHint(String,CharSequence)}.
413148dedbc5dfa22d6db30b28ae9ede139206af429Tadashi G. Takaoka        if (tag instanceof String) {
414148dedbc5dfa22d6db30b28ae9ede139206af429Tadashi G. Takaoka            final String wordToSave = (String)tag;
415148dedbc5dfa22d6db30b28ae9ede139206af429Tadashi G. Takaoka            mListener.addWordToUserDictionary(wordToSave);
416717a8f50aec421f74e4d43432059c2fb41cb32c7Tadashi G. Takaoka            clear();
417717a8f50aec421f74e4d43432059c2fb41cb32c7Tadashi G. Takaoka            return;
418717a8f50aec421f74e4d43432059c2fb41cb32c7Tadashi G. Takaoka        }
419717a8f50aec421f74e4d43432059c2fb41cb32c7Tadashi G. Takaoka
420148dedbc5dfa22d6db30b28ae9ede139206af429Tadashi G. Takaoka        // {@link Integer} tag is set at
4219b570b5e62581f41c40c4558d95c77ad5896934cTadashi G. Takaoka        // {@link SuggestionStripLayoutHelper#setupWordViewsTextAndColor(SuggestedWords,int)} and
4229b570b5e62581f41c40c4558d95c77ad5896934cTadashi G. Takaoka        // {@link SuggestionStripLayoutHelper#layoutPunctuationSuggestions(SuggestedWords,ViewGroup}
423148dedbc5dfa22d6db30b28ae9ede139206af429Tadashi G. Takaoka        if (tag instanceof Integer) {
424148dedbc5dfa22d6db30b28ae9ede139206af429Tadashi G. Takaoka            final int index = (Integer) tag;
425148dedbc5dfa22d6db30b28ae9ede139206af429Tadashi G. Takaoka            if (index >= mSuggestedWords.size()) {
426148dedbc5dfa22d6db30b28ae9ede139206af429Tadashi G. Takaoka                return;
427148dedbc5dfa22d6db30b28ae9ede139206af429Tadashi G. Takaoka            }
428148dedbc5dfa22d6db30b28ae9ede139206af429Tadashi G. Takaoka            final SuggestedWordInfo wordInfo = mSuggestedWords.getInfo(index);
429148dedbc5dfa22d6db30b28ae9ede139206af429Tadashi G. Takaoka            mListener.pickSuggestionManually(index, wordInfo);
430500a9752b1e61885f37b0fb26f09dfdd65da4e5eTadashi G. Takaoka        }
431923bf41f853a544fd0d71fbf7dc90359ec35981The Android Open Source Project    }
43282411d47ba7e8133ed2390c6920945e139a738cesatok
4336ec55a1599c74150e82ea7e4371ec815f0d2df27Amith Yamasani    @Override
43473cd4c1428ac370e1c15c5f61b1ce499f0d4f4c7Tadashi G. Takaoka    protected void onDetachedFromWindow() {
4356ec55a1599c74150e82ea7e4371ec815f0d2df27Amith Yamasani        super.onDetachedFromWindow();
43619dd753c0ccaea8dee71eeae7edc724c58c6f024Tadashi G. Takaoka        dismissMoreSuggestionsPanel();
4376ec55a1599c74150e82ea7e4371ec815f0d2df27Amith Yamasani    }
4388dda9e480b6519ca57565c8aa507e14bff739b60Tadashi G. Takaoka
4398dda9e480b6519ca57565c8aa507e14bff739b60Tadashi G. Takaoka    @Override
440affdd364232549d2062fc180f924f5b6496c26fdTadashi G. Takaoka    protected void onSizeChanged(final int w, final int h, final int oldw, final int oldh) {
4418dda9e480b6519ca57565c8aa507e14bff739b60Tadashi G. Takaoka        // Called by the framework when the size is known. Show the important notice if applicable.
4428dda9e480b6519ca57565c8aa507e14bff739b60Tadashi G. Takaoka        // This may be overriden by showing suggestions later, if applicable.
443affdd364232549d2062fc180f924f5b6496c26fdTadashi G. Takaoka        if (oldw <= 0 && w > 0) {
444affdd364232549d2062fc180f924f5b6496c26fdTadashi G. Takaoka            maybeShowImportantNoticeTitle(Settings.getInstance().getCurrent().mInputAttributes);
445affdd364232549d2062fc180f924f5b6496c26fdTadashi G. Takaoka        }
4468dda9e480b6519ca57565c8aa507e14bff739b60Tadashi G. Takaoka    }
447923bf41f853a544fd0d71fbf7dc90359ec35981The Android Open Source Project}
448