blob: d04e9db37a4a96105b18d9157649fd471d853137 [file] [log] [blame]
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001/*
2 * Copyright (C) 2008 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17package android.app;
18
Amith Yamasani479ae0a2010-02-04 14:52:32 -080019
Amith Yamasanid25eb352010-03-10 21:09:28 -080020import android.content.BroadcastReceiver;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080021import android.content.ComponentName;
Bjorn Bringert444c7272009-07-06 21:32:50 +010022import android.content.Context;
23import android.content.Intent;
Amith Yamasanid25eb352010-03-10 21:09:28 -080024import android.content.IntentFilter;
Karl Rosaen875d50a2009-04-23 19:00:21 -070025import android.content.pm.ActivityInfo;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080026import android.content.pm.PackageManager;
Bjorn Bringertc1f40962009-04-29 13:08:39 +010027import android.content.pm.PackageManager.NameNotFoundException;
Amith Yamasanid25eb352010-03-10 21:09:28 -080028import android.content.res.Configuration;
Bjorn Bringert444c7272009-07-06 21:32:50 +010029import android.graphics.drawable.Drawable;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080030import android.net.Uri;
31import android.os.Bundle;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080032import android.speech.RecognizerIntent;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080033import android.text.InputType;
34import android.text.TextUtils;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080035import android.util.AttributeSet;
36import android.util.Log;
Adam Powell8abebcd2011-05-19 18:46:47 -070037import android.util.TypedValue;
38import android.view.ActionMode;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080039import android.view.Gravity;
40import android.view.KeyEvent;
Karl Rosaen875d50a2009-04-23 19:00:21 -070041import android.view.MotionEvent;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080042import android.view.View;
Karl Rosaen875d50a2009-04-23 19:00:21 -070043import android.view.ViewConfiguration;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080044import android.view.ViewGroup;
45import android.view.Window;
46import android.view.WindowManager;
Dianne Hackborna8f556e2009-03-24 20:47:50 -070047import android.view.inputmethod.InputMethodManager;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080048import android.widget.AutoCompleteTextView;
Bjorn Bringertda5c1bd2010-02-04 15:11:25 +000049import android.widget.ImageView;
Bjorn Bringert077357c2009-09-23 13:57:24 +010050import android.widget.LinearLayout;
Amith Yamasani968ec932010-12-02 14:00:47 -080051import android.widget.SearchView;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080052import android.widget.TextView;
Amith Yamasani968ec932010-12-02 14:00:47 -080053
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080054/**
Amith Yamasanie9ce3f02010-01-25 09:15:50 -080055 * Search dialog. This is controlled by the
56 * SearchManager and runs in the current foreground process.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080057 *
58 * @hide
59 */
Amith Yamasani968ec932010-12-02 14:00:47 -080060public class SearchDialog extends Dialog {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080061
62 // Debugging support
Karl Rosaen875d50a2009-04-23 19:00:21 -070063 private static final boolean DBG = false;
64 private static final String LOG_TAG = "SearchDialog";
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080065
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080066 private static final String INSTANCE_KEY_COMPONENT = "comp";
67 private static final String INSTANCE_KEY_APPDATA = "data";
Bjorn Bringertb0ae27f2009-06-23 13:47:31 +010068 private static final String INSTANCE_KEY_USER_QUERY = "uQry";
Amith Yamasani968ec932010-12-02 14:00:47 -080069
Mike LeBeau7df84612009-10-30 16:11:40 -070070 // The string used for privateImeOptions to identify to the IME that it should not show
71 // a microphone button since one already exists in the search dialog.
72 private static final String IME_OPTION_NO_MICROPHONE = "nm";
Bjorn Bringertb0ae27f2009-06-23 13:47:31 +010073
Mike LeBeau1fd73232009-04-27 19:12:05 -070074 private static final int SEARCH_PLATE_LEFT_PADDING_NON_GLOBAL = 7;
Bjorn Bringert444c7272009-07-06 21:32:50 +010075
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080076 // views & widgets
77 private TextView mBadgeLabel;
Bjorn Bringertda5c1bd2010-02-04 15:11:25 +000078 private ImageView mAppIcon;
Amith Yamasani968ec932010-12-02 14:00:47 -080079 private AutoCompleteTextView mSearchAutoComplete;
Karl Rosaen875d50a2009-04-23 19:00:21 -070080 private View mSearchPlate;
Amith Yamasani968ec932010-12-02 14:00:47 -080081 private SearchView mSearchView;
Romain Guyf4f70462009-06-26 16:55:54 -070082 private Drawable mWorkingSpinner;
Amith Yamasani24652982011-06-23 16:16:05 -070083 private View mCloseSearch;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080084
85 // interaction with searchable application
Karl Rosaen875d50a2009-04-23 19:00:21 -070086 private SearchableInfo mSearchable;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080087 private ComponentName mLaunchComponent;
88 private Bundle mAppSearchData;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080089 private Context mActivityContext;
90
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080091 // For voice searching
Bryan Mawhinneyf36740b2009-09-30 15:20:22 +010092 private final Intent mVoiceWebSearchIntent;
93 private final Intent mVoiceAppSearchIntent;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080094
Karl Rosaen875d50a2009-04-23 19:00:21 -070095 // The query entered by the user. This is not changed when selecting a suggestion
96 // that modifies the contents of the text field. But if the user then edits
97 // the suggestion, the resulting string is saved.
98 private String mUserQuery;
Satish Sampath662df0b2009-06-22 23:16:07 +010099
100 // Last known IME options value for the search edit text.
101 private int mSearchAutoCompleteImeOptions;
102
Amith Yamasani49860442010-03-17 20:54:10 -0700103 private BroadcastReceiver mConfChangeListener = new BroadcastReceiver() {
104 @Override
105 public void onReceive(Context context, Intent intent) {
106 if (intent.getAction().equals(Intent.ACTION_CONFIGURATION_CHANGED)) {
107 onConfigurationChanged();
108 }
109 }
110 };
111
Adam Powell8abebcd2011-05-19 18:46:47 -0700112 static int resolveDialogTheme(Context context) {
113 TypedValue outValue = new TypedValue();
114 context.getTheme().resolveAttribute(com.android.internal.R.attr.searchDialogTheme,
115 outValue, true);
116 return outValue.resourceId;
117 }
118
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800119 /**
120 * Constructor - fires it up and makes it look like the search UI.
121 *
122 * @param context Application Context we can use for system acess
123 */
Amith Yamasanie9ce3f02010-01-25 09:15:50 -0800124 public SearchDialog(Context context, SearchManager searchManager) {
Adam Powell8abebcd2011-05-19 18:46:47 -0700125 super(context, resolveDialogTheme(context));
Bryan Mawhinneyf36740b2009-09-30 15:20:22 +0100126
127 // Save voice intent for later queries/launching
128 mVoiceWebSearchIntent = new Intent(RecognizerIntent.ACTION_WEB_SEARCH);
129 mVoiceWebSearchIntent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
130 mVoiceWebSearchIntent.putExtra(RecognizerIntent.EXTRA_LANGUAGE_MODEL,
131 RecognizerIntent.LANGUAGE_MODEL_WEB_SEARCH);
132
133 mVoiceAppSearchIntent = new Intent(RecognizerIntent.ACTION_RECOGNIZE_SPEECH);
134 mVoiceAppSearchIntent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800135 }
136
137 /**
Bryan Mawhinneyf36740b2009-09-30 15:20:22 +0100138 * Create the search dialog and any resources that are used for the
139 * entire lifetime of the dialog.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800140 */
141 @Override
142 protected void onCreate(Bundle savedInstanceState) {
143 super.onCreate(savedInstanceState);
144
Bjorn Bringert8d17f3f2009-06-05 13:22:28 +0100145 Window theWindow = getWindow();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800146 WindowManager.LayoutParams lp = theWindow.getAttributes();
Romain Guy980a9382010-01-08 15:06:28 -0800147 lp.width = ViewGroup.LayoutParams.MATCH_PARENT;
Bjorn Bringert8d17f3f2009-06-05 13:22:28 +0100148 // taking up the whole window (even when transparent) is less than ideal,
149 // but necessary to show the popup window until the window manager supports
150 // having windows anchored by their parent but not clipped by them.
Romain Guy980a9382010-01-08 15:06:28 -0800151 lp.height = ViewGroup.LayoutParams.MATCH_PARENT;
Bjorn Bringert8d17f3f2009-06-05 13:22:28 +0100152 lp.gravity = Gravity.TOP | Gravity.FILL_HORIZONTAL;
Mike LeBeau98acd542009-05-07 19:04:39 -0700153 lp.softInputMode = WindowManager.LayoutParams.SOFT_INPUT_ADJUST_RESIZE;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800154 theWindow.setAttributes(lp);
155
Bryan Mawhinneyf36740b2009-09-30 15:20:22 +0100156 // Touching outside of the search dialog will dismiss it
157 setCanceledOnTouchOutside(true);
158 }
159
160 /**
161 * We recreate the dialog view each time it becomes visible so as to limit
162 * the scope of any problems with the contained resources.
163 */
164 private void createContentView() {
165 setContentView(com.android.internal.R.layout.search_bar);
166
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800167 // get the view elements for local access
Bjorn Bringert077357c2009-09-23 13:57:24 +0100168 SearchBar searchBar = (SearchBar) findViewById(com.android.internal.R.id.search_bar);
169 searchBar.setSearchDialog(this);
Amith Yamasani968ec932010-12-02 14:00:47 -0800170 mSearchView = (SearchView) findViewById(com.android.internal.R.id.search_view);
Amith Yamasanib4569fb2011-07-08 15:25:39 -0700171 mSearchView.setIconified(false);
Amith Yamasani968ec932010-12-02 14:00:47 -0800172 mSearchView.setOnCloseListener(mOnCloseListener);
Adam Powell01f21352011-01-20 18:30:10 -0800173 mSearchView.setOnQueryTextListener(mOnQueryChangeListener);
174 mSearchView.setOnSuggestionListener(mOnSuggestionSelectionListener);
Amith Yamasani6a7421b2011-07-27 11:55:53 -0700175 mSearchView.onActionViewExpanded();
Bjorn Bringert077357c2009-09-23 13:57:24 +0100176
Amith Yamasani24652982011-06-23 16:16:05 -0700177 mCloseSearch = findViewById(com.android.internal.R.id.closeButton);
178 mCloseSearch.setOnClickListener(new View.OnClickListener() {
179 @Override
180 public void onClick(View v) {
181 dismiss();
182 }
183 });
184
Amith Yamasani968ec932010-12-02 14:00:47 -0800185 // TODO: Move the badge logic to SearchView or move the badge to search_bar.xml
186 mBadgeLabel = (TextView) mSearchView.findViewById(com.android.internal.R.id.search_badge);
187 mSearchAutoComplete = (AutoCompleteTextView)
188 mSearchView.findViewById(com.android.internal.R.id.search_src_text);
Bjorn Bringertda5c1bd2010-02-04 15:11:25 +0000189 mAppIcon = (ImageView) findViewById(com.android.internal.R.id.search_app_icon);
Amith Yamasani968ec932010-12-02 14:00:47 -0800190 mSearchPlate = mSearchView.findViewById(com.android.internal.R.id.search_plate);
Romain Guyf4f70462009-06-26 16:55:54 -0700191 mWorkingSpinner = getContext().getResources().
Mike LeBeau1480eb22009-05-20 17:22:13 -0700192 getDrawable(com.android.internal.R.drawable.search_spinner);
Amith Yamasania40d7ec2011-07-01 13:50:04 -0700193 // TODO: Restore the spinner for slow suggestion lookups
194 // mSearchAutoComplete.setCompoundDrawablesWithIntrinsicBounds(
195 // null, null, mWorkingSpinner, null);
Bryan Mawhinneydfcbc042009-09-17 21:31:16 +0100196 setWorking(false);
197
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800198 // pre-hide all the extraneous elements
199 mBadgeLabel.setVisibility(View.GONE);
200
201 // Additional adjustments to make Dialog work for Search
Satish Sampath662df0b2009-06-22 23:16:07 +0100202 mSearchAutoCompleteImeOptions = mSearchAutoComplete.getImeOptions();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800203 }
204
205 /**
206 * Set up the search dialog
207 *
Karl Rosaen875d50a2009-04-23 19:00:21 -0700208 * @return true if search dialog launched, false if not
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800209 */
210 public boolean show(String initialQuery, boolean selectInitialQuery,
Amith Yamasani479ae0a2010-02-04 14:52:32 -0800211 ComponentName componentName, Bundle appSearchData) {
212 boolean success = doShow(initialQuery, selectInitialQuery, componentName, appSearchData);
Satish Sampathfef8d3e2009-07-01 17:48:42 +0100213 if (success) {
214 // Display the drop down as soon as possible instead of waiting for the rest of the
215 // pending UI stuff to get done, so that things appear faster to the user.
216 mSearchAutoComplete.showDropDownAfterLayout();
217 }
218 return success;
Mike LeBeaub3aab692009-04-30 02:09:09 -0700219 }
Bjorn Bringertda1f4b62009-07-28 15:15:26 +0100220
Mike LeBeaub3aab692009-04-30 02:09:09 -0700221 /**
Amith Yamasani479ae0a2010-02-04 14:52:32 -0800222 * Does the rest of the work required to show the search dialog. Called by
223 * {@link #show(String, boolean, ComponentName, Bundle)} and
224 *
Mike LeBeaub3aab692009-04-30 02:09:09 -0700225 * @return true if search dialog showed, false if not
226 */
227 private boolean doShow(String initialQuery, boolean selectInitialQuery,
Amith Yamasani479ae0a2010-02-04 14:52:32 -0800228 ComponentName componentName, Bundle appSearchData) {
Karl Rosaen875d50a2009-04-23 19:00:21 -0700229 // set up the searchable and show the dialog
Amith Yamasani479ae0a2010-02-04 14:52:32 -0800230 if (!show(componentName, appSearchData)) {
Karl Rosaen875d50a2009-04-23 19:00:21 -0700231 return false;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800232 }
Mike LeBeaub3aab692009-04-30 02:09:09 -0700233
Karl Rosaen875d50a2009-04-23 19:00:21 -0700234 // finally, load the user's initial text (which may trigger suggestions)
235 setUserQuery(initialQuery);
236 if (selectInitialQuery) {
237 mSearchAutoComplete.selectAll();
238 }
Mike LeBeaub3aab692009-04-30 02:09:09 -0700239
Karl Rosaen875d50a2009-04-23 19:00:21 -0700240 return true;
241 }
Mike LeBeaub3aab692009-04-30 02:09:09 -0700242
Karl Rosaen875d50a2009-04-23 19:00:21 -0700243 /**
244 * Sets up the search dialog and shows it.
245 *
246 * @return <code>true</code> if search dialog launched
247 */
Amith Yamasani479ae0a2010-02-04 14:52:32 -0800248 private boolean show(ComponentName componentName, Bundle appSearchData) {
Karl Rosaen875d50a2009-04-23 19:00:21 -0700249
250 if (DBG) {
251 Log.d(LOG_TAG, "show(" + componentName + ", "
Amith Yamasani479ae0a2010-02-04 14:52:32 -0800252 + appSearchData + ")");
Karl Rosaen875d50a2009-04-23 19:00:21 -0700253 }
254
Bjorn Bringert8d153822009-06-22 10:31:44 +0100255 SearchManager searchManager = (SearchManager)
256 mContext.getSystemService(Context.SEARCH_SERVICE);
Amith Yamasani479ae0a2010-02-04 14:52:32 -0800257 // Try to get the searchable info for the provided component.
Bjorn Bringert6cf7a322010-02-23 13:17:06 +0000258 mSearchable = searchManager.getSearchableInfo(componentName);
Bjorn Bringertee716fa2009-07-16 09:15:37 +0100259
Bjorn Bringertee716fa2009-07-16 09:15:37 +0100260 if (mSearchable == null) {
Bjorn Bringertee716fa2009-07-16 09:15:37 +0100261 return false;
262 }
263
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800264 mLaunchComponent = componentName;
265 mAppSearchData = appSearchData;
Karl Rosaen875d50a2009-04-23 19:00:21 -0700266 mActivityContext = mSearchable.getActivityContext(getContext());
Bryan Mawhinneyf36740b2009-09-30 15:20:22 +0100267
Karl Rosaen875d50a2009-04-23 19:00:21 -0700268 // show the dialog. this will call onStart().
Bjorn Bringert11f09bb2009-10-05 21:00:53 +0100269 if (!isShowing()) {
270 // Recreate the search bar view every time the dialog is shown, to get rid
271 // of any bad state in the AutoCompleteTextView etc
272 createContentView();
Amith Yamasani968ec932010-12-02 14:00:47 -0800273 mSearchView.setSearchableInfo(mSearchable);
Amith Yamasani940ef382011-03-02 18:43:23 -0800274 mSearchView.setAppSearchData(mAppSearchData);
Bjorn Bringert11f09bb2009-10-05 21:00:53 +0100275
Karl Rosaen875d50a2009-04-23 19:00:21 -0700276 show();
277 }
Karl Rosaen875d50a2009-04-23 19:00:21 -0700278 updateUI();
Amith Yamasani49860442010-03-17 20:54:10 -0700279
Karl Rosaen875d50a2009-04-23 19:00:21 -0700280 return true;
281 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800282
Amith Yamasani49860442010-03-17 20:54:10 -0700283 @Override
284 public void onStart() {
285 super.onStart();
286
287 // Register a listener for configuration change events.
288 IntentFilter filter = new IntentFilter();
289 filter.addAction(Intent.ACTION_CONFIGURATION_CHANGED);
290 getContext().registerReceiver(mConfChangeListener, filter);
291 }
292
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800293 /**
294 * The search dialog is being dismissed, so handle all of the local shutdown operations.
295 *
296 * This function is designed to be idempotent so that dismiss() can be safely called at any time
297 * (even if already closed) and more likely to really dump any memory. No leaks!
298 */
299 @Override
300 public void onStop() {
301 super.onStop();
Bjorn Bringert444c7272009-07-06 21:32:50 +0100302
Amith Yamasani49860442010-03-17 20:54:10 -0700303 getContext().unregisterReceiver(mConfChangeListener);
304
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800305 // dump extra memory we're hanging on to
306 mLaunchComponent = null;
307 mAppSearchData = null;
308 mSearchable = null;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800309 mUserQuery = null;
Karl Rosaen875d50a2009-04-23 19:00:21 -0700310 }
Mike LeBeau1c690752009-05-20 20:20:26 -0700311
Mike LeBeau1c690752009-05-20 20:20:26 -0700312 /**
Mike LeBeau1480eb22009-05-20 17:22:13 -0700313 * Sets the search dialog to the 'working' state, which shows a working spinner in the
314 * right hand size of the text field.
315 *
316 * @param working true to show spinner, false to hide spinner
317 */
318 public void setWorking(boolean working) {
Bryan Mawhinneydfcbc042009-09-17 21:31:16 +0100319 mWorkingSpinner.setAlpha(working ? 255 : 0);
320 mWorkingSpinner.setVisible(working, false);
321 mWorkingSpinner.invalidateSelf();
Mike LeBeau1480eb22009-05-20 17:22:13 -0700322 }
Amith Yamasani479ae0a2010-02-04 14:52:32 -0800323
Mike LeBeau1480eb22009-05-20 17:22:13 -0700324 /**
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800325 * Save the minimal set of data necessary to recreate the search
326 *
Bjorn Bringert444c7272009-07-06 21:32:50 +0100327 * @return A bundle with the state of the dialog, or {@code null} if the search
328 * dialog is not showing.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800329 */
330 @Override
331 public Bundle onSaveInstanceState() {
Bjorn Bringert444c7272009-07-06 21:32:50 +0100332 if (!isShowing()) return null;
333
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800334 Bundle bundle = new Bundle();
Bjorn Bringert444c7272009-07-06 21:32:50 +0100335
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800336 // setup info so I can recreate this particular search
337 bundle.putParcelable(INSTANCE_KEY_COMPONENT, mLaunchComponent);
338 bundle.putBundle(INSTANCE_KEY_APPDATA, mAppSearchData);
Bjorn Bringertb0ae27f2009-06-23 13:47:31 +0100339 bundle.putString(INSTANCE_KEY_USER_QUERY, mUserQuery);
340
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800341 return bundle;
342 }
343
344 /**
345 * Restore the state of the dialog from a previously saved bundle.
Karl Rosaen875d50a2009-04-23 19:00:21 -0700346 *
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800347 * @param savedInstanceState The state of the dialog previously saved by
348 * {@link #onSaveInstanceState()}.
349 */
350 @Override
351 public void onRestoreInstanceState(Bundle savedInstanceState) {
Bjorn Bringert444c7272009-07-06 21:32:50 +0100352 if (savedInstanceState == null) return;
353
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800354 ComponentName launchComponent = savedInstanceState.getParcelable(INSTANCE_KEY_COMPONENT);
355 Bundle appSearchData = savedInstanceState.getBundle(INSTANCE_KEY_APPDATA);
Bjorn Bringertb0ae27f2009-06-23 13:47:31 +0100356 String userQuery = savedInstanceState.getString(INSTANCE_KEY_USER_QUERY);
357
Bjorn Bringertb0ae27f2009-06-23 13:47:31 +0100358 // show the dialog.
Amith Yamasani479ae0a2010-02-04 14:52:32 -0800359 if (!doShow(userQuery, false, launchComponent, appSearchData)) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800360 // for some reason, we couldn't re-instantiate
361 return;
362 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800363 }
Amith Yamasani968ec932010-12-02 14:00:47 -0800364
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800365 /**
Karl Rosaen875d50a2009-04-23 19:00:21 -0700366 * Called after resources have changed, e.g. after screen rotation or locale change.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800367 */
Bjorn Bringert444c7272009-07-06 21:32:50 +0100368 public void onConfigurationChanged() {
Amith Yamasani479ae0a2010-02-04 14:52:32 -0800369 if (mSearchable != null && isShowing()) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800370 // Redraw (resources may have changed)
Mike LeBeau1fd73232009-04-27 19:12:05 -0700371 updateSearchAppIcon();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800372 updateSearchBadge();
Amith Yamasanid25eb352010-03-10 21:09:28 -0800373 if (isLandscapeMode(getContext())) {
374 mSearchAutoComplete.ensureImeVisible(true);
375 }
Amith Yamasanid25eb352010-03-10 21:09:28 -0800376 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800377 }
Amith Yamasanid25eb352010-03-10 21:09:28 -0800378
379 static boolean isLandscapeMode(Context context) {
380 return context.getResources().getConfiguration().orientation
381 == Configuration.ORIENTATION_LANDSCAPE;
382 }
383
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800384 /**
Karl Rosaen875d50a2009-04-23 19:00:21 -0700385 * Update the UI according to the info in the current value of {@link #mSearchable}.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800386 */
Karl Rosaen875d50a2009-04-23 19:00:21 -0700387 private void updateUI() {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800388 if (mSearchable != null) {
Karl Rosaenea52d292009-07-20 09:26:10 -0700389 mDecor.setVisibility(View.VISIBLE);
Karl Rosaen875d50a2009-04-23 19:00:21 -0700390 updateSearchAutoComplete();
Mike LeBeau1fd73232009-04-27 19:12:05 -0700391 updateSearchAppIcon();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800392 updateSearchBadge();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800393
394 // In order to properly configure the input method (if one is being used), we
395 // need to let it know if we'll be providing suggestions. Although it would be
396 // difficult/expensive to know if every last detail has been configured properly, we
397 // can at least see if a suggestions provider has been configured, and use that
398 // as our trigger.
399 int inputType = mSearchable.getInputType();
400 // We only touch this if the input type is set up for text (which it almost certainly
401 // should be, in the case of search!)
402 if ((inputType & InputType.TYPE_MASK_CLASS) == InputType.TYPE_CLASS_TEXT) {
403 // The existence of a suggestions authority is the proxy for "suggestions
404 // are available here"
405 inputType &= ~InputType.TYPE_TEXT_FLAG_AUTO_COMPLETE;
406 if (mSearchable.getSuggestAuthority() != null) {
407 inputType |= InputType.TYPE_TEXT_FLAG_AUTO_COMPLETE;
408 }
409 }
Karl Rosaen875d50a2009-04-23 19:00:21 -0700410 mSearchAutoComplete.setInputType(inputType);
Satish Sampath662df0b2009-06-22 23:16:07 +0100411 mSearchAutoCompleteImeOptions = mSearchable.getImeOptions();
412 mSearchAutoComplete.setImeOptions(mSearchAutoCompleteImeOptions);
Mike LeBeau7df84612009-10-30 16:11:40 -0700413
414 // If the search dialog is going to show a voice search button, then don't let
415 // the soft keyboard display a microphone button if it would have otherwise.
416 if (mSearchable.getVoiceSearchEnabled()) {
417 mSearchAutoComplete.setPrivateImeOptions(IME_OPTION_NO_MICROPHONE);
418 } else {
419 mSearchAutoComplete.setPrivateImeOptions(null);
420 }
Karl Rosaen875d50a2009-04-23 19:00:21 -0700421 }
422 }
423
424 /**
425 * Updates the auto-complete text view.
426 */
427 private void updateSearchAutoComplete() {
Bjorn Bringert8d17f3f2009-06-05 13:22:28 +0100428 // we dismiss the entire dialog instead
429 mSearchAutoComplete.setDropDownDismissedOnCompletion(false);
Amith Yamasani968ec932010-12-02 14:00:47 -0800430 mSearchAutoComplete.setForceIgnoreOutsideTouch(false);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800431 }
432
Mike LeBeau1fd73232009-04-27 19:12:05 -0700433 private void updateSearchAppIcon() {
Amith Yamasani968ec932010-12-02 14:00:47 -0800434 PackageManager pm = getContext().getPackageManager();
435 Drawable icon;
436 try {
437 ActivityInfo info = pm.getActivityInfo(mLaunchComponent, 0);
438 icon = pm.getApplicationIcon(info.applicationInfo);
439 if (DBG)
440 Log.d(LOG_TAG, "Using app-specific icon");
441 } catch (NameNotFoundException e) {
442 icon = pm.getDefaultActivityIcon();
443 Log.w(LOG_TAG, mLaunchComponent + " not found, using generic app icon");
Mike LeBeau1fd73232009-04-27 19:12:05 -0700444 }
Amith Yamasani968ec932010-12-02 14:00:47 -0800445 mAppIcon.setImageDrawable(icon);
446 mAppIcon.setVisibility(View.VISIBLE);
447 mSearchPlate.setPadding(SEARCH_PLATE_LEFT_PADDING_NON_GLOBAL, mSearchPlate.getPaddingTop(), mSearchPlate.getPaddingRight(), mSearchPlate.getPaddingBottom());
Mike LeBeau1fd73232009-04-27 19:12:05 -0700448 }
449
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800450 /**
Karl Rosaen875d50a2009-04-23 19:00:21 -0700451 * Setup the search "Badge" if requested by mode flags.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800452 */
453 private void updateSearchBadge() {
454 // assume both hidden
455 int visibility = View.GONE;
456 Drawable icon = null;
Karl Rosaen875d50a2009-04-23 19:00:21 -0700457 CharSequence text = null;
Amith Yamasani968ec932010-12-02 14:00:47 -0800458
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800459 // optionally show one or the other.
Bjorn Bringerta9204132009-05-05 14:06:35 +0100460 if (mSearchable.useBadgeIcon()) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800461 icon = mActivityContext.getResources().getDrawable(mSearchable.getIconId());
462 visibility = View.VISIBLE;
Karl Rosaen875d50a2009-04-23 19:00:21 -0700463 if (DBG) Log.d(LOG_TAG, "Using badge icon: " + mSearchable.getIconId());
Bjorn Bringerta9204132009-05-05 14:06:35 +0100464 } else if (mSearchable.useBadgeLabel()) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800465 text = mActivityContext.getResources().getText(mSearchable.getLabelId()).toString();
466 visibility = View.VISIBLE;
Karl Rosaen875d50a2009-04-23 19:00:21 -0700467 if (DBG) Log.d(LOG_TAG, "Using badge label: " + mSearchable.getLabelId());
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800468 }
Amith Yamasani968ec932010-12-02 14:00:47 -0800469
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800470 mBadgeLabel.setCompoundDrawablesWithIntrinsicBounds(icon, null, null, null);
471 mBadgeLabel.setText(text);
472 mBadgeLabel.setVisibility(visibility);
473 }
474
Amith Yamasani479ae0a2010-02-04 14:52:32 -0800475 /*
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800476 * Listeners of various types
477 */
478
479 /**
Karl Rosaen875d50a2009-04-23 19:00:21 -0700480 * {@link Dialog#onTouchEvent(MotionEvent)} will cancel the dialog only when the
481 * touch is outside the window. But the window includes space for the drop-down,
482 * so we also cancel on taps outside the search bar when the drop-down is not showing.
483 */
484 @Override
485 public boolean onTouchEvent(MotionEvent event) {
486 // cancel if the drop-down is not showing and the touch event was outside the search plate
487 if (!mSearchAutoComplete.isPopupShowing() && isOutOfBounds(mSearchPlate, event)) {
488 if (DBG) Log.d(LOG_TAG, "Pop-up not showing and outside of search plate.");
489 cancel();
490 return true;
491 }
492 // Let Dialog handle events outside the window while the pop-up is showing.
493 return super.onTouchEvent(event);
494 }
Amith Yamasani968ec932010-12-02 14:00:47 -0800495
Karl Rosaen875d50a2009-04-23 19:00:21 -0700496 private boolean isOutOfBounds(View v, MotionEvent event) {
497 final int x = (int) event.getX();
498 final int y = (int) event.getY();
499 final int slop = ViewConfiguration.get(mContext).getScaledWindowTouchSlop();
500 return (x < -slop) || (y < -slop)
501 || (x > (v.getWidth()+slop))
502 || (y > (v.getHeight()+slop));
503 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800504
Dianne Hackborna8f556e2009-03-24 20:47:50 -0700505 @Override
Karl Rosaenea52d292009-07-20 09:26:10 -0700506 public void hide() {
Bjorn Bringert444c7272009-07-06 21:32:50 +0100507 if (!isShowing()) return;
508
Dianne Hackborna8f556e2009-03-24 20:47:50 -0700509 // We made sure the IME was displayed, so also make sure it is closed
510 // when we go away.
511 InputMethodManager imm = (InputMethodManager)getContext()
512 .getSystemService(Context.INPUT_METHOD_SERVICE);
513 if (imm != null) {
514 imm.hideSoftInputFromWindow(
515 getWindow().getDecorView().getWindowToken(), 0);
516 }
Karl Rosaenea52d292009-07-20 09:26:10 -0700517
518 super.hide();
Dianne Hackborna8f556e2009-03-24 20:47:50 -0700519 }
Karl Rosaen875d50a2009-04-23 19:00:21 -0700520
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800521 /**
Karl Rosaen875d50a2009-04-23 19:00:21 -0700522 * Launch a search for the text in the query text field.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800523 */
Amith Yamasani968ec932010-12-02 14:00:47 -0800524 public void launchQuerySearch() {
Karl Rosaen875d50a2009-04-23 19:00:21 -0700525 launchQuerySearch(KeyEvent.KEYCODE_UNKNOWN, null);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800526 }
527
528 /**
Karl Rosaen875d50a2009-04-23 19:00:21 -0700529 * Launch a search for the text in the query text field.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800530 *
Karl Rosaen875d50a2009-04-23 19:00:21 -0700531 * @param actionKey The key code of the action key that was pressed,
532 * or {@link KeyEvent#KEYCODE_UNKNOWN} if none.
533 * @param actionMsg The message for the action key that was pressed,
534 * or <code>null</code> if none.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800535 */
Amith Yamasani968ec932010-12-02 14:00:47 -0800536 protected void launchQuerySearch(int actionKey, String actionMsg) {
Karl Rosaen875d50a2009-04-23 19:00:21 -0700537 String query = mSearchAutoComplete.getText().toString();
Amith Yamasani479ae0a2010-02-04 14:52:32 -0800538 String action = Intent.ACTION_SEARCH;
Amith Yamasani968ec932010-12-02 14:00:47 -0800539 Intent intent = createIntent(action, null, null, query, actionKey, actionMsg);
Karl Rosaen875d50a2009-04-23 19:00:21 -0700540 launchIntent(intent);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800541 }
Karl Rosaena058f022009-06-01 23:11:44 +0100542
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800543 /**
Amith Yamasanie9ce3f02010-01-25 09:15:50 -0800544 * Launches an intent, including any special intent handling.
Karl Rosaen875d50a2009-04-23 19:00:21 -0700545 */
546 private void launchIntent(Intent intent) {
547 if (intent == null) {
548 return;
549 }
Karl Rosaenea52d292009-07-20 09:26:10 -0700550 Log.d(LOG_TAG, "launching " + intent);
Bjorn Bringert4899e382009-07-22 10:25:25 +0100551 try {
Amith Yamasani479ae0a2010-02-04 14:52:32 -0800552 // If the intent was created from a suggestion, it will always have an explicit
553 // component here.
Amith Yamasani479ae0a2010-02-04 14:52:32 -0800554 getContext().startActivity(intent);
555 // If the search switches to a different activity,
556 // SearchDialogWrapper#performActivityResuming
557 // will handle hiding the dialog when the next activity starts, but for
558 // real in-app search, we still need to dismiss the dialog.
559 dismiss();
Bjorn Bringert4899e382009-07-22 10:25:25 +0100560 } catch (RuntimeException ex) {
561 Log.e(LOG_TAG, "Failed launch activity: " + intent, ex);
Karl Rosaen876627d2009-07-20 14:30:55 -0700562 }
Karl Rosaen875d50a2009-04-23 19:00:21 -0700563 }
Bjorn Bringert4899e382009-07-22 10:25:25 +0100564
Bjorn Bringert4899e382009-07-22 10:25:25 +0100565 /**
Mike LeBeauae9760b2009-06-01 21:53:09 +0100566 * Sets the list item selection in the AutoCompleteTextView's ListView.
567 */
568 public void setListSelection(int index) {
569 mSearchAutoComplete.setListSelection(index);
570 }
Karl Rosaena058f022009-06-01 23:11:44 +0100571
Mike LeBeauae9760b2009-06-01 21:53:09 +0100572 /**
Karl Rosaen875d50a2009-04-23 19:00:21 -0700573 * Constructs an intent from the given information and the search dialog state.
574 *
575 * @param action Intent action.
576 * @param data Intent data, or <code>null</code>.
Karl Rosaen875d50a2009-04-23 19:00:21 -0700577 * @param extraData Data for {@link SearchManager#EXTRA_DATA_KEY} or <code>null</code>.
Satish Sampathbf23fe02009-06-15 23:47:56 +0100578 * @param query Intent query, or <code>null</code>.
Karl Rosaen875d50a2009-04-23 19:00:21 -0700579 * @param actionKey The key code of the action key that was pressed,
580 * or {@link KeyEvent#KEYCODE_UNKNOWN} if none.
581 * @param actionMsg The message for the action key that was pressed,
582 * or <code>null</code> if none.
Bjorn Bringertbe5b73c2009-09-21 23:05:23 +0100583 * @param mode The search mode, one of the acceptable values for
584 * {@link SearchManager#SEARCH_MODE}, or {@code null}.
Karl Rosaen875d50a2009-04-23 19:00:21 -0700585 * @return The intent.
586 */
Satish Sampathbf23fe02009-06-15 23:47:56 +0100587 private Intent createIntent(String action, Uri data, String extraData, String query,
Amith Yamasanie678f462010-09-15 16:13:43 -0700588 int actionKey, String actionMsg) {
Karl Rosaen875d50a2009-04-23 19:00:21 -0700589 // Now build the Intent
590 Intent intent = new Intent(action);
Bjorn Bringert8d17f3f2009-06-05 13:22:28 +0100591 intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
Bjorn Bringert442da482009-09-22 13:15:33 +0100592 // We need CLEAR_TOP to avoid reusing an old task that has other activities
Evan Millardc1396c2009-11-06 11:59:39 -0800593 // on top of the one we want. We don't want to do this in in-app search though,
594 // as it can be destructive to the activity stack.
Karl Rosaen875d50a2009-04-23 19:00:21 -0700595 if (data != null) {
596 intent.setData(data);
597 }
Bjorn Bringert5f806052009-06-24 12:02:26 +0100598 intent.putExtra(SearchManager.USER_QUERY, mUserQuery);
Karl Rosaen875d50a2009-04-23 19:00:21 -0700599 if (query != null) {
600 intent.putExtra(SearchManager.QUERY, query);
601 }
602 if (extraData != null) {
603 intent.putExtra(SearchManager.EXTRA_DATA_KEY, extraData);
604 }
605 if (mAppSearchData != null) {
606 intent.putExtra(SearchManager.APP_DATA, mAppSearchData);
607 }
608 if (actionKey != KeyEvent.KEYCODE_UNKNOWN) {
609 intent.putExtra(SearchManager.ACTION_KEY, actionKey);
610 intent.putExtra(SearchManager.ACTION_MSG, actionMsg);
611 }
Amith Yamasani479ae0a2010-02-04 14:52:32 -0800612 intent.setComponent(mSearchable.getSearchActivity());
Karl Rosaen875d50a2009-04-23 19:00:21 -0700613 return intent;
614 }
Amith Yamasani479ae0a2010-02-04 14:52:32 -0800615
Karl Rosaen875d50a2009-04-23 19:00:21 -0700616 /**
Bjorn Bringert077357c2009-09-23 13:57:24 +0100617 * The root element in the search bar layout. This is a custom view just to override
618 * the handling of the back button.
619 */
620 public static class SearchBar extends LinearLayout {
621
622 private SearchDialog mSearchDialog;
623
624 public SearchBar(Context context, AttributeSet attrs) {
625 super(context, attrs);
626 }
627
628 public SearchBar(Context context) {
629 super(context);
630 }
631
632 public void setSearchDialog(SearchDialog searchDialog) {
633 mSearchDialog = searchDialog;
634 }
635
636 /**
Adam Powell8abebcd2011-05-19 18:46:47 -0700637 * Don't allow action modes in a SearchBar, it looks silly.
638 */
639 @Override
640 public ActionMode startActionModeForChild(View child, ActionMode.Callback callback) {
641 return null;
642 }
Bjorn Bringert077357c2009-09-23 13:57:24 +0100643 }
644
Amith Yamasani968ec932010-12-02 14:00:47 -0800645 private boolean isEmpty(AutoCompleteTextView actv) {
646 return TextUtils.getTrimmedLength(actv.getText()) == 0;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800647 }
Bjorn Bringert87d61f22009-09-16 23:17:16 +0100648
649 @Override
650 public void onBackPressed() {
Bjorn Bringerta6309c32009-10-01 10:30:25 +0100651 // If the input method is covering the search dialog completely,
652 // e.g. in landscape mode with no hard keyboard, dismiss just the input method
653 InputMethodManager imm = (InputMethodManager)getContext()
654 .getSystemService(Context.INPUT_METHOD_SERVICE);
655 if (imm != null && imm.isFullscreenMode() &&
656 imm.hideSoftInputFromWindow(getWindow().getDecorView().getWindowToken(), 0)) {
657 return;
658 }
Amith Yamasani479ae0a2010-02-04 14:52:32 -0800659 // Close search dialog
660 cancel();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800661 }
Bjorn Bringert87d61f22009-09-16 23:17:16 +0100662
Amith Yamasani968ec932010-12-02 14:00:47 -0800663 private boolean onClosePressed() {
664 // Dismiss the dialog if close button is pressed when there's no query text
665 if (isEmpty(mSearchAutoComplete)) {
666 dismiss();
667 return true;
668 }
669
670 return false;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800671 }
Karl Rosaen875d50a2009-04-23 19:00:21 -0700672
Amith Yamasani968ec932010-12-02 14:00:47 -0800673 private final SearchView.OnCloseListener mOnCloseListener = new SearchView.OnCloseListener() {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800674
Amith Yamasani968ec932010-12-02 14:00:47 -0800675 public boolean onClose() {
676 return onClosePressed();
677 }
678 };
Karl Rosaen875d50a2009-04-23 19:00:21 -0700679
Adam Powell01f21352011-01-20 18:30:10 -0800680 private final SearchView.OnQueryTextListener mOnQueryChangeListener =
681 new SearchView.OnQueryTextListener() {
Amith Yamasani968ec932010-12-02 14:00:47 -0800682
Adam Powell01f21352011-01-20 18:30:10 -0800683 public boolean onQueryTextSubmit(String query) {
Amith Yamasani968ec932010-12-02 14:00:47 -0800684 dismiss();
685 return false;
686 }
687
Adam Powell01f21352011-01-20 18:30:10 -0800688 public boolean onQueryTextChange(String newText) {
Amith Yamasani968ec932010-12-02 14:00:47 -0800689 return false;
690 }
691 };
692
Adam Powell01f21352011-01-20 18:30:10 -0800693 private final SearchView.OnSuggestionListener mOnSuggestionSelectionListener =
694 new SearchView.OnSuggestionListener() {
Amith Yamasani968ec932010-12-02 14:00:47 -0800695
Adam Powell01f21352011-01-20 18:30:10 -0800696 public boolean onSuggestionSelect(int position) {
Amith Yamasani968ec932010-12-02 14:00:47 -0800697 return false;
698 }
699
Adam Powell01f21352011-01-20 18:30:10 -0800700 public boolean onSuggestionClick(int position) {
Amith Yamasani968ec932010-12-02 14:00:47 -0800701 dismiss();
702 return false;
703 }
704 };
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800705
706 /**
Amith Yamasani968ec932010-12-02 14:00:47 -0800707 * Sets the text in the query box, updating the suggestions.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800708 */
Amith Yamasani968ec932010-12-02 14:00:47 -0800709 private void setUserQuery(String query) {
710 if (query == null) {
711 query = "";
712 }
713 mUserQuery = query;
714 mSearchAutoComplete.setText(query);
715 mSearchAutoComplete.setSelection(query.length());
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800716 }
717}