SuggestionStripView.java revision 9ac6c9064d24a3a0e96db470bb76c997c51bb5c8
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;
21923bf41f853a544fd0d71fbf7dc90359ec35981The Android Open Source Projectimport android.util.AttributeSet;
223fc4ddec68b4f56f53ed6da80b5e44f38c085740Tadashi G. Takaokaimport android.view.GestureDetector;
23923bf41f853a544fd0d71fbf7dc90359ec35981The Android Open Source Projectimport android.view.LayoutInflater;
2429e7b7ed6ef88c3e10cc6469801fef87241c9cb5Tadashi G. Takaokaimport android.view.MotionEvent;
25923bf41f853a544fd0d71fbf7dc90359ec35981The Android Open Source Projectimport android.view.View;
26e49bd1c43acad08f103b38430a8bbcba23f325b3Tadashi G. Takaokaimport android.view.View.OnClickListener;
27ae5c736e37973e26b201d45ff6c139862a6e05cfTadashi G. Takaokaimport android.view.View.OnLongClickListener;
28e26ef1bccddc942fdaeada3409c8e8ff18a35008Tadashi G. Takaokaimport android.view.ViewGroup;
299ac6c9064d24a3a0e96db470bb76c997c51bb5c8Tadashi G. Takaokaimport android.view.ViewParent;
30c412309b7a32308b1b0a175dafc13f90254353c5Tadashi G. Takaokaimport android.widget.RelativeLayout;
31923bf41f853a544fd0d71fbf7dc90359ec35981The Android Open Source Projectimport android.widget.TextView;
32923bf41f853a544fd0d71fbf7dc90359ec35981The Android Open Source Project
337339a62a1368b632c0cedaf1d876a0e8590a47edTadashi G. Takaokaimport com.android.inputmethod.keyboard.Keyboard;
347339a62a1368b632c0cedaf1d876a0e8590a47edTadashi G. Takaokaimport com.android.inputmethod.keyboard.KeyboardSwitcher;
35d9449ccf3ce9e5eabb022aed6a45bba680bce115Tadashi G. Takaokaimport com.android.inputmethod.keyboard.MainKeyboardView;
3629e7b7ed6ef88c3e10cc6469801fef87241c9cb5Tadashi G. Takaokaimport com.android.inputmethod.keyboard.MoreKeysPanel;
376f9105383a56c9ae15e35d3abf19c33d1efe5636Tadashi G. Takaokaimport com.android.inputmethod.latin.AudioAndHapticFeedbackManager;
385faf41951929301af80026bc3191812ef874fd5aTadashi G. Takaokaimport com.android.inputmethod.latin.Constants;
398c3d5b6961a9b9d40c4bf21ad495f852971c24f4Tadashi G. Takaokaimport com.android.inputmethod.latin.LatinImeLogger;
408c3d5b6961a9b9d40c4bf21ad495f852971c24f4Tadashi G. Takaokaimport com.android.inputmethod.latin.R;
418c3d5b6961a9b9d40c4bf21ad495f852971c24f4Tadashi G. Takaokaimport com.android.inputmethod.latin.SuggestedWords;
429310f42a36eabe99ed7dcd3b835d6cdaa3c6fdcaJean Chalardimport com.android.inputmethod.latin.SuggestedWords.SuggestedWordInfo;
43a9ca7867b5a7c0be115966211a05f5d460c8638cKurt Partridgeimport com.android.inputmethod.latin.define.ProductionFlag;
446f7905ae757c30ac0f8080f025b88afc61a6f6b1Tadashi G. Takaokaimport com.android.inputmethod.latin.suggestions.MoreSuggestions.MoreSuggestionsListener;
45e28eba5074664d5716b8e58b8d0a235746b261ebKen Wakasaimport com.android.inputmethod.latin.utils.CollectionUtils;
466b966160ac8570271547bf63217efa5e228d4accKurt Partridgeimport com.android.inputmethod.research.ResearchLogger;
47ddb61ea461b920d87be4ad78c8a36eec1013b965Tadashi G. Takaoka
48179ada958b0bb46c6b9c8eb8b220d84dd3db855aTadashi G. Takaokaimport java.util.ArrayList;
49179ada958b0bb46c6b9c8eb8b220d84dd3db855aTadashi G. Takaoka
50a28a05e971cc242b338331a3b78276fa95188d19Tadashi G. Takaokapublic final class SuggestionStripView extends RelativeLayout implements OnClickListener,
51c412309b7a32308b1b0a175dafc13f90254353c5Tadashi G. Takaoka        OnLongClickListener {
52c97810693dfe83bf37c09f73c8d4b40f2ba8dddbTadashi G. Takaoka    public interface Listener {
5318d688c94bb8e1e26de2d12445cb3096c6126f75Jean Chalard        public void addWordToUserDictionary(String word);
549310f42a36eabe99ed7dcd3b835d6cdaa3c6fdcaJean Chalard        public void pickSuggestionManually(int index, SuggestedWordInfo word);
55c97810693dfe83bf37c09f73c8d4b40f2ba8dddbTadashi G. Takaoka    }
56c97810693dfe83bf37c09f73c8d4b40f2ba8dddbTadashi G. Takaoka
578c3d5b6961a9b9d40c4bf21ad495f852971c24f4Tadashi G. Takaoka    static final boolean DBG = LatinImeLogger.sDBG;
586f7218627eda110a8454053f8ecb7b80edfdc8cesatok
59913e2aeef26f172d500a4ebfc644b5f47778841aTadashi G. Takaoka    private final ViewGroup mSuggestionsStrip;
60148dedbc5dfa22d6db30b28ae9ede139206af429Tadashi G. Takaoka    private final ViewGroup mAddToDictionaryStrip;
61d9449ccf3ce9e5eabb022aed6a45bba680bce115Tadashi G. Takaoka    MainKeyboardView mMainKeyboardView;
6274b6897a12ec603ef835aaa77a01f0c32f49aa1cTadashi G. Takaoka
6329e7b7ed6ef88c3e10cc6469801fef87241c9cb5Tadashi G. Takaoka    private final View mMoreSuggestionsContainer;
6429e7b7ed6ef88c3e10cc6469801fef87241c9cb5Tadashi G. Takaoka    private final MoreSuggestionsView mMoreSuggestionsView;
6529e7b7ed6ef88c3e10cc6469801fef87241c9cb5Tadashi G. Takaoka    private final MoreSuggestions.Builder mMoreSuggestionsBuilder;
6629e7b7ed6ef88c3e10cc6469801fef87241c9cb5Tadashi G. Takaoka
67500a9752b1e61885f37b0fb26f09dfdd65da4e5eTadashi G. Takaoka    private final ArrayList<TextView> mWordViews = CollectionUtils.newArrayList();
68500a9752b1e61885f37b0fb26f09dfdd65da4e5eTadashi G. Takaoka    private final ArrayList<TextView> mDebugInfoViews = CollectionUtils.newArrayList();
69500a9752b1e61885f37b0fb26f09dfdd65da4e5eTadashi G. Takaoka    private final ArrayList<View> mDividerViews = CollectionUtils.newArrayList();
7074b6897a12ec603ef835aaa77a01f0c32f49aa1cTadashi G. Takaoka
713e5a3c18bebbfb56012383411b24ee81ffde09cbTadashi G. Takaoka    Listener mListener;
726f7905ae757c30ac0f8080f025b88afc61a6f6b1Tadashi G. Takaoka    private SuggestedWords mSuggestedWords = SuggestedWords.EMPTY;
736a6075caba3865383eeeb52cccc63a28e4ae5900Amith Yamasani
74653603b7253d96c7fad674ed301de5bc8050b68cTadashi G. Takaoka    private final SuggestionStripLayoutHelper mLayoutHelper;
75148dedbc5dfa22d6db30b28ae9ede139206af429Tadashi G. Takaoka    private final StripVisibilityGroup mStripVisibilityGroup;
76148dedbc5dfa22d6db30b28ae9ede139206af429Tadashi G. Takaoka
77148dedbc5dfa22d6db30b28ae9ede139206af429Tadashi G. Takaoka    private static class StripVisibilityGroup {
78148dedbc5dfa22d6db30b28ae9ede139206af429Tadashi G. Takaoka        private final View mSuggestionsStrip;
79148dedbc5dfa22d6db30b28ae9ede139206af429Tadashi G. Takaoka        private final View mAddToDictionaryStrip;
80148dedbc5dfa22d6db30b28ae9ede139206af429Tadashi G. Takaoka
81148dedbc5dfa22d6db30b28ae9ede139206af429Tadashi G. Takaoka        public StripVisibilityGroup(final View suggestionsStrip, final View addToDictionaryStrip) {
82148dedbc5dfa22d6db30b28ae9ede139206af429Tadashi G. Takaoka            mSuggestionsStrip = suggestionsStrip;
83148dedbc5dfa22d6db30b28ae9ede139206af429Tadashi G. Takaoka            mAddToDictionaryStrip = addToDictionaryStrip;
84148dedbc5dfa22d6db30b28ae9ede139206af429Tadashi G. Takaoka            showSuggestionsStrip();
85148dedbc5dfa22d6db30b28ae9ede139206af429Tadashi G. Takaoka        }
86148dedbc5dfa22d6db30b28ae9ede139206af429Tadashi G. Takaoka
87148dedbc5dfa22d6db30b28ae9ede139206af429Tadashi G. Takaoka        public void showSuggestionsStrip() {
88148dedbc5dfa22d6db30b28ae9ede139206af429Tadashi G. Takaoka            mSuggestionsStrip.setVisibility(VISIBLE);
89148dedbc5dfa22d6db30b28ae9ede139206af429Tadashi G. Takaoka            mAddToDictionaryStrip.setVisibility(INVISIBLE);
90148dedbc5dfa22d6db30b28ae9ede139206af429Tadashi G. Takaoka        }
91148dedbc5dfa22d6db30b28ae9ede139206af429Tadashi G. Takaoka
92148dedbc5dfa22d6db30b28ae9ede139206af429Tadashi G. Takaoka        public void showAddToDictionaryStrip() {
93148dedbc5dfa22d6db30b28ae9ede139206af429Tadashi G. Takaoka            mSuggestionsStrip.setVisibility(INVISIBLE);
94148dedbc5dfa22d6db30b28ae9ede139206af429Tadashi G. Takaoka            mAddToDictionaryStrip.setVisibility(VISIBLE);
95148dedbc5dfa22d6db30b28ae9ede139206af429Tadashi G. Takaoka        }
96148dedbc5dfa22d6db30b28ae9ede139206af429Tadashi G. Takaoka
97148dedbc5dfa22d6db30b28ae9ede139206af429Tadashi G. Takaoka        public boolean isShowingAddToDictionaryStrip() {
98148dedbc5dfa22d6db30b28ae9ede139206af429Tadashi G. Takaoka            return mAddToDictionaryStrip.getVisibility() == VISIBLE;
99148dedbc5dfa22d6db30b28ae9ede139206af429Tadashi G. Takaoka        }
100148dedbc5dfa22d6db30b28ae9ede139206af429Tadashi G. Takaoka    }
10174b6897a12ec603ef835aaa77a01f0c32f49aa1cTadashi G. Takaoka
102923bf41f853a544fd0d71fbf7dc90359ec35981The Android Open Source Project    /**
1034702671ea4feb0c79a879e2e3013afdd6ed800b1Tadashi G. Takaoka     * Construct a {@link SuggestionStripView} for showing suggestions to be picked by the user.
104923bf41f853a544fd0d71fbf7dc90359ec35981The Android Open Source Project     * @param context
105923bf41f853a544fd0d71fbf7dc90359ec35981The Android Open Source Project     * @param attrs
106923bf41f853a544fd0d71fbf7dc90359ec35981The Android Open Source Project     */
1073e5a3c18bebbfb56012383411b24ee81ffde09cbTadashi G. Takaoka    public SuggestionStripView(final Context context, final AttributeSet attrs) {
1084702671ea4feb0c79a879e2e3013afdd6ed800b1Tadashi G. Takaoka        this(context, attrs, R.attr.suggestionStripViewStyle);
10908a6f2aea71d998206c47c16dcda4eaa90f8c9eaTadashi G. Takaoka    }
11008a6f2aea71d998206c47c16dcda4eaa90f8c9eaTadashi G. Takaoka
1113e5a3c18bebbfb56012383411b24ee81ffde09cbTadashi G. Takaoka    public SuggestionStripView(final Context context, final AttributeSet attrs,
1123e5a3c18bebbfb56012383411b24ee81ffde09cbTadashi G. Takaoka            final int defStyle) {
113c412309b7a32308b1b0a175dafc13f90254353c5Tadashi G. Takaoka        super(context, attrs, defStyle);
114923bf41f853a544fd0d71fbf7dc90359ec35981The Android Open Source Project
11516713e5630b93fb5625df26745eb73271f189457Tadashi G. Takaoka        final LayoutInflater inflater = LayoutInflater.from(context);
116913e2aeef26f172d500a4ebfc644b5f47778841aTadashi G. Takaoka        inflater.inflate(R.layout.suggestions_strip, this);
11786e815a142c8aa13213151e381a8a24ef23073d3Tadashi G. Takaoka
118913e2aeef26f172d500a4ebfc644b5f47778841aTadashi G. Takaoka        mSuggestionsStrip = (ViewGroup)findViewById(R.id.suggestions_strip);
119148dedbc5dfa22d6db30b28ae9ede139206af429Tadashi G. Takaoka        mAddToDictionaryStrip = (ViewGroup)findViewById(R.id.add_to_dictionary_strip);
120148dedbc5dfa22d6db30b28ae9ede139206af429Tadashi G. Takaoka        mStripVisibilityGroup = new StripVisibilityGroup(mSuggestionsStrip, mAddToDictionaryStrip);
121148dedbc5dfa22d6db30b28ae9ede139206af429Tadashi G. Takaoka
122a1ed211c4e80eb81ce399e0eaff88bbdf1e3199fJean Chalard        for (int pos = 0; pos < SuggestedWords.MAX_SUGGESTIONS; pos++) {
123913e2aeef26f172d500a4ebfc644b5f47778841aTadashi G. Takaoka            final TextView word = (TextView)inflater.inflate(R.layout.suggestion_word, null);
1242442e779857e7eda253aadcb1c4dff5ccb3e53f4Tadashi G. Takaoka            word.setOnClickListener(this);
125ae5c736e37973e26b201d45ff6c139862a6e05cfTadashi G. Takaoka            word.setOnLongClickListener(this);
126500a9752b1e61885f37b0fb26f09dfdd65da4e5eTadashi G. Takaoka            mWordViews.add(word);
127913e2aeef26f172d500a4ebfc644b5f47778841aTadashi G. Takaoka            final View divider = inflater.inflate(R.layout.suggestion_divider, null);
128a1aab83a24e74cb0fad4b1c1e59b18d23ecbdad3Tadashi G. Takaoka            divider.setOnClickListener(this);
129500a9752b1e61885f37b0fb26f09dfdd65da4e5eTadashi G. Takaoka            mDividerViews.add(divider);
130500a9752b1e61885f37b0fb26f09dfdd65da4e5eTadashi G. Takaoka            mDebugInfoViews.add((TextView)inflater.inflate(R.layout.suggestion_info, null));
131c9716b28ce438e06b5cacc07fc002944bcbe24a0Tadashi G. Takaoka        }
132179ada958b0bb46c6b9c8eb8b220d84dd3db855aTadashi G. Takaoka
133653603b7253d96c7fad674ed301de5bc8050b68cTadashi G. Takaoka        mLayoutHelper = new SuggestionStripLayoutHelper(
134500a9752b1e61885f37b0fb26f09dfdd65da4e5eTadashi G. Takaoka                context, attrs, defStyle, mWordViews, mDividerViews, mDebugInfoViews);
13529e7b7ed6ef88c3e10cc6469801fef87241c9cb5Tadashi G. Takaoka
13629e7b7ed6ef88c3e10cc6469801fef87241c9cb5Tadashi G. Takaoka        mMoreSuggestionsContainer = inflater.inflate(R.layout.more_suggestions, null);
13729e7b7ed6ef88c3e10cc6469801fef87241c9cb5Tadashi G. Takaoka        mMoreSuggestionsView = (MoreSuggestionsView)mMoreSuggestionsContainer
13829e7b7ed6ef88c3e10cc6469801fef87241c9cb5Tadashi G. Takaoka                .findViewById(R.id.more_suggestions_view);
13908ae0d5ca03ed455827e82222df249d1cafb5d71Tadashi G. Takaoka        mMoreSuggestionsBuilder = new MoreSuggestions.Builder(context, mMoreSuggestionsView);
140bfc1d732ac92fa1bd5b19ad9e7c71ce9a1f9dc00Tadashi G. Takaoka
14150e1073e11240fe51b3baf0e2ed80dac0d9f001dTadashi G. Takaoka        final Resources res = context.getResources();
14250e1073e11240fe51b3baf0e2ed80dac0d9f001dTadashi G. Takaoka        mMoreSuggestionsModalTolerance = res.getDimensionPixelOffset(
1432fa3693c264a4c150ac307d9bb7f6f8f18cc4ffcKen Wakasa                R.dimen.config_more_suggestions_modal_tolerance);
1443fc4ddec68b4f56f53ed6da80b5e44f38c085740Tadashi G. Takaoka        mMoreSuggestionsSlidingDetector = new GestureDetector(
1453fc4ddec68b4f56f53ed6da80b5e44f38c085740Tadashi G. Takaoka                context, mMoreSuggestionsSlidingListener);
146923bf41f853a544fd0d71fbf7dc90359ec35981The Android Open Source Project    }
147c9716b28ce438e06b5cacc07fc002944bcbe24a0Tadashi G. Takaoka
148923bf41f853a544fd0d71fbf7dc90359ec35981The Android Open Source Project    /**
149c97810693dfe83bf37c09f73c8d4b40f2ba8dddbTadashi G. Takaoka     * A connection back to the input method.
150923bf41f853a544fd0d71fbf7dc90359ec35981The Android Open Source Project     * @param listener
151923bf41f853a544fd0d71fbf7dc90359ec35981The Android Open Source Project     */
1523e5a3c18bebbfb56012383411b24ee81ffde09cbTadashi G. Takaoka    public void setListener(final Listener listener, final View inputView) {
153c97810693dfe83bf37c09f73c8d4b40f2ba8dddbTadashi G. Takaoka        mListener = listener;
154d9449ccf3ce9e5eabb022aed6a45bba680bce115Tadashi G. Takaoka        mMainKeyboardView = (MainKeyboardView)inputView.findViewById(R.id.keyboard_view);
155923bf41f853a544fd0d71fbf7dc90359ec35981The Android Open Source Project    }
156923bf41f853a544fd0d71fbf7dc90359ec35981The Android Open Source Project
1573e5a3c18bebbfb56012383411b24ee81ffde09cbTadashi G. Takaoka    public void setSuggestions(final SuggestedWords suggestedWords) {
158e49bd1c43acad08f103b38430a8bbcba23f325b3Tadashi G. Takaoka        clear();
159e79b1a83126b41e09a8ec0a8dbb751ae0e02c7f6Tadashi G. Takaoka        mSuggestedWords = suggestedWords;
160500a9752b1e61885f37b0fb26f09dfdd65da4e5eTadashi G. Takaoka        mLayoutHelper.layout(mSuggestedWords, mSuggestionsStrip, this);
1619c3860ce461c3791891bf667edc77fe798c8d332Ken Wakasa        if (ProductionFlag.USES_DEVELOPMENT_ONLY_DIAGNOSTICS) {
1624702671ea4feb0c79a879e2e3013afdd6ed800b1Tadashi G. Takaoka            ResearchLogger.suggestionStripView_setSuggestions(mSuggestedWords);
163a9ca7867b5a7c0be115966211a05f5d460c8638cKurt Partridge        }
16416713e5630b93fb5625df26745eb73271f189457Tadashi G. Takaoka    }
16574b6897a12ec603ef835aaa77a01f0c32f49aa1cTadashi G. Takaoka
166c160a3932f74fea72c5347798c001d4ae961864cKen Wakasa    public int setMoreSuggestionsHeight(final int remainingHeight) {
167c160a3932f74fea72c5347798c001d4ae961864cKen Wakasa        return mLayoutHelper.setMoreSuggestionsHeight(remainingHeight);
168c8b0e5797e20d3fa25d319a9709aabc9149f8ff9Tadashi G. Takaoka    }
169b47319867ef3834a222865b8cb6abe62962e70f7Tadashi G. Takaoka
170b00a1d0c0adbdfc507676772201e979e539a2801Amith Yamasani    public boolean isShowingAddToDictionaryHint() {
171148dedbc5dfa22d6db30b28ae9ede139206af429Tadashi G. Takaoka        return mStripVisibilityGroup.isShowingAddToDictionaryStrip();
172b00a1d0c0adbdfc507676772201e979e539a2801Amith Yamasani    }
173b00a1d0c0adbdfc507676772201e979e539a2801Amith Yamasani
174bc464e2952e102219f0b977fc1e9140ad5bd03e4Tadashi G. Takaoka    public void showAddToDictionaryHint(final String word, final CharSequence hintText) {
175148dedbc5dfa22d6db30b28ae9ede139206af429Tadashi G. Takaoka        mLayoutHelper.layoutAddToDictionaryHint(word, mAddToDictionaryStrip, getWidth(), hintText);
176148dedbc5dfa22d6db30b28ae9ede139206af429Tadashi G. Takaoka        // {@link TextView#setTag()} is used to hold the word to be added to dictionary. The word
177148dedbc5dfa22d6db30b28ae9ede139206af429Tadashi G. Takaoka        // will be extracted at {@link #onClick(View)}.
178148dedbc5dfa22d6db30b28ae9ede139206af429Tadashi G. Takaoka        mAddToDictionaryStrip.setTag(word);
179148dedbc5dfa22d6db30b28ae9ede139206af429Tadashi G. Takaoka        mAddToDictionaryStrip.setOnClickListener(this);
180148dedbc5dfa22d6db30b28ae9ede139206af429Tadashi G. Takaoka        mStripVisibilityGroup.showAddToDictionaryStrip();
18166a787b953d703201c6b827abbee74e8cd9bb063Amith Yamasani    }
18266a787b953d703201c6b827abbee74e8cd9bb063Amith Yamasani
1836558253160e2039c87f424bd814f402ecd31de3bKen Wakasa    public boolean dismissAddToDictionaryHint() {
184c04bbc1ae9be81d25a356407c27a8e7fa22028bfTadashi G. Takaoka        if (isShowingAddToDictionaryHint()) {
185c04bbc1ae9be81d25a356407c27a8e7fa22028bfTadashi G. Takaoka            clear();
186c04bbc1ae9be81d25a356407c27a8e7fa22028bfTadashi G. Takaoka            return true;
187c04bbc1ae9be81d25a356407c27a8e7fa22028bfTadashi G. Takaoka        }
188c04bbc1ae9be81d25a356407c27a8e7fa22028bfTadashi G. Takaoka        return false;
1896558253160e2039c87f424bd814f402ecd31de3bKen Wakasa    }
1906558253160e2039c87f424bd814f402ecd31de3bKen Wakasa
191923bf41f853a544fd0d71fbf7dc90359ec35981The Android Open Source Project    public void clear() {
192913e2aeef26f172d500a4ebfc644b5f47778841aTadashi G. Takaoka        mSuggestionsStrip.removeAllViews();
1939ac6c9064d24a3a0e96db470bb76c997c51bb5c8Tadashi G. Takaoka        removeAllDebugInfoViews();
194148dedbc5dfa22d6db30b28ae9ede139206af429Tadashi G. Takaoka        mStripVisibilityGroup.showSuggestionsStrip();
19519dd753c0ccaea8dee71eeae7edc724c58c6f024Tadashi G. Takaoka        dismissMoreSuggestionsPanel();
196923bf41f853a544fd0d71fbf7dc90359ec35981The Android Open Source Project    }
197923bf41f853a544fd0d71fbf7dc90359ec35981The Android Open Source Project
1989ac6c9064d24a3a0e96db470bb76c997c51bb5c8Tadashi G. Takaoka    private void removeAllDebugInfoViews() {
1999ac6c9064d24a3a0e96db470bb76c997c51bb5c8Tadashi G. Takaoka        // The debug info views may be placed as children views of this {@link SuggestionStripView}.
2009ac6c9064d24a3a0e96db470bb76c997c51bb5c8Tadashi G. Takaoka        for (final View debugInfoView : mDebugInfoViews) {
2019ac6c9064d24a3a0e96db470bb76c997c51bb5c8Tadashi G. Takaoka            final ViewParent parent = debugInfoView.getParent();
2029ac6c9064d24a3a0e96db470bb76c997c51bb5c8Tadashi G. Takaoka            if (parent instanceof ViewGroup) {
2039ac6c9064d24a3a0e96db470bb76c997c51bb5c8Tadashi G. Takaoka                ((ViewGroup)parent).removeView(debugInfoView);
2049ac6c9064d24a3a0e96db470bb76c997c51bb5c8Tadashi G. Takaoka            }
2059ac6c9064d24a3a0e96db470bb76c997c51bb5c8Tadashi G. Takaoka        }
2069ac6c9064d24a3a0e96db470bb76c997c51bb5c8Tadashi G. Takaoka    }
2079ac6c9064d24a3a0e96db470bb76c997c51bb5c8Tadashi G. Takaoka
2086f7905ae757c30ac0f8080f025b88afc61a6f6b1Tadashi G. Takaoka    private final MoreSuggestionsListener mMoreSuggestionsListener = new MoreSuggestionsListener() {
20929e7b7ed6ef88c3e10cc6469801fef87241c9cb5Tadashi G. Takaoka        @Override
2106f7905ae757c30ac0f8080f025b88afc61a6f6b1Tadashi G. Takaoka        public void onSuggestionSelected(final int index, final SuggestedWordInfo wordInfo) {
2119310f42a36eabe99ed7dcd3b835d6cdaa3c6fdcaJean Chalard            mListener.pickSuggestionManually(index, wordInfo);
21219dd753c0ccaea8dee71eeae7edc724c58c6f024Tadashi G. Takaoka            dismissMoreSuggestionsPanel();
21329e7b7ed6ef88c3e10cc6469801fef87241c9cb5Tadashi G. Takaoka        }
21429e7b7ed6ef88c3e10cc6469801fef87241c9cb5Tadashi G. Takaoka
21529e7b7ed6ef88c3e10cc6469801fef87241c9cb5Tadashi G. Takaoka        @Override
21629e7b7ed6ef88c3e10cc6469801fef87241c9cb5Tadashi G. Takaoka        public void onCancelInput() {
21719dd753c0ccaea8dee71eeae7edc724c58c6f024Tadashi G. Takaoka            dismissMoreSuggestionsPanel();
21829e7b7ed6ef88c3e10cc6469801fef87241c9cb5Tadashi G. Takaoka        }
21929e7b7ed6ef88c3e10cc6469801fef87241c9cb5Tadashi G. Takaoka    };
22029e7b7ed6ef88c3e10cc6469801fef87241c9cb5Tadashi G. Takaoka
22129e7b7ed6ef88c3e10cc6469801fef87241c9cb5Tadashi G. Takaoka    private final MoreKeysPanel.Controller mMoreSuggestionsController =
22229e7b7ed6ef88c3e10cc6469801fef87241c9cb5Tadashi G. Takaoka            new MoreKeysPanel.Controller() {
22329e7b7ed6ef88c3e10cc6469801fef87241c9cb5Tadashi G. Takaoka        @Override
2240e08d70fe52737582b6c83dbf48aaf4d83063566Tadashi G. Takaoka        public void onDismissMoreKeysPanel(final MoreKeysPanel panel) {
2250e08d70fe52737582b6c83dbf48aaf4d83063566Tadashi G. Takaoka            mMainKeyboardView.onDismissMoreKeysPanel(panel);
226fa2d543785c52f639ad3157c57420f58a199c550Tom Ouyang        }
227fa2d543785c52f639ad3157c57420f58a199c550Tom Ouyang
228fa2d543785c52f639ad3157c57420f58a199c550Tom Ouyang        @Override
229a729377395967f7652d93992cbcf50cd2ff522d1Tadashi G. Takaoka        public void onShowMoreKeysPanel(final MoreKeysPanel panel) {
230d9449ccf3ce9e5eabb022aed6a45bba680bce115Tadashi G. Takaoka            mMainKeyboardView.onShowMoreKeysPanel(panel);
23129e7b7ed6ef88c3e10cc6469801fef87241c9cb5Tadashi G. Takaoka        }
232ac69ab400d1ea4f90b4ca24486d62212decf1069Tom Ouyang
233ac69ab400d1ea4f90b4ca24486d62212decf1069Tom Ouyang        @Override
2340e08d70fe52737582b6c83dbf48aaf4d83063566Tadashi G. Takaoka        public void onCancelMoreKeysPanel(final MoreKeysPanel panel) {
23519dd753c0ccaea8dee71eeae7edc724c58c6f024Tadashi G. Takaoka            dismissMoreSuggestionsPanel();
236ac69ab400d1ea4f90b4ca24486d62212decf1069Tom Ouyang        }
23729e7b7ed6ef88c3e10cc6469801fef87241c9cb5Tadashi G. Takaoka    };
23829e7b7ed6ef88c3e10cc6469801fef87241c9cb5Tadashi G. Takaoka
23919dd753c0ccaea8dee71eeae7edc724c58c6f024Tadashi G. Takaoka    public boolean isShowingMoreSuggestionPanel() {
24019dd753c0ccaea8dee71eeae7edc724c58c6f024Tadashi G. Takaoka        return mMoreSuggestionsView.isShowingInParent();
24119dd753c0ccaea8dee71eeae7edc724c58c6f024Tadashi G. Takaoka    }
24219dd753c0ccaea8dee71eeae7edc724c58c6f024Tadashi G. Takaoka
24319dd753c0ccaea8dee71eeae7edc724c58c6f024Tadashi G. Takaoka    public void dismissMoreSuggestionsPanel() {
24419dd753c0ccaea8dee71eeae7edc724c58c6f024Tadashi G. Takaoka        mMoreSuggestionsView.dismissMoreKeysPanel();
24519dd753c0ccaea8dee71eeae7edc724c58c6f024Tadashi G. Takaoka    }
24619dd753c0ccaea8dee71eeae7edc724c58c6f024Tadashi G. Takaoka
247e49bd1c43acad08f103b38430a8bbcba23f325b3Tadashi G. Takaoka    @Override
2483e5a3c18bebbfb56012383411b24ee81ffde09cbTadashi G. Takaoka    public boolean onLongClick(final View view) {
249ab16237e69061bb0aa7f882e48e5d93459c22ef3Tadashi G. Takaoka        AudioAndHapticFeedbackManager.getInstance().performHapticAndAudioFeedback(
2506f9105383a56c9ae15e35d3abf19c33d1efe5636Tadashi G. Takaoka                Constants.NOT_A_CODE, this);
2513fc4ddec68b4f56f53ed6da80b5e44f38c085740Tadashi G. Takaoka        return showMoreSuggestions();
2523fc4ddec68b4f56f53ed6da80b5e44f38c085740Tadashi G. Takaoka    }
2533fc4ddec68b4f56f53ed6da80b5e44f38c085740Tadashi G. Takaoka
2543e5a3c18bebbfb56012383411b24ee81ffde09cbTadashi G. Takaoka    boolean showMoreSuggestions() {
2557339a62a1368b632c0cedaf1d876a0e8590a47edTadashi G. Takaoka        final Keyboard parentKeyboard = KeyboardSwitcher.getInstance().getKeyboard();
2567339a62a1368b632c0cedaf1d876a0e8590a47edTadashi G. Takaoka        if (parentKeyboard == null) {
2577339a62a1368b632c0cedaf1d876a0e8590a47edTadashi G. Takaoka            return false;
258ae5c736e37973e26b201d45ff6c139862a6e05cfTadashi G. Takaoka        }
259653603b7253d96c7fad674ed301de5bc8050b68cTadashi G. Takaoka        final SuggestionStripLayoutHelper layoutHelper = mLayoutHelper;
260653603b7253d96c7fad674ed301de5bc8050b68cTadashi G. Takaoka        if (!layoutHelper.mMoreSuggestionsAvailable) {
2617339a62a1368b632c0cedaf1d876a0e8590a47edTadashi G. Takaoka            return false;
2627339a62a1368b632c0cedaf1d876a0e8590a47edTadashi G. Takaoka        }
2637339a62a1368b632c0cedaf1d876a0e8590a47edTadashi G. Takaoka        final int stripWidth = getWidth();
2647339a62a1368b632c0cedaf1d876a0e8590a47edTadashi G. Takaoka        final View container = mMoreSuggestionsContainer;
2657339a62a1368b632c0cedaf1d876a0e8590a47edTadashi G. Takaoka        final int maxWidth = stripWidth - container.getPaddingLeft() - container.getPaddingRight();
2667339a62a1368b632c0cedaf1d876a0e8590a47edTadashi G. Takaoka        final MoreSuggestions.Builder builder = mMoreSuggestionsBuilder;
267653603b7253d96c7fad674ed301de5bc8050b68cTadashi G. Takaoka        builder.layout(mSuggestedWords, layoutHelper.mSuggestionsCountInStrip, maxWidth,
268653603b7253d96c7fad674ed301de5bc8050b68cTadashi G. Takaoka                (int)(maxWidth * layoutHelper.mMinMoreSuggestionsWidth),
269653603b7253d96c7fad674ed301de5bc8050b68cTadashi G. Takaoka                layoutHelper.getMaxMoreSuggestionsRow(), parentKeyboard);
2707339a62a1368b632c0cedaf1d876a0e8590a47edTadashi G. Takaoka        mMoreSuggestionsView.setKeyboard(builder.build());
2717339a62a1368b632c0cedaf1d876a0e8590a47edTadashi G. Takaoka        container.measure(ViewGroup.LayoutParams.WRAP_CONTENT, ViewGroup.LayoutParams.WRAP_CONTENT);
2727339a62a1368b632c0cedaf1d876a0e8590a47edTadashi G. Takaoka
2737339a62a1368b632c0cedaf1d876a0e8590a47edTadashi G. Takaoka        final MoreKeysPanel moreKeysPanel = mMoreSuggestionsView;
2747339a62a1368b632c0cedaf1d876a0e8590a47edTadashi G. Takaoka        final int pointX = stripWidth / 2;
275653603b7253d96c7fad674ed301de5bc8050b68cTadashi G. Takaoka        final int pointY = -layoutHelper.mMoreSuggestionsBottomGap;
2767339a62a1368b632c0cedaf1d876a0e8590a47edTadashi G. Takaoka        moreKeysPanel.showMoreKeysPanel(this, mMoreSuggestionsController, pointX, pointY,
277fa2d543785c52f639ad3157c57420f58a199c550Tom Ouyang                mMoreSuggestionsListener);
2787339a62a1368b632c0cedaf1d876a0e8590a47edTadashi G. Takaoka        mMoreSuggestionsMode = MORE_SUGGESTIONS_CHECKING_MODAL_OR_SLIDING;
2797339a62a1368b632c0cedaf1d876a0e8590a47edTadashi G. Takaoka        mOriginX = mLastX;
2807339a62a1368b632c0cedaf1d876a0e8590a47edTadashi G. Takaoka        mOriginY = mLastY;
281653603b7253d96c7fad674ed301de5bc8050b68cTadashi G. Takaoka        for (int i = 0; i < layoutHelper.mSuggestionsCountInStrip; i++) {
282500a9752b1e61885f37b0fb26f09dfdd65da4e5eTadashi G. Takaoka            mWordViews.get(i).setPressed(false);
2837339a62a1368b632c0cedaf1d876a0e8590a47edTadashi G. Takaoka        }
2847339a62a1368b632c0cedaf1d876a0e8590a47edTadashi G. Takaoka        return true;
285ae5c736e37973e26b201d45ff6c139862a6e05cfTadashi G. Takaoka    }
286ae5c736e37973e26b201d45ff6c139862a6e05cfTadashi G. Takaoka
28750e1073e11240fe51b3baf0e2ed80dac0d9f001dTadashi G. Takaoka    // Working variables for onLongClick and dispatchTouchEvent.
288d7b00f34904c61f955e439160e2dbaa3a4b6983cTadashi G. Takaoka    private int mMoreSuggestionsMode = MORE_SUGGESTIONS_IN_MODAL_MODE;
289d7b00f34904c61f955e439160e2dbaa3a4b6983cTadashi G. Takaoka    private static final int MORE_SUGGESTIONS_IN_MODAL_MODE = 0;
290d7b00f34904c61f955e439160e2dbaa3a4b6983cTadashi G. Takaoka    private static final int MORE_SUGGESTIONS_CHECKING_MODAL_OR_SLIDING = 1;
291d7b00f34904c61f955e439160e2dbaa3a4b6983cTadashi G. Takaoka    private static final int MORE_SUGGESTIONS_IN_SLIDING_MODE = 2;
29250e1073e11240fe51b3baf0e2ed80dac0d9f001dTadashi G. Takaoka    private int mLastX;
29350e1073e11240fe51b3baf0e2ed80dac0d9f001dTadashi G. Takaoka    private int mLastY;
29450e1073e11240fe51b3baf0e2ed80dac0d9f001dTadashi G. Takaoka    private int mOriginX;
29550e1073e11240fe51b3baf0e2ed80dac0d9f001dTadashi G. Takaoka    private int mOriginY;
29650e1073e11240fe51b3baf0e2ed80dac0d9f001dTadashi G. Takaoka    private final int mMoreSuggestionsModalTolerance;
2973fc4ddec68b4f56f53ed6da80b5e44f38c085740Tadashi G. Takaoka    private final GestureDetector mMoreSuggestionsSlidingDetector;
2983fc4ddec68b4f56f53ed6da80b5e44f38c085740Tadashi G. Takaoka    private final GestureDetector.OnGestureListener mMoreSuggestionsSlidingListener =
2993fc4ddec68b4f56f53ed6da80b5e44f38c085740Tadashi G. Takaoka            new GestureDetector.SimpleOnGestureListener() {
3003fc4ddec68b4f56f53ed6da80b5e44f38c085740Tadashi G. Takaoka        @Override
3013fc4ddec68b4f56f53ed6da80b5e44f38c085740Tadashi G. Takaoka        public boolean onScroll(MotionEvent down, MotionEvent me, float deltaX, float deltaY) {
3023fc4ddec68b4f56f53ed6da80b5e44f38c085740Tadashi G. Takaoka            final float dy = me.getY() - down.getY();
3033fc4ddec68b4f56f53ed6da80b5e44f38c085740Tadashi G. Takaoka            if (deltaY > 0 && dy < 0) {
3043fc4ddec68b4f56f53ed6da80b5e44f38c085740Tadashi G. Takaoka                return showMoreSuggestions();
3053fc4ddec68b4f56f53ed6da80b5e44f38c085740Tadashi G. Takaoka            }
3063fc4ddec68b4f56f53ed6da80b5e44f38c085740Tadashi G. Takaoka            return false;
3073fc4ddec68b4f56f53ed6da80b5e44f38c085740Tadashi G. Takaoka        }
3083fc4ddec68b4f56f53ed6da80b5e44f38c085740Tadashi G. Takaoka    };
30950e1073e11240fe51b3baf0e2ed80dac0d9f001dTadashi G. Takaoka
310ae5c736e37973e26b201d45ff6c139862a6e05cfTadashi G. Takaoka    @Override
3113e5a3c18bebbfb56012383411b24ee81ffde09cbTadashi G. Takaoka    public boolean dispatchTouchEvent(final MotionEvent me) {
31251c38a441a09a4920703e765cb26179e7a80f029Tadashi G. Takaoka        if (!mMoreSuggestionsView.isShowingInParent()) {
31350e1073e11240fe51b3baf0e2ed80dac0d9f001dTadashi G. Takaoka            mLastX = (int)me.getX();
31450e1073e11240fe51b3baf0e2ed80dac0d9f001dTadashi G. Takaoka            mLastY = (int)me.getY();
3153fc4ddec68b4f56f53ed6da80b5e44f38c085740Tadashi G. Takaoka            if (mMoreSuggestionsSlidingDetector.onTouchEvent(me)) {
3163fc4ddec68b4f56f53ed6da80b5e44f38c085740Tadashi G. Takaoka                return true;
3173fc4ddec68b4f56f53ed6da80b5e44f38c085740Tadashi G. Takaoka            }
31829e7b7ed6ef88c3e10cc6469801fef87241c9cb5Tadashi G. Takaoka            return super.dispatchTouchEvent(me);
31929e7b7ed6ef88c3e10cc6469801fef87241c9cb5Tadashi G. Takaoka        }
3208ac6d505b7ceab020a4085b3dfbea5b47362b030Tadashi G. Takaoka
32129e7b7ed6ef88c3e10cc6469801fef87241c9cb5Tadashi G. Takaoka        final int action = me.getAction();
32229e7b7ed6ef88c3e10cc6469801fef87241c9cb5Tadashi G. Takaoka        final int index = me.getActionIndex();
3238ac6d505b7ceab020a4085b3dfbea5b47362b030Tadashi G. Takaoka        final int x = (int)me.getX(index);
3248ac6d505b7ceab020a4085b3dfbea5b47362b030Tadashi G. Takaoka        final int y = (int)me.getY(index);
3258ac6d505b7ceab020a4085b3dfbea5b47362b030Tadashi G. Takaoka
326d7b00f34904c61f955e439160e2dbaa3a4b6983cTadashi G. Takaoka        if (mMoreSuggestionsMode == MORE_SUGGESTIONS_CHECKING_MODAL_OR_SLIDING) {
32787104bace9cb9ed1a700f05a37743a21c2722fffTadashi G. Takaoka            if (Math.abs(x - mOriginX) >= mMoreSuggestionsModalTolerance
32887104bace9cb9ed1a700f05a37743a21c2722fffTadashi G. Takaoka                    || mOriginY - y >= mMoreSuggestionsModalTolerance) {
32987104bace9cb9ed1a700f05a37743a21c2722fffTadashi G. Takaoka                // Decided to be in the sliding input mode only when the touch point has been moved
33087104bace9cb9ed1a700f05a37743a21c2722fffTadashi G. Takaoka                // upward.
331d7b00f34904c61f955e439160e2dbaa3a4b6983cTadashi G. Takaoka                mMoreSuggestionsMode = MORE_SUGGESTIONS_IN_SLIDING_MODE;
33250e1073e11240fe51b3baf0e2ed80dac0d9f001dTadashi G. Takaoka            } else if (action == MotionEvent.ACTION_UP || action == MotionEvent.ACTION_POINTER_UP) {
33350e1073e11240fe51b3baf0e2ed80dac0d9f001dTadashi G. Takaoka                // Decided to be in the modal input mode
334d7b00f34904c61f955e439160e2dbaa3a4b6983cTadashi G. Takaoka                mMoreSuggestionsMode = MORE_SUGGESTIONS_IN_MODAL_MODE;
33551c38a441a09a4920703e765cb26179e7a80f029Tadashi G. Takaoka                mMoreSuggestionsView.adjustVerticalCorrectionForModalMode();
33650e1073e11240fe51b3baf0e2ed80dac0d9f001dTadashi G. Takaoka            }
33750e1073e11240fe51b3baf0e2ed80dac0d9f001dTadashi G. Takaoka            return true;
33850e1073e11240fe51b3baf0e2ed80dac0d9f001dTadashi G. Takaoka        }
33950e1073e11240fe51b3baf0e2ed80dac0d9f001dTadashi G. Takaoka
340d7b00f34904c61f955e439160e2dbaa3a4b6983cTadashi G. Takaoka        // MORE_SUGGESTIONS_IN_SLIDING_MODE
34133482a9b9ccf605c63fab7c9b8273a240bbc2035Tadashi G. Takaoka        me.setLocation(mMoreSuggestionsView.translateX(x), mMoreSuggestionsView.translateY(y));
34233482a9b9ccf605c63fab7c9b8273a240bbc2035Tadashi G. Takaoka        mMoreSuggestionsView.onTouchEvent(me);
34329e7b7ed6ef88c3e10cc6469801fef87241c9cb5Tadashi G. Takaoka        return true;
34429e7b7ed6ef88c3e10cc6469801fef87241c9cb5Tadashi G. Takaoka    }
34529e7b7ed6ef88c3e10cc6469801fef87241c9cb5Tadashi G. Takaoka
34629e7b7ed6ef88c3e10cc6469801fef87241c9cb5Tadashi G. Takaoka    @Override
3473e5a3c18bebbfb56012383411b24ee81ffde09cbTadashi G. Takaoka    public void onClick(final View view) {
348148dedbc5dfa22d6db30b28ae9ede139206af429Tadashi G. Takaoka        final Object tag = view.getTag();
349148dedbc5dfa22d6db30b28ae9ede139206af429Tadashi G. Takaoka        // {@link String} tag is set at {@link #showAddToDictionaryHint(String,CharSequence)}.
350148dedbc5dfa22d6db30b28ae9ede139206af429Tadashi G. Takaoka        if (tag instanceof String) {
351148dedbc5dfa22d6db30b28ae9ede139206af429Tadashi G. Takaoka            final String wordToSave = (String)tag;
352148dedbc5dfa22d6db30b28ae9ede139206af429Tadashi G. Takaoka            mListener.addWordToUserDictionary(wordToSave);
353717a8f50aec421f74e4d43432059c2fb41cb32c7Tadashi G. Takaoka            clear();
354717a8f50aec421f74e4d43432059c2fb41cb32c7Tadashi G. Takaoka            return;
355717a8f50aec421f74e4d43432059c2fb41cb32c7Tadashi G. Takaoka        }
356717a8f50aec421f74e4d43432059c2fb41cb32c7Tadashi G. Takaoka
357148dedbc5dfa22d6db30b28ae9ede139206af429Tadashi G. Takaoka        // {@link Integer} tag is set at
3589b570b5e62581f41c40c4558d95c77ad5896934cTadashi G. Takaoka        // {@link SuggestionStripLayoutHelper#setupWordViewsTextAndColor(SuggestedWords,int)} and
3599b570b5e62581f41c40c4558d95c77ad5896934cTadashi G. Takaoka        // {@link SuggestionStripLayoutHelper#layoutPunctuationSuggestions(SuggestedWords,ViewGroup}
360148dedbc5dfa22d6db30b28ae9ede139206af429Tadashi G. Takaoka        if (tag instanceof Integer) {
361148dedbc5dfa22d6db30b28ae9ede139206af429Tadashi G. Takaoka            final int index = (Integer) tag;
362148dedbc5dfa22d6db30b28ae9ede139206af429Tadashi G. Takaoka            if (index >= mSuggestedWords.size()) {
363148dedbc5dfa22d6db30b28ae9ede139206af429Tadashi G. Takaoka                return;
364148dedbc5dfa22d6db30b28ae9ede139206af429Tadashi G. Takaoka            }
365148dedbc5dfa22d6db30b28ae9ede139206af429Tadashi G. Takaoka            final SuggestedWordInfo wordInfo = mSuggestedWords.getInfo(index);
366148dedbc5dfa22d6db30b28ae9ede139206af429Tadashi G. Takaoka            mListener.pickSuggestionManually(index, wordInfo);
367500a9752b1e61885f37b0fb26f09dfdd65da4e5eTadashi G. Takaoka        }
368923bf41f853a544fd0d71fbf7dc90359ec35981The Android Open Source Project    }
36982411d47ba7e8133ed2390c6920945e139a738cesatok
3706ec55a1599c74150e82ea7e4371ec815f0d2df27Amith Yamasani    @Override
37173cd4c1428ac370e1c15c5f61b1ce499f0d4f4c7Tadashi G. Takaoka    protected void onDetachedFromWindow() {
3726ec55a1599c74150e82ea7e4371ec815f0d2df27Amith Yamasani        super.onDetachedFromWindow();
37319dd753c0ccaea8dee71eeae7edc724c58c6f024Tadashi G. Takaoka        dismissMoreSuggestionsPanel();
3746ec55a1599c74150e82ea7e4371ec815f0d2df27Amith Yamasani    }
375923bf41f853a544fd0d71fbf7dc90359ec35981The Android Open Source Project}
376