blob: 1e83bf06200e9c55ccfb28ad90216f114a398582 [file] [log] [blame]
The Android Open Source Project0c908882009-03-03 19:32:16 -08001/*
2 * Copyright (C) 2006 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 com.android.browser;
18
The Android Open Source Project0c908882009-03-03 19:32:16 -080019import android.app.Activity;
The Android Open Source Project0c908882009-03-03 19:32:16 -080020import android.app.AlertDialog;
21import android.app.ProgressDialog;
22import android.app.SearchManager;
23import android.content.ActivityNotFoundException;
24import android.content.BroadcastReceiver;
25import android.content.ComponentName;
Leon Scroggins58d56c62010-01-28 15:12:40 -050026import android.content.ContentProvider;
27import android.content.ContentProviderClient;
The Android Open Source Project0c908882009-03-03 19:32:16 -080028import android.content.ContentResolver;
Leon Scrogginsb6b7f9e2009-06-18 12:05:28 -040029import android.content.ContentUris;
The Android Open Source Project0c908882009-03-03 19:32:16 -080030import android.content.ContentValues;
31import android.content.Context;
32import android.content.DialogInterface;
33import android.content.Intent;
34import android.content.IntentFilter;
Grace Klobab4da0ad2009-05-14 14:45:40 -070035import android.content.pm.PackageInfo;
The Android Open Source Project0c908882009-03-03 19:32:16 -080036import android.content.pm.PackageManager;
37import android.content.pm.ResolveInfo;
The Android Open Source Project0c908882009-03-03 19:32:16 -080038import android.content.res.Configuration;
39import android.content.res.Resources;
40import android.database.Cursor;
Leon Scroggins96afcb12009-12-10 12:35:56 -050041import android.database.DatabaseUtils;
The Android Open Source Project0c908882009-03-03 19:32:16 -080042import android.graphics.Bitmap;
Andrei Popescu540035d2009-09-18 18:59:20 +010043import android.graphics.BitmapFactory;
The Android Open Source Project0c908882009-03-03 19:32:16 -080044import android.graphics.Canvas;
The Android Open Source Project0c908882009-03-03 19:32:16 -080045import android.graphics.Picture;
Leon Scroggins3bbb6ca2009-09-09 12:51:10 -040046import android.graphics.PixelFormat;
47import android.graphics.Rect;
The Android Open Source Project0c908882009-03-03 19:32:16 -080048import android.graphics.drawable.Drawable;
The Android Open Source Project0c908882009-03-03 19:32:16 -080049import android.net.ConnectivityManager;
Andrei Popescu56199cc2010-01-12 22:39:16 +000050import android.net.NetworkInfo;
The Android Open Source Project0c908882009-03-03 19:32:16 -080051import android.net.Uri;
52import android.net.WebAddress;
The Android Open Source Project0c908882009-03-03 19:32:16 -080053import android.net.http.SslCertificate;
54import android.net.http.SslError;
55import android.os.AsyncTask;
56import android.os.Bundle;
57import android.os.Debug;
58import android.os.Environment;
59import android.os.Handler;
The Android Open Source Project0c908882009-03-03 19:32:16 -080060import android.os.Message;
61import android.os.PowerManager;
62import android.os.Process;
The Android Open Source Project0c908882009-03-03 19:32:16 -080063import android.os.ServiceManager;
64import android.os.SystemClock;
The Android Open Source Project0c908882009-03-03 19:32:16 -080065import android.provider.Browser;
Cary Clark5e335a32009-09-22 14:53:11 -040066import android.provider.ContactsContract;
67import android.provider.ContactsContract.Intents.Insert;
The Android Open Source Project0c908882009-03-03 19:32:16 -080068import android.provider.Downloads;
69import android.provider.MediaStore;
Leon Scrogginsa1cc3fd2010-02-01 16:14:11 -050070import android.speech.RecognizerResultsIntent;
The Android Open Source Project0c908882009-03-03 19:32:16 -080071import android.text.IClipboard;
72import android.text.TextUtils;
73import android.text.format.DateFormat;
Leon Scrogginsb94bf272009-09-25 15:22:08 -040074import android.util.AttributeSet;
The Android Open Source Project0c908882009-03-03 19:32:16 -080075import android.util.Log;
76import android.view.ContextMenu;
77import android.view.Gravity;
78import android.view.KeyEvent;
79import android.view.LayoutInflater;
80import android.view.Menu;
81import android.view.MenuInflater;
82import android.view.MenuItem;
83import android.view.View;
84import android.view.ViewGroup;
85import android.view.Window;
86import android.view.WindowManager;
87import android.view.ContextMenu.ContextMenuInfo;
88import android.view.MenuItem.OnMenuItemClickListener;
The Android Open Source Project0c908882009-03-03 19:32:16 -080089import android.webkit.CookieManager;
90import android.webkit.CookieSyncManager;
91import android.webkit.DownloadListener;
92import android.webkit.HttpAuthHandler;
Grace Klobab4da0ad2009-05-14 14:45:40 -070093import android.webkit.PluginManager;
The Android Open Source Project0c908882009-03-03 19:32:16 -080094import android.webkit.SslErrorHandler;
95import android.webkit.URLUtil;
Leon Clarkecb6cc862009-09-29 18:35:13 +010096import android.webkit.ValueCallback;
The Android Open Source Project0c908882009-03-03 19:32:16 -080097import android.webkit.WebChromeClient;
98import android.webkit.WebHistoryItem;
99import android.webkit.WebIconDatabase;
100import android.webkit.WebView;
The Android Open Source Project0c908882009-03-03 19:32:16 -0800101import android.widget.EditText;
102import android.widget.FrameLayout;
103import android.widget.LinearLayout;
104import android.widget.TextView;
105import android.widget.Toast;
Fred Quintana752b6562009-12-18 10:18:26 -0800106import android.accounts.Account;
107import android.accounts.AccountManager;
108import android.accounts.AccountManagerFuture;
109import android.accounts.AuthenticatorException;
110import android.accounts.OperationCanceledException;
111import android.accounts.AccountManagerCallback;
The Android Open Source Project0c908882009-03-03 19:32:16 -0800112
Dan Egnor5ee906c2009-11-18 12:11:49 -0800113import com.android.common.Patterns;
Bjorn Bringert10d1cca2010-02-10 14:22:12 +0000114import com.android.common.Search;
Leon Scroggins1fe13a52010-02-09 15:31:26 -0500115import com.android.common.speech.LoggingEvents;
Dan Egnor5ee906c2009-11-18 12:11:49 -0800116
Doug Zongker716d4f52010-01-21 14:35:23 -0800117import com.google.android.gsf.GoogleLoginServiceConstants;
Dan Egnor5ee906c2009-11-18 12:11:49 -0800118
Leon Scrogginsb6b7f9e2009-06-18 12:05:28 -0400119import java.io.ByteArrayOutputStream;
The Android Open Source Project0c908882009-03-03 19:32:16 -0800120import java.io.File;
Ben Murdoch4f75ba22009-10-27 11:48:28 +0000121import java.io.IOException;
122import java.io.InputStream;
The Android Open Source Project0c908882009-03-03 19:32:16 -0800123import java.net.MalformedURLException;
124import java.net.URI;
Dianne Hackborn99189432009-06-17 18:06:18 -0700125import java.net.URISyntaxException;
The Android Open Source Project0c908882009-03-03 19:32:16 -0800126import java.net.URL;
127import java.net.URLEncoder;
128import java.text.ParseException;
129import java.util.Date;
The Android Open Source Project0c908882009-03-03 19:32:16 -0800130import java.util.HashMap;
Andrei Popescu30995e72010-02-09 16:59:58 +0000131import java.util.HashSet;
Grace Kloba00f54c52010-01-27 14:53:51 -0800132import java.util.Iterator;
Andrei Popescu30995e72010-02-09 16:59:58 +0000133import java.util.List;
Grace Kloba068e48b2010-01-26 18:11:27 -0800134import java.util.Map;
Andrei Popescu30995e72010-02-09 16:59:58 +0000135import java.util.Set;
The Android Open Source Project0c908882009-03-03 19:32:16 -0800136import java.util.regex.Matcher;
137import java.util.regex.Pattern;
The Android Open Source Project0c908882009-03-03 19:32:16 -0800138
139public class BrowserActivity extends Activity
Fred Quintana752b6562009-12-18 10:18:26 -0800140 implements View.OnCreateContextMenuListener, DownloadListener,
141 AccountManagerCallback<Account[]> {
The Android Open Source Project0c908882009-03-03 19:32:16 -0800142
Dave Bort31a6d1c2009-04-13 15:56:49 -0700143 /* Define some aliases to make these debugging flags easier to refer to.
144 * This file imports android.provider.Browser, so we can't just refer to "Browser.DEBUG".
145 */
146 private final static boolean DEBUG = com.android.browser.Browser.DEBUG;
147 private final static boolean LOGV_ENABLED = com.android.browser.Browser.LOGV_ENABLED;
148 private final static boolean LOGD_ENABLED = com.android.browser.Browser.LOGD_ENABLED;
149
Satish Sampath565505b2009-05-29 15:37:27 +0100150 // These are single-character shortcuts for searching popular sources.
151 private static final int SHORTCUT_INVALID = 0;
152 private static final int SHORTCUT_GOOGLE_SEARCH = 1;
153 private static final int SHORTCUT_WIKIPEDIA_SEARCH = 2;
154 private static final int SHORTCUT_DICTIONARY_SEARCH = 3;
155 private static final int SHORTCUT_GOOGLE_MOBILE_LOCAL_SEARCH = 4;
156
Fred Quintana752b6562009-12-18 10:18:26 -0800157 private Account[] mAccountsGoogle;
158 private Account[] mAccountsPreferHosted;
159
160 private void startReadOfGoogleAccounts() {
161 mAccountsGoogle = null;
162 mAccountsPreferHosted = null;
163
164 AccountManager.get(this).getAccountsByTypeAndFeatures(
165 GoogleLoginServiceConstants.ACCOUNT_TYPE,
166 new String[]{GoogleLoginServiceConstants.FEATURE_LEGACY_HOSTED_OR_GOOGLE},
167 this, null);
168 }
169
170 /** This implements AccountManagerCallback<Account[]> */
171 public void run(AccountManagerFuture<Account[]> accountManagerFuture) {
172 try {
173 if (mAccountsGoogle == null) {
174 mAccountsGoogle = accountManagerFuture.getResult();
175
176 AccountManager.get(this).getAccountsByTypeAndFeatures(
177 GoogleLoginServiceConstants.ACCOUNT_TYPE,
178 new String[]{GoogleLoginServiceConstants.FEATURE_LEGACY_GOOGLE},
179 this, null);
180 } else {
181 mAccountsPreferHosted = accountManagerFuture.getResult();
182 setupHomePage();
183 }
184 } catch (OperationCanceledException e) {
185 setupHomePage();
186 } catch (IOException e) {
187 setupHomePage();
188 } catch (AuthenticatorException e) {
189 setupHomePage();
190 }
191 }
192
The Android Open Source Project0c908882009-03-03 19:32:16 -0800193 private void setupHomePage() {
Fred Quintana752b6562009-12-18 10:18:26 -0800194 // get the default home page
195 String homepage = mSettings.getHomePage();
The Android Open Source Project0c908882009-03-03 19:32:16 -0800196
Fred Quintana752b6562009-12-18 10:18:26 -0800197 if (mAccountsPreferHosted != null && mAccountsGoogle != null) {
198 // three cases:
199 //
200 // hostedUser == googleUser
201 // The device has only a google account
202 //
203 // hostedUser != googleUser
204 // The device has a hosted account and a google account
205 //
206 // hostedUser != null, googleUser == null
207 // The device has only a hosted account (so far)
208 String hostedUser = mAccountsPreferHosted.length == 0
209 ? null
210 : mAccountsPreferHosted[0].name;
211 String googleUser = mAccountsGoogle.length == 0 ? null : mAccountsGoogle[0].name;
The Android Open Source Project0c908882009-03-03 19:32:16 -0800212
Fred Quintana752b6562009-12-18 10:18:26 -0800213 // developers might have no accounts at all
214 if (hostedUser == null) return;
Grace Klobaf2c5c1b2009-05-26 10:48:31 -0700215
Fred Quintana752b6562009-12-18 10:18:26 -0800216 if (googleUser == null || !hostedUser.equals(googleUser)) {
217 String domain = hostedUser.substring(hostedUser.lastIndexOf('@')+1);
218 homepage = homepage.replace("?", "/a/" + domain + "?");
The Android Open Source Project0c908882009-03-03 19:32:16 -0800219 }
Fred Quintana752b6562009-12-18 10:18:26 -0800220 }
The Android Open Source Project0c908882009-03-03 19:32:16 -0800221
Fred Quintana752b6562009-12-18 10:18:26 -0800222 mSettings.setHomePage(BrowserActivity.this, homepage);
223 resumeAfterCredentials();
The Android Open Source Project0c908882009-03-03 19:32:16 -0800224 }
225
Cary Clarka9771242009-08-11 16:42:26 -0400226 private static class ClearThumbnails extends AsyncTask<File, Void, Void> {
The Android Open Source Project0c908882009-03-03 19:32:16 -0800227 @Override
228 public Void doInBackground(File... files) {
229 if (files != null) {
230 for (File f : files) {
Cary Clarkd6be1752009-08-12 12:56:42 -0400231 if (!f.delete()) {
232 Log.e(LOGTAG, f.getPath() + " was not deleted");
233 }
The Android Open Source Project0c908882009-03-03 19:32:16 -0800234 }
235 }
236 return null;
237 }
238 }
239
Leon Scroggins3bbb6ca2009-09-09 12:51:10 -0400240 /**
241 * This layout holds everything you see below the status bar, including the
242 * error console, the custom view container, and the webviews.
243 */
244 private FrameLayout mBrowserFrameLayout;
Leon Scroggins81db3662009-06-04 17:45:11 -0400245
Grace Kloba22ac16e2009-10-07 18:00:23 -0700246 @Override
247 public void onCreate(Bundle icicle) {
Dave Bort31a6d1c2009-04-13 15:56:49 -0700248 if (LOGV_ENABLED) {
The Android Open Source Project0c908882009-03-03 19:32:16 -0800249 Log.v(LOGTAG, this + " onStart");
250 }
251 super.onCreate(icicle);
The Android Open Source Project0c908882009-03-03 19:32:16 -0800252 // test the browser in OpenGL
253 // requestWindowFeature(Window.FEATURE_OPENGL);
254
Mike Reedd334bf52010-01-26 15:21:44 -0500255 // enable this to test the browser in 32bit
256 if (false) {
257 getWindow().setFormat(PixelFormat.RGBX_8888);
258 BitmapFactory.setDefaultConfig(Bitmap.Config.ARGB_8888);
259 }
260
The Android Open Source Project0c908882009-03-03 19:32:16 -0800261 setDefaultKeyMode(DEFAULT_KEYS_SEARCH_LOCAL);
262
263 mResolver = getContentResolver();
264
Grace Kloba0923d692009-09-23 21:37:25 -0700265 // If this was a web search request, pass it on to the default web
266 // search provider and finish this activity.
267 if (handleWebSearchIntent(getIntent())) {
268 finish();
269 return;
270 }
271
The Android Open Source Project0c908882009-03-03 19:32:16 -0800272 mSecLockIcon = Resources.getSystem().getDrawable(
273 android.R.drawable.ic_secure);
274 mMixLockIcon = Resources.getSystem().getDrawable(
275 android.R.drawable.ic_partial_secure);
The Android Open Source Project0c908882009-03-03 19:32:16 -0800276
Leon Scroggins81db3662009-06-04 17:45:11 -0400277 FrameLayout frameLayout = (FrameLayout) getWindow().getDecorView()
278 .findViewById(com.android.internal.R.id.content);
Leon Scroggins3bbb6ca2009-09-09 12:51:10 -0400279 mBrowserFrameLayout = (FrameLayout) LayoutInflater.from(this)
280 .inflate(R.layout.custom_screen, null);
281 mContentView = (FrameLayout) mBrowserFrameLayout.findViewById(
282 R.id.main_content);
283 mErrorConsoleContainer = (LinearLayout) mBrowserFrameLayout
284 .findViewById(R.id.error_console);
285 mCustomViewContainer = (FrameLayout) mBrowserFrameLayout
286 .findViewById(R.id.fullscreen_custom_content);
287 frameLayout.addView(mBrowserFrameLayout, COVER_SCREEN_PARAMS);
Leon Scroggins68579392009-09-15 15:31:54 -0400288 mTitleBar = new TitleBar(this);
Leon Scrogginsfe87bd32009-10-06 10:10:00 -0400289 mFakeTitleBar = new TitleBar(this);
The Android Open Source Project0c908882009-03-03 19:32:16 -0800290
291 // Create the tab control and our initial tab
292 mTabControl = new TabControl(this);
293
294 // Open the icon database and retain all the bookmark urls for favicons
295 retainIconsOnStartup();
296
297 // Keep a settings instance handy.
298 mSettings = BrowserSettings.getInstance();
299 mSettings.setTabControl(mTabControl);
300 mSettings.loadFromDb(this);
301
302 PowerManager pm = (PowerManager) getSystemService(Context.POWER_SERVICE);
303 mWakeLock = pm.newWakeLock(PowerManager.PARTIAL_WAKE_LOCK, "Browser");
304
Grace Klobaa34f6862009-07-31 16:28:17 -0700305 /* enables registration for changes in network status from
306 http stack */
307 mNetworkStateChangedFilter = new IntentFilter();
308 mNetworkStateChangedFilter.addAction(
309 ConnectivityManager.CONNECTIVITY_ACTION);
310 mNetworkStateIntentReceiver = new BroadcastReceiver() {
311 @Override
312 public void onReceive(Context context, Intent intent) {
313 if (intent.getAction().equals(
314 ConnectivityManager.CONNECTIVITY_ACTION)) {
Robert Greenwalt7d899d62009-10-23 10:33:48 -0700315 boolean noConnectivity = intent.getBooleanExtra(
316 ConnectivityManager.EXTRA_NO_CONNECTIVITY, false);
Andrei Popescu56199cc2010-01-12 22:39:16 +0000317 if (!noConnectivity) {
318 NetworkInfo info = intent.getParcelableExtra(
319 ConnectivityManager.EXTRA_NETWORK_INFO);
320 String typeName = info.getTypeName();
321 String subtypeName = info.getSubtypeName();
322 sendNetworkType(typeName.toLowerCase(),
323 (subtypeName != null ? subtypeName.toLowerCase() : ""));
324 }
Robert Greenwalt7d899d62009-10-23 10:33:48 -0700325 onNetworkToggle(!noConnectivity);
Grace Klobaa34f6862009-07-31 16:28:17 -0700326 }
327 }
328 };
329
Grace Kloba615c6c92009-08-03 10:22:44 -0700330 IntentFilter filter = new IntentFilter(Intent.ACTION_PACKAGE_ADDED);
331 filter.addAction(Intent.ACTION_PACKAGE_REMOVED);
332 filter.addDataScheme("package");
333 mPackageInstallationReceiver = new BroadcastReceiver() {
334 @Override
335 public void onReceive(Context context, Intent intent) {
336 final String action = intent.getAction();
337 final String packageName = intent.getData()
338 .getSchemeSpecificPart();
339 final boolean replacing = intent.getBooleanExtra(
340 Intent.EXTRA_REPLACING, false);
341 if (Intent.ACTION_PACKAGE_REMOVED.equals(action) && replacing) {
342 // if it is replacing, refreshPlugins() when adding
343 return;
344 }
Andrei Popescu30995e72010-02-09 16:59:58 +0000345
346 if (sGoogleApps.contains(packageName)) {
347 BrowserActivity.this.packageChanged(packageName,
348 Intent.ACTION_PACKAGE_ADDED.equals(action));
349 }
350
Grace Kloba615c6c92009-08-03 10:22:44 -0700351 PackageManager pm = BrowserActivity.this.getPackageManager();
352 PackageInfo pkgInfo = null;
353 try {
354 pkgInfo = pm.getPackageInfo(packageName,
355 PackageManager.GET_PERMISSIONS);
356 } catch (PackageManager.NameNotFoundException e) {
357 return;
358 }
359 if (pkgInfo != null) {
360 String permissions[] = pkgInfo.requestedPermissions;
361 if (permissions == null) {
362 return;
363 }
364 boolean permissionOk = false;
365 for (String permit : permissions) {
366 if (PluginManager.PLUGIN_PERMISSION.equals(permit)) {
367 permissionOk = true;
368 break;
369 }
370 }
371 if (permissionOk) {
372 PluginManager.getInstance(BrowserActivity.this)
373 .refreshPlugins(
374 Intent.ACTION_PACKAGE_ADDED
375 .equals(action));
376 }
377 }
378 }
379 };
380 registerReceiver(mPackageInstallationReceiver, filter);
381
The Android Open Source Project0c908882009-03-03 19:32:16 -0800382 if (!mTabControl.restoreState(icicle)) {
383 // clear up the thumbnail directory if we can't restore the state as
384 // none of the files in the directory are referenced any more.
385 new ClearThumbnails().execute(
386 mTabControl.getThumbnailDir().listFiles());
Grace Klobaaab3f092009-07-30 12:29:51 -0700387 // there is no quit on Android. But if we can't restore the state,
388 // we can treat it as a new Browser, remove the old session cookies.
389 CookieManager.getInstance().removeSessionCookie();
The Android Open Source Project0c908882009-03-03 19:32:16 -0800390 final Intent intent = getIntent();
391 final Bundle extra = intent.getExtras();
392 // Create an initial tab.
393 // If the intent is ACTION_VIEW and data is not null, the Browser is
394 // invoked to view the content by another application. In this case,
395 // the tab will be close when exit.
Mitsuru Oshima25ad8ab2009-06-10 16:26:07 -0700396 UrlData urlData = getUrlDataFromIntent(intent);
397
Leon Scroggins58d56c62010-01-28 15:12:40 -0500398 String action = intent.getAction();
Grace Kloba22ac16e2009-10-07 18:00:23 -0700399 final Tab t = mTabControl.createNewTab(
Leon Scroggins58d56c62010-01-28 15:12:40 -0500400 (Intent.ACTION_VIEW.equals(action) &&
401 intent.getData() != null)
Leon Scrogginsa1cc3fd2010-02-01 16:14:11 -0500402 || RecognizerResultsIntent.ACTION_VOICE_SEARCH_RESULTS
403 .equals(action),
Mitsuru Oshima25ad8ab2009-06-10 16:26:07 -0700404 intent.getStringExtra(Browser.EXTRA_APPLICATION_ID), urlData.mUrl);
The Android Open Source Project0c908882009-03-03 19:32:16 -0800405 mTabControl.setCurrentTab(t);
The Android Open Source Project0c908882009-03-03 19:32:16 -0800406 attachTabToContentView(t);
407 WebView webView = t.getWebView();
408 if (extra != null) {
409 int scale = extra.getInt(Browser.INITIAL_ZOOM_LEVEL, 0);
410 if (scale > 0 && scale <= 1000) {
411 webView.setInitialScale(scale);
412 }
413 }
414 // If we are not restoring from an icicle, then there is a high
415 // likely hood this is the first run. So, check to see if the
416 // homepage needs to be configured and copy any plugins from our
417 // asset directory to the data partition.
418 if ((extra == null || !extra.getBoolean("testing"))
419 && !mSettings.isLoginInitialized()) {
Fred Quintana752b6562009-12-18 10:18:26 -0800420 startReadOfGoogleAccounts();
The Android Open Source Project0c908882009-03-03 19:32:16 -0800421 }
The Android Open Source Project0c908882009-03-03 19:32:16 -0800422
Mitsuru Oshima25ad8ab2009-06-10 16:26:07 -0700423 if (urlData.isEmpty()) {
Leon Scroggins30444232009-09-04 18:36:20 -0400424 if (mSettings.isLoginInitialized()) {
Leon Scroggins92472e82010-02-17 16:32:28 -0500425 loadUrl(webView, mSettings.getHomePage());
Leon Scroggins30444232009-09-04 18:36:20 -0400426 } else {
427 waitForCredentials();
428 }
The Android Open Source Project0c908882009-03-03 19:32:16 -0800429 } else {
Patrick Scott9d53da02010-02-19 10:19:01 -0500430 loadUrlDataIn(t, urlData);
The Android Open Source Project0c908882009-03-03 19:32:16 -0800431 }
432 } else {
433 // TabControl.restoreState() will create a new tab even if
Leon Scroggins1f005d32009-08-10 17:36:42 -0400434 // restoring the state fails.
The Android Open Source Project0c908882009-03-03 19:32:16 -0800435 attachTabToContentView(mTabControl.getCurrentTab());
436 }
Grace Kloba615c6c92009-08-03 10:22:44 -0700437
Feng Qianb3c02da2009-06-29 15:58:08 -0700438 // Read JavaScript flags if it exists.
439 String jsFlags = mSettings.getJsFlags();
440 if (jsFlags.trim().length() != 0) {
441 mTabControl.getCurrentWebView().setJsFlags(jsFlags);
442 }
Andrei Popescu30995e72010-02-09 16:59:58 +0000443 // Work out which packages are installed on the system.
444 getInstalledPackages();
The Android Open Source Project0c908882009-03-03 19:32:16 -0800445 }
446
Leon Scroggins58d56c62010-01-28 15:12:40 -0500447 /**
448 * Feed the previously stored results strings to the BrowserProvider so that
449 * the SearchDialog will show them instead of the standard searches.
450 * @param result String to show on the editable line of the SearchDialog.
451 */
452 /* package */ void showVoiceSearchResults(String result) {
453 ContentProviderClient client = mResolver.acquireContentProviderClient(
454 Browser.BOOKMARKS_URI);
455 ContentProvider prov = client.getLocalContentProvider();
456 BrowserProvider bp = (BrowserProvider) prov;
457 bp.setQueryResults(mTabControl.getCurrentTab().getVoiceSearchResults());
458 client.release();
459
460 startSearch(result, false,
461 createGoogleSearchSourceBundle(GOOGLE_SEARCH_SOURCE_SEARCHKEY),
462 false);
463 }
464
The Android Open Source Project0c908882009-03-03 19:32:16 -0800465 @Override
466 protected void onNewIntent(Intent intent) {
Grace Kloba22ac16e2009-10-07 18:00:23 -0700467 Tab current = mTabControl.getCurrentTab();
The Android Open Source Project0c908882009-03-03 19:32:16 -0800468 // When a tab is closed on exit, the current tab index is set to -1.
469 // Reset before proceed as Browser requires the current tab to be set.
470 if (current == null) {
471 // Try to reset the tab in case the index was incorrect.
472 current = mTabControl.getTab(0);
473 if (current == null) {
474 // No tabs at all so just ignore this intent.
475 return;
476 }
477 mTabControl.setCurrentTab(current);
478 attachTabToContentView(current);
479 resetTitleAndIcon(current.getWebView());
480 }
481 final String action = intent.getAction();
482 final int flags = intent.getFlags();
483 if (Intent.ACTION_MAIN.equals(action) ||
484 (flags & Intent.FLAG_ACTIVITY_LAUNCHED_FROM_HISTORY) != 0) {
485 // just resume the browser
486 return;
487 }
Leon Scrogginsa1cc3fd2010-02-01 16:14:11 -0500488 boolean activateVoiceSearch = RecognizerResultsIntent
489 .ACTION_VOICE_SEARCH_RESULTS.equals(action);
The Android Open Source Project0c908882009-03-03 19:32:16 -0800490 if (Intent.ACTION_VIEW.equals(action)
491 || Intent.ACTION_SEARCH.equals(action)
492 || MediaStore.INTENT_ACTION_MEDIA_SEARCH.equals(action)
Leon Scroggins58d56c62010-01-28 15:12:40 -0500493 || Intent.ACTION_WEB_SEARCH.equals(action)
494 || activateVoiceSearch) {
Leon Scroggins3b18ce32010-02-08 17:35:59 -0500495 if (current.isInVoiceSearchMode()) {
496 String title = current.getVoiceDisplayTitle();
497 if (title != null && title.equals(intent.getStringExtra(
498 SearchManager.QUERY))) {
499 // The user submitted the same search as the last voice
500 // search, so do nothing.
501 return;
502 }
Leon Scroggins1fe13a52010-02-09 15:31:26 -0500503 if (Intent.ACTION_SEARCH.equals(action)
504 && current.voiceSearchSourceIsGoogle()) {
505 Intent logIntent = new Intent(
506 LoggingEvents.ACTION_LOG_EVENT);
507 logIntent.putExtra(LoggingEvents.EXTRA_EVENT,
508 LoggingEvents.VoiceSearch.QUERY_UPDATED);
509 logIntent.putExtra(
510 LoggingEvents.VoiceSearch.EXTRA_QUERY_UPDATED_VALUE,
511 intent.getDataString());
512 sendBroadcast(logIntent);
513 // Note, onPageStarted will revert the voice title bar
514 // When http://b/issue?id=2379215 is fixed, we should update
515 // the title bar here.
516 }
Leon Scroggins3b18ce32010-02-08 17:35:59 -0500517 }
Satish Sampath565505b2009-05-29 15:37:27 +0100518 // If this was a search request (e.g. search query directly typed into the address bar),
519 // pass it on to the default web search provider.
520 if (handleWebSearchIntent(intent)) {
521 return;
522 }
523
Mitsuru Oshima25ad8ab2009-06-10 16:26:07 -0700524 UrlData urlData = getUrlDataFromIntent(intent);
525 if (urlData.isEmpty()) {
526 urlData = new UrlData(mSettings.getHomePage());
The Android Open Source Project0c908882009-03-03 19:32:16 -0800527 }
Mitsuru Oshima25ad8ab2009-06-10 16:26:07 -0700528
Grace Klobacc634032009-07-28 15:58:19 -0700529 final String appId = intent
530 .getStringExtra(Browser.EXTRA_APPLICATION_ID);
Leon Scroggins58d56c62010-01-28 15:12:40 -0500531 if ((Intent.ACTION_VIEW.equals(action) || activateVoiceSearch)
Grace Klobacc634032009-07-28 15:58:19 -0700532 && !getPackageName().equals(appId)
533 && (flags & Intent.FLAG_ACTIVITY_BROUGHT_TO_FRONT) != 0) {
Grace Kloba22ac16e2009-10-07 18:00:23 -0700534 Tab appTab = mTabControl.getTabFromId(appId);
The Android Open Source Projectf59ec872009-03-13 13:04:24 -0700535 if (appTab != null) {
536 Log.i(LOGTAG, "Reusing tab for " + appId);
537 // Dismiss the subwindow if applicable.
538 dismissSubWindow(appTab);
539 // Since we might kill the WebView, remove it from the
540 // content view first.
541 removeTabFromContentView(appTab);
542 // Recreate the main WebView after destroying the old one.
543 // If the WebView has the same original url and is on that
544 // page, it can be reused.
545 boolean needsLoad =
Mitsuru Oshima25ad8ab2009-06-10 16:26:07 -0700546 mTabControl.recreateWebView(appTab, urlData.mUrl);
Ben Murdochbff2d602009-07-01 20:19:05 +0100547
The Android Open Source Projectf59ec872009-03-13 13:04:24 -0700548 if (current != appTab) {
Leon Scroggins1f005d32009-08-10 17:36:42 -0400549 switchToTab(mTabControl.getTabIndex(appTab));
550 if (needsLoad) {
Patrick Scott9d53da02010-02-19 10:19:01 -0500551 loadUrlDataIn(appTab, urlData);
Leon Scroggins1f005d32009-08-10 17:36:42 -0400552 }
The Android Open Source Projectf59ec872009-03-13 13:04:24 -0700553 } else {
Leon Scroggins1f005d32009-08-10 17:36:42 -0400554 // If the tab was the current tab, we have to attach
555 // it to the view system again.
556 attachTabToContentView(appTab);
557 if (needsLoad) {
Patrick Scott9d53da02010-02-19 10:19:01 -0500558 loadUrlDataIn(appTab, urlData);
The Android Open Source Projectf59ec872009-03-13 13:04:24 -0700559 }
560 }
561 return;
Patrick Scottcd115892009-07-16 09:42:58 -0400562 } else {
563 // No matching application tab, try to find a regular tab
564 // with a matching url.
565 appTab = mTabControl.findUnusedTabWithUrl(urlData.mUrl);
Leon Scroggins25515f82009-08-19 15:31:58 -0400566 if (appTab != null) {
567 if (current != appTab) {
568 switchToTab(mTabControl.getTabIndex(appTab));
569 }
570 // Otherwise, we are already viewing the correct tab.
Patrick Scottcd115892009-07-16 09:42:58 -0400571 } else {
572 // if FLAG_ACTIVITY_BROUGHT_TO_FRONT flag is on, the url
573 // will be opened in a new tab unless we have reached
574 // MAX_TABS. Then the url will be opened in the current
575 // tab. If a new tab is created, it will have "true" for
576 // exit on close.
Leon Scroggins1f005d32009-08-10 17:36:42 -0400577 openTabAndShow(urlData, true, appId);
Patrick Scottcd115892009-07-16 09:42:58 -0400578 }
The Android Open Source Projectf59ec872009-03-13 13:04:24 -0700579 }
The Android Open Source Project0c908882009-03-03 19:32:16 -0800580 } else {
Grace Kloba638d3f42009-11-23 10:35:04 -0800581 if (!urlData.isEmpty()
582 && urlData.mUrl.startsWith("about:debug")) {
583 if ("about:debug.dom".equals(urlData.mUrl)) {
584 current.getWebView().dumpDomTree(false);
585 } else if ("about:debug.dom.file".equals(urlData.mUrl)) {
586 current.getWebView().dumpDomTree(true);
587 } else if ("about:debug.render".equals(urlData.mUrl)) {
588 current.getWebView().dumpRenderTree(false);
589 } else if ("about:debug.render.file".equals(urlData.mUrl)) {
590 current.getWebView().dumpRenderTree(true);
591 } else if ("about:debug.display".equals(urlData.mUrl)) {
592 current.getWebView().dumpDisplayTree();
Mike Reed9b78e1d2010-01-13 14:40:52 -0800593 } else if (urlData.mUrl.startsWith("about:debug.drag")) {
594 int index = urlData.mUrl.codePointAt(16) - '0';
595 if (index <= 0 || index > 9) {
596 current.getWebView().setDragTracker(null);
597 } else {
598 current.getWebView().setDragTracker(new MeshTracker(index));
599 }
Grace Kloba638d3f42009-11-23 10:35:04 -0800600 } else {
601 mSettings.toggleDebugSettings();
602 }
The Android Open Source Project0c908882009-03-03 19:32:16 -0800603 return;
604 }
Leon Scroggins1f005d32009-08-10 17:36:42 -0400605 // Get rid of the subwindow if it exists
606 dismissSubWindow(current);
Patrick Scott9d53da02010-02-19 10:19:01 -0500607 loadUrlDataIn(current, urlData);
The Android Open Source Project0c908882009-03-03 19:32:16 -0800608 }
609 }
610 }
611
Satish Sampath565505b2009-05-29 15:37:27 +0100612 private int parseUrlShortcut(String url) {
613 if (url == null) return SHORTCUT_INVALID;
614
615 // FIXME: quick search, need to be customized by setting
616 if (url.length() > 2 && url.charAt(1) == ' ') {
617 switch (url.charAt(0)) {
618 case 'g': return SHORTCUT_GOOGLE_SEARCH;
619 case 'w': return SHORTCUT_WIKIPEDIA_SEARCH;
620 case 'd': return SHORTCUT_DICTIONARY_SEARCH;
621 case 'l': return SHORTCUT_GOOGLE_MOBILE_LOCAL_SEARCH;
622 }
623 }
624 return SHORTCUT_INVALID;
625 }
626
627 /**
628 * Launches the default web search activity with the query parameters if the given intent's data
629 * are identified as plain search terms and not URLs/shortcuts.
630 * @return true if the intent was handled and web search activity was launched, false if not.
631 */
632 private boolean handleWebSearchIntent(Intent intent) {
633 if (intent == null) return false;
634
635 String url = null;
636 final String action = intent.getAction();
Leon Scrogginsa1cc3fd2010-02-01 16:14:11 -0500637 if (RecognizerResultsIntent.ACTION_VOICE_SEARCH_RESULTS.equals(
638 action)) {
Leon Scroggins58d56c62010-01-28 15:12:40 -0500639 return false;
640 }
Satish Sampath565505b2009-05-29 15:37:27 +0100641 if (Intent.ACTION_VIEW.equals(action)) {
Grace Kloba1e705052009-09-29 13:13:36 -0700642 Uri data = intent.getData();
643 if (data != null) url = data.toString();
Satish Sampath565505b2009-05-29 15:37:27 +0100644 } else if (Intent.ACTION_SEARCH.equals(action)
645 || MediaStore.INTENT_ACTION_MEDIA_SEARCH.equals(action)
646 || Intent.ACTION_WEB_SEARCH.equals(action)) {
647 url = intent.getStringExtra(SearchManager.QUERY);
648 }
Bjorn Bringert04851702009-09-22 10:36:01 +0100649 return handleWebSearchRequest(url, intent.getBundleExtra(SearchManager.APP_DATA),
650 intent.getStringExtra(SearchManager.EXTRA_DATA_KEY));
Satish Sampath565505b2009-05-29 15:37:27 +0100651 }
652
653 /**
654 * Launches the default web search activity with the query parameters if the given url string
655 * was identified as plain search terms and not URL/shortcut.
656 * @return true if the request was handled and web search activity was launched, false if not.
657 */
Bjorn Bringert04851702009-09-22 10:36:01 +0100658 private boolean handleWebSearchRequest(String inUrl, Bundle appData, String extraData) {
Satish Sampath565505b2009-05-29 15:37:27 +0100659 if (inUrl == null) return false;
660
661 // In general, we shouldn't modify URL from Intent.
662 // But currently, we get the user-typed URL from search box as well.
663 String url = fixUrl(inUrl).trim();
664
665 // URLs and site specific search shortcuts are handled by the regular flow of control, so
666 // return early.
Dan Egnor5ee906c2009-11-18 12:11:49 -0800667 if (Patterns.WEB_URL.matcher(url).matches()
Satish Sampathbc5b9f32009-06-04 18:21:40 +0100668 || ACCEPTED_URI_SCHEMA.matcher(url).matches()
Satish Sampath565505b2009-05-29 15:37:27 +0100669 || parseUrlShortcut(url) != SHORTCUT_INVALID) {
670 return false;
671 }
672
673 Browser.updateVisitedHistory(mResolver, url, false);
674 Browser.addSearchUrl(mResolver, url);
675
676 Intent intent = new Intent(Intent.ACTION_WEB_SEARCH);
677 intent.addCategory(Intent.CATEGORY_DEFAULT);
678 intent.putExtra(SearchManager.QUERY, url);
Satish Sampath15e9f2d2009-06-23 22:29:49 +0100679 if (appData != null) {
680 intent.putExtra(SearchManager.APP_DATA, appData);
681 }
Bjorn Bringert04851702009-09-22 10:36:01 +0100682 if (extraData != null) {
683 intent.putExtra(SearchManager.EXTRA_DATA_KEY, extraData);
684 }
Grace Klobacc634032009-07-28 15:58:19 -0700685 intent.putExtra(Browser.EXTRA_APPLICATION_ID, getPackageName());
Satish Sampath565505b2009-05-29 15:37:27 +0100686 startActivity(intent);
687
688 return true;
689 }
690
Mitsuru Oshima25ad8ab2009-06-10 16:26:07 -0700691 private UrlData getUrlDataFromIntent(Intent intent) {
Leon Scroggins58d56c62010-01-28 15:12:40 -0500692 String url = "";
Grace Kloba068e48b2010-01-26 18:11:27 -0800693 Map<String, String> headers = null;
The Android Open Source Project0c908882009-03-03 19:32:16 -0800694 if (intent != null) {
695 final String action = intent.getAction();
696 if (Intent.ACTION_VIEW.equals(action)) {
697 url = smartUrlFilter(intent.getData());
698 if (url != null && url.startsWith("content:")) {
699 /* Append mimetype so webview knows how to display */
700 String mimeType = intent.resolveType(getContentResolver());
701 if (mimeType != null) {
702 url += "?" + mimeType;
703 }
704 }
Grace Kloba068e48b2010-01-26 18:11:27 -0800705 if (url != null && url.startsWith("http")) {
Grace Kloba00f54c52010-01-27 14:53:51 -0800706 final Bundle pairs = intent
707 .getBundleExtra(Browser.EXTRA_HEADERS);
Grace Kloba2d508ed2010-01-28 11:39:15 -0800708 if (pairs != null && !pairs.isEmpty()) {
Grace Kloba00f54c52010-01-27 14:53:51 -0800709 Iterator<String> iter = pairs.keySet().iterator();
Grace Kloba068e48b2010-01-26 18:11:27 -0800710 headers = new HashMap<String, String>();
Grace Kloba00f54c52010-01-27 14:53:51 -0800711 while (iter.hasNext()) {
712 String key = iter.next();
713 headers.put(key, pairs.getString(key));
Grace Kloba068e48b2010-01-26 18:11:27 -0800714 }
715 }
Mitsuru Oshima25ad8ab2009-06-10 16:26:07 -0700716 }
The Android Open Source Project0c908882009-03-03 19:32:16 -0800717 } else if (Intent.ACTION_SEARCH.equals(action)
718 || MediaStore.INTENT_ACTION_MEDIA_SEARCH.equals(action)
719 || Intent.ACTION_WEB_SEARCH.equals(action)) {
720 url = intent.getStringExtra(SearchManager.QUERY);
721 if (url != null) {
722 mLastEnteredUrl = url;
Leon Scrogginsb4464432009-11-25 12:37:50 -0500723 Browser.updateVisitedHistory(mResolver, url, false);
The Android Open Source Project0c908882009-03-03 19:32:16 -0800724 // In general, we shouldn't modify URL from Intent.
725 // But currently, we get the user-typed URL from search box as well.
726 url = fixUrl(url);
727 url = smartUrlFilter(url);
728 String searchSource = "&source=android-" + GOOGLE_SEARCH_SOURCE_SUGGEST + "&";
729 if (url.contains(searchSource)) {
730 String source = null;
731 final Bundle appData = intent.getBundleExtra(SearchManager.APP_DATA);
732 if (appData != null) {
Bjorn Bringert10d1cca2010-02-10 14:22:12 +0000733 source = appData.getString(Search.SOURCE);
The Android Open Source Project0c908882009-03-03 19:32:16 -0800734 }
735 if (TextUtils.isEmpty(source)) {
736 source = GOOGLE_SEARCH_SOURCE_UNKNOWN;
737 }
738 url = url.replace(searchSource, "&source=android-"+source+"&");
739 }
740 }
741 }
742 }
Leon Scroggins58d56c62010-01-28 15:12:40 -0500743 return new UrlData(url, headers, intent);
The Android Open Source Project0c908882009-03-03 19:32:16 -0800744 }
Leon Scroggins58d56c62010-01-28 15:12:40 -0500745 /* package */ void showVoiceTitleBar(String title) {
746 mTitleBar.setInVoiceMode(true);
747 mFakeTitleBar.setInVoiceMode(true);
The Android Open Source Project0c908882009-03-03 19:32:16 -0800748
Leon Scroggins58d56c62010-01-28 15:12:40 -0500749 mTitleBar.setDisplayTitle(title);
750 mFakeTitleBar.setDisplayTitle(title);
751 }
752 /* package */ void revertVoiceTitleBar() {
753 mTitleBar.setInVoiceMode(false);
754 mFakeTitleBar.setInVoiceMode(false);
755
756 mTitleBar.setDisplayTitle(mTitle);
757 mFakeTitleBar.setDisplayTitle(mTitle);
758 }
The Android Open Source Project0c908882009-03-03 19:32:16 -0800759 /* package */ static String fixUrl(String inUrl) {
Cary Clark652ff872009-09-10 13:34:44 -0400760 // FIXME: Converting the url to lower case
761 // duplicates functionality in smartUrlFilter().
762 // However, changing all current callers of fixUrl to
763 // call smartUrlFilter in addition may have unwanted
764 // consequences, and is deferred for now.
765 int colon = inUrl.indexOf(':');
766 boolean allLower = true;
767 for (int index = 0; index < colon; index++) {
768 char ch = inUrl.charAt(index);
769 if (!Character.isLetter(ch)) {
770 break;
771 }
772 allLower &= Character.isLowerCase(ch);
773 if (index == colon - 1 && !allLower) {
774 inUrl = inUrl.substring(0, colon).toLowerCase()
775 + inUrl.substring(colon);
776 }
777 }
The Android Open Source Project0c908882009-03-03 19:32:16 -0800778 if (inUrl.startsWith("http://") || inUrl.startsWith("https://"))
779 return inUrl;
780 if (inUrl.startsWith("http:") ||
781 inUrl.startsWith("https:")) {
782 if (inUrl.startsWith("http:/") || inUrl.startsWith("https:/")) {
783 inUrl = inUrl.replaceFirst("/", "//");
784 } else inUrl = inUrl.replaceFirst(":", "://");
785 }
786 return inUrl;
787 }
788
Grace Kloba22ac16e2009-10-07 18:00:23 -0700789 @Override
790 protected void onResume() {
The Android Open Source Project0c908882009-03-03 19:32:16 -0800791 super.onResume();
Dave Bort31a6d1c2009-04-13 15:56:49 -0700792 if (LOGV_ENABLED) {
The Android Open Source Project0c908882009-03-03 19:32:16 -0800793 Log.v(LOGTAG, "BrowserActivity.onResume: this=" + this);
794 }
795
796 if (!mActivityInPause) {
797 Log.e(LOGTAG, "BrowserActivity is already resumed.");
798 return;
799 }
800
Mike Reed7bfa63b2009-05-28 11:08:32 -0400801 mTabControl.resumeCurrentTab();
The Android Open Source Project0c908882009-03-03 19:32:16 -0800802 mActivityInPause = false;
Mike Reed7bfa63b2009-05-28 11:08:32 -0400803 resumeWebViewTimers();
The Android Open Source Project0c908882009-03-03 19:32:16 -0800804
805 if (mWakeLock.isHeld()) {
806 mHandler.removeMessages(RELEASE_WAKELOCK);
807 mWakeLock.release();
808 }
809
810 if (mCredsDlg != null) {
811 if (!mHandler.hasMessages(CANCEL_CREDS_REQUEST)) {
812 // In case credential request never comes back
813 mHandler.sendEmptyMessageDelayed(CANCEL_CREDS_REQUEST, 6000);
814 }
815 }
816
817 registerReceiver(mNetworkStateIntentReceiver,
818 mNetworkStateChangedFilter);
819 WebView.enablePlatformNotifications();
The Android Open Source Project0c908882009-03-03 19:32:16 -0800820 }
821
Leon Scroggins3bbb6ca2009-09-09 12:51:10 -0400822 /**
823 * Since the actual title bar is embedded in the WebView, and removing it
Leon Scrogginsfe87bd32009-10-06 10:10:00 -0400824 * would change its appearance, use a different TitleBar to show overlayed
825 * at the top of the screen, when the menu is open or the page is loading.
Leon Scroggins3bbb6ca2009-09-09 12:51:10 -0400826 */
827 private TitleBar mFakeTitleBar;
828
829 /**
Leon Scrogginsd8fd2fc2009-09-16 11:12:09 -0400830 * Holder for the fake title bar. It will have a foreground shadow, as well
831 * as a white background, so the fake title bar looks like the real one.
832 */
833 private ViewGroup mFakeTitleBarHolder;
834
835 /**
836 * Layout parameters for the fake title bar within mFakeTitleBarHolder
837 */
838 private FrameLayout.LayoutParams mFakeTitleBarParams
839 = new FrameLayout.LayoutParams(
Romain Guy15b8ec62010-01-08 15:06:43 -0800840 ViewGroup.LayoutParams.MATCH_PARENT,
Leon Scrogginsd8fd2fc2009-09-16 11:12:09 -0400841 ViewGroup.LayoutParams.WRAP_CONTENT);
842 /**
Leon Scroggins3bbb6ca2009-09-09 12:51:10 -0400843 * Keeps track of whether the options menu is open. This is important in
844 * determining whether to show or hide the title bar overlay.
845 */
846 private boolean mOptionsMenuOpen;
847
848 /**
849 * Only meaningful when mOptionsMenuOpen is true. This variable keeps track
850 * of whether the configuration has changed. The first onMenuOpened call
851 * after a configuration change is simply a reopening of the same menu
852 * (i.e. mIconView did not change).
853 */
854 private boolean mConfigChanged;
855
856 /**
857 * Whether or not the options menu is in its smaller, icon menu form. When
858 * true, we want the title bar overlay to be up. When false, we do not.
859 * Only meaningful if mOptionsMenuOpen is true.
860 */
861 private boolean mIconView;
862
Leon Scrogginsa81a7642009-08-31 17:05:41 -0400863 @Override
864 public boolean onMenuOpened(int featureId, Menu menu) {
Leon Scroggins3bbb6ca2009-09-09 12:51:10 -0400865 if (Window.FEATURE_OPTIONS_PANEL == featureId) {
866 if (mOptionsMenuOpen) {
867 if (mConfigChanged) {
868 // We do not need to make any changes to the state of the
869 // title bar, since the only thing that happened was a
870 // change in orientation
871 mConfigChanged = false;
872 } else {
873 if (mIconView) {
874 // Switching the menu to expanded view, so hide the
875 // title bar.
876 hideFakeTitleBar();
877 mIconView = false;
878 } else {
879 // Switching the menu back to icon view, so show the
880 // title bar once again.
881 showFakeTitleBar();
882 mIconView = true;
883 }
884 }
885 } else {
886 // The options menu is closed, so open it, and show the title
887 showFakeTitleBar();
888 mOptionsMenuOpen = true;
889 mConfigChanged = false;
890 mIconView = true;
891 }
892 }
Leon Scrogginsa81a7642009-08-31 17:05:41 -0400893 return true;
894 }
895
Leon Scrogginsb94bf272009-09-25 15:22:08 -0400896 /**
897 * Special class used exclusively for the shadow drawn underneath the fake
898 * title bar. The shadow does not need to be drawn if the WebView
899 * underneath is scrolled to the top, because it will draw directly on top
900 * of the embedded shadow.
901 */
902 private static class Shadow extends View {
903 private WebView mWebView;
904
905 public Shadow(Context context, AttributeSet attrs) {
906 super(context, attrs);
907 }
908
909 public void setWebView(WebView view) {
910 mWebView = view;
911 }
912
913 @Override
914 public void draw(Canvas canvas) {
915 // In general onDraw is the method to override, but we care about
916 // whether or not the background gets drawn, which happens in draw()
917 if (mWebView == null || mWebView.getScrollY() > getHeight()) {
918 super.draw(canvas);
919 }
920 // Need to invalidate so that if the scroll position changes, we
921 // still draw as appropriate.
922 invalidate();
923 }
924 }
925
Leon Scroggins3bbb6ca2009-09-09 12:51:10 -0400926 private void showFakeTitleBar() {
Patrick Scottf8de8ec2009-09-21 16:37:29 -0400927 final View decor = getWindow().peekDecorView();
Leon Scrogginsfe87bd32009-10-06 10:10:00 -0400928 if (mFakeTitleBar.getParent() == null && mActiveTabsPage == null
Patrick Scottf8de8ec2009-09-21 16:37:29 -0400929 && !mActivityInPause && decor != null
930 && decor.getWindowToken() != null) {
Cary Clarka0464552009-09-29 13:00:45 -0400931 Rect visRect = new Rect();
932 if (!mBrowserFrameLayout.getGlobalVisibleRect(visRect)) {
933 if (LOGD_ENABLED) {
934 Log.d(LOGTAG, "showFakeTitleBar visRect failed");
935 }
936 return;
937 }
Leon Scroggins3bbb6ca2009-09-09 12:51:10 -0400938
939 WindowManager manager
940 = (WindowManager) getSystemService(Context.WINDOW_SERVICE);
941
942 // Add the title bar to the window manager so it can receive touches
943 // while the menu is up
944 WindowManager.LayoutParams params
945 = new WindowManager.LayoutParams(
Romain Guy15b8ec62010-01-08 15:06:43 -0800946 ViewGroup.LayoutParams.MATCH_PARENT,
Leon Scroggins3bbb6ca2009-09-09 12:51:10 -0400947 ViewGroup.LayoutParams.WRAP_CONTENT,
948 WindowManager.LayoutParams.TYPE_APPLICATION_SUB_PANEL,
949 WindowManager.LayoutParams.FLAG_NOT_FOCUSABLE,
Leon Scroggins68549862009-09-21 16:02:01 -0400950 PixelFormat.TRANSLUCENT);
Leon Scroggins3bbb6ca2009-09-09 12:51:10 -0400951 params.gravity = Gravity.TOP;
Leon Scrogginsa27ff192009-09-14 12:58:04 -0400952 WebView mainView = mTabControl.getCurrentWebView();
Leon Scroggins68549862009-09-21 16:02:01 -0400953 boolean atTop = mainView != null && mainView.getScrollY() == 0;
Leon Scroggins83932c72009-09-30 11:55:54 -0400954 params.windowAnimations = atTop ? 0 : R.style.TitleBar;
Leon Scroggins3bbb6ca2009-09-09 12:51:10 -0400955 // XXX : Without providing an offset, the fake title bar will be
956 // placed underneath the status bar. Use the global visible rect
957 // of mBrowserFrameLayout to determine the bottom of the status bar
Cary Clarka0464552009-09-29 13:00:45 -0400958 params.y = visRect.top;
Leon Scroggins68549862009-09-21 16:02:01 -0400959 // Add a holder for the title bar. It also holds a shadow to show
960 // below the title bar.
Leon Scrogginsd8fd2fc2009-09-16 11:12:09 -0400961 if (mFakeTitleBarHolder == null) {
962 mFakeTitleBarHolder = (ViewGroup) LayoutInflater.from(this)
963 .inflate(R.layout.title_bar_bg, null);
964 }
Leon Scrogginsb94bf272009-09-25 15:22:08 -0400965 Shadow shadow = (Shadow) mFakeTitleBarHolder.findViewById(
966 R.id.shadow);
967 shadow.setWebView(mainView);
Leon Scroggins68549862009-09-21 16:02:01 -0400968 mFakeTitleBarHolder.addView(mFakeTitleBar, 0, mFakeTitleBarParams);
Leon Scrogginsd8fd2fc2009-09-16 11:12:09 -0400969 manager.addView(mFakeTitleBarHolder, params);
Leon Scroggins3bbb6ca2009-09-09 12:51:10 -0400970 }
971 }
972
973 @Override
974 public void onOptionsMenuClosed(Menu menu) {
975 mOptionsMenuOpen = false;
Leon Scrogginsa27ff192009-09-14 12:58:04 -0400976 if (!mInLoad) {
977 hideFakeTitleBar();
978 } else if (!mIconView) {
979 // The page is currently loading, and we are in expanded mode, so
980 // we were not showing the menu. Show it once again. It will be
981 // removed when the page finishes.
982 showFakeTitleBar();
983 }
Leon Scroggins3bbb6ca2009-09-09 12:51:10 -0400984 }
Grace Kloba22ac16e2009-10-07 18:00:23 -0700985
Leon Scroggins3bbb6ca2009-09-09 12:51:10 -0400986 private void hideFakeTitleBar() {
Leon Scrogginsfe87bd32009-10-06 10:10:00 -0400987 if (mFakeTitleBar.getParent() == null) return;
Leon Scroggins20329572009-09-23 17:42:41 -0400988 WindowManager.LayoutParams params = (WindowManager.LayoutParams)
989 mFakeTitleBarHolder.getLayoutParams();
990 WebView mainView = mTabControl.getCurrentWebView();
991 // Although we decided whether or not to animate based on the current
992 // scroll position, the scroll position may have changed since the
993 // fake title bar was displayed. Make sure it has the appropriate
994 // animation/lack thereof before removing.
995 params.windowAnimations = mainView != null && mainView.getScrollY() == 0
Leon Scroggins83932c72009-09-30 11:55:54 -0400996 ? 0 : R.style.TitleBar;
Leon Scroggins3bbb6ca2009-09-09 12:51:10 -0400997 WindowManager manager
998 = (WindowManager) getSystemService(Context.WINDOW_SERVICE);
Leon Scroggins20329572009-09-23 17:42:41 -0400999 manager.updateViewLayout(mFakeTitleBarHolder, params);
Leon Scrogginsd8fd2fc2009-09-16 11:12:09 -04001000 mFakeTitleBarHolder.removeView(mFakeTitleBar);
1001 manager.removeView(mFakeTitleBarHolder);
Leon Scroggins3bbb6ca2009-09-09 12:51:10 -04001002 }
1003
The Android Open Source Project0c908882009-03-03 19:32:16 -08001004 /**
Leon Scrogginsc6fa1102009-09-21 10:40:01 -04001005 * Special method for the fake title bar to call when displaying its context
1006 * menu, since it is in its own Window, and its parent does not show a
1007 * context menu.
1008 */
1009 /* package */ void showTitleBarContextMenu() {
Cary Clark65f4a3c2009-09-28 17:05:06 -04001010 if (null == mTitleBar.getParent()) {
1011 return;
1012 }
Leon Scrogginsc6fa1102009-09-21 10:40:01 -04001013 openContextMenu(mTitleBar);
1014 }
1015
Leon Scrogginsb2b19f52009-10-09 16:10:00 -04001016 @Override
1017 public void onContextMenuClosed(Menu menu) {
1018 super.onContextMenuClosed(menu);
1019 if (mInLoad) {
1020 showFakeTitleBar();
1021 }
1022 }
1023
Leon Scrogginsc6fa1102009-09-21 10:40:01 -04001024 /**
The Android Open Source Project0c908882009-03-03 19:32:16 -08001025 * onSaveInstanceState(Bundle map)
1026 * onSaveInstanceState is called right before onStop(). The map contains
1027 * the saved state.
1028 */
Grace Kloba22ac16e2009-10-07 18:00:23 -07001029 @Override
1030 protected void onSaveInstanceState(Bundle outState) {
Dave Bort31a6d1c2009-04-13 15:56:49 -07001031 if (LOGV_ENABLED) {
The Android Open Source Project0c908882009-03-03 19:32:16 -08001032 Log.v(LOGTAG, "BrowserActivity.onSaveInstanceState: this=" + this);
1033 }
1034 // the default implementation requires each view to have an id. As the
1035 // browser handles the state itself and it doesn't use id for the views,
1036 // don't call the default implementation. Otherwise it will trigger the
1037 // warning like this, "couldn't save which view has focus because the
1038 // focused view XXX has no id".
1039
1040 // Save all the tabs
1041 mTabControl.saveState(outState);
1042 }
1043
Grace Kloba22ac16e2009-10-07 18:00:23 -07001044 @Override
1045 protected void onPause() {
The Android Open Source Project0c908882009-03-03 19:32:16 -08001046 super.onPause();
1047
1048 if (mActivityInPause) {
1049 Log.e(LOGTAG, "BrowserActivity is already paused.");
1050 return;
1051 }
1052
Mike Reed7bfa63b2009-05-28 11:08:32 -04001053 mTabControl.pauseCurrentTab();
The Android Open Source Project0c908882009-03-03 19:32:16 -08001054 mActivityInPause = true;
Mike Reed7bfa63b2009-05-28 11:08:32 -04001055 if (mTabControl.getCurrentIndex() >= 0 && !pauseWebViewTimers()) {
The Android Open Source Project0c908882009-03-03 19:32:16 -08001056 mWakeLock.acquire();
1057 mHandler.sendMessageDelayed(mHandler
1058 .obtainMessage(RELEASE_WAKELOCK), WAKELOCK_TIMEOUT);
1059 }
1060
1061 // Clear the credentials toast if it is up
1062 if (mCredsDlg != null && mCredsDlg.isShowing()) {
1063 mCredsDlg.dismiss();
1064 }
1065 mCredsDlg = null;
1066
Leon Scrogginsa2ab6a72009-09-11 11:49:52 -04001067 // FIXME: This removes the active tabs page and resets the menu to
1068 // MAIN_MENU. A better solution might be to do this work in onNewIntent
1069 // but then we would need to save it in onSaveInstanceState and restore
1070 // it in onCreate/onRestoreInstanceState
1071 if (mActiveTabsPage != null) {
1072 removeActiveTabPage(true);
1073 }
1074
The Android Open Source Project0c908882009-03-03 19:32:16 -08001075 cancelStopToast();
1076
1077 // unregister network state listener
1078 unregisterReceiver(mNetworkStateIntentReceiver);
1079 WebView.disablePlatformNotifications();
The Android Open Source Project0c908882009-03-03 19:32:16 -08001080 }
1081
Grace Kloba22ac16e2009-10-07 18:00:23 -07001082 @Override
1083 protected void onDestroy() {
Dave Bort31a6d1c2009-04-13 15:56:49 -07001084 if (LOGV_ENABLED) {
The Android Open Source Project0c908882009-03-03 19:32:16 -08001085 Log.v(LOGTAG, "BrowserActivity.onDestroy: this=" + this);
1086 }
1087 super.onDestroy();
Grace Kloba0923d692009-09-23 21:37:25 -07001088
Leon Scroggins8d5fa432009-10-02 15:55:59 -04001089 if (mUploadMessage != null) {
1090 mUploadMessage.onReceiveValue(null);
1091 mUploadMessage = null;
1092 }
1093
Grace Kloba0923d692009-09-23 21:37:25 -07001094 if (mTabControl == null) return;
1095
Grace Kloba1fc98a32009-10-21 13:23:08 -07001096 // Remove the fake title bar if it is there
1097 hideFakeTitleBar();
1098
The Android Open Source Project0c908882009-03-03 19:32:16 -08001099 // Remove the current tab and sub window
Grace Kloba22ac16e2009-10-07 18:00:23 -07001100 Tab t = mTabControl.getCurrentTab();
Patrick Scottfb5e77f2009-04-08 19:17:37 -07001101 if (t != null) {
1102 dismissSubWindow(t);
1103 removeTabFromContentView(t);
1104 }
The Android Open Source Project0c908882009-03-03 19:32:16 -08001105 // Destroy all the tabs
1106 mTabControl.destroy();
1107 WebIconDatabase.getInstance().close();
The Android Open Source Project0c908882009-03-03 19:32:16 -08001108
Grace Klobab4da0ad2009-05-14 14:45:40 -07001109 unregisterReceiver(mPackageInstallationReceiver);
The Android Open Source Project0c908882009-03-03 19:32:16 -08001110 }
1111
1112 @Override
1113 public void onConfigurationChanged(Configuration newConfig) {
Leon Scroggins3bbb6ca2009-09-09 12:51:10 -04001114 mConfigChanged = true;
The Android Open Source Project0c908882009-03-03 19:32:16 -08001115 super.onConfigurationChanged(newConfig);
1116
1117 if (mPageInfoDialog != null) {
1118 mPageInfoDialog.dismiss();
1119 showPageInfo(
1120 mPageInfoView,
Leon Scrogginsc7b92f82010-01-11 18:17:31 -05001121 mPageInfoFromShowSSLCertificateOnError);
The Android Open Source Project0c908882009-03-03 19:32:16 -08001122 }
1123 if (mSSLCertificateDialog != null) {
1124 mSSLCertificateDialog.dismiss();
1125 showSSLCertificate(
1126 mSSLCertificateView);
1127 }
1128 if (mSSLCertificateOnErrorDialog != null) {
1129 mSSLCertificateOnErrorDialog.dismiss();
1130 showSSLCertificateOnError(
1131 mSSLCertificateOnErrorView,
1132 mSSLCertificateOnErrorHandler,
1133 mSSLCertificateOnErrorError);
1134 }
1135 if (mHttpAuthenticationDialog != null) {
1136 String title = ((TextView) mHttpAuthenticationDialog
1137 .findViewById(com.android.internal.R.id.alertTitle)).getText()
1138 .toString();
1139 String name = ((TextView) mHttpAuthenticationDialog
1140 .findViewById(R.id.username_edit)).getText().toString();
1141 String password = ((TextView) mHttpAuthenticationDialog
1142 .findViewById(R.id.password_edit)).getText().toString();
1143 int focusId = mHttpAuthenticationDialog.getCurrentFocus()
1144 .getId();
1145 mHttpAuthenticationDialog.dismiss();
1146 showHttpAuthentication(mHttpAuthHandler, null, null, title,
1147 name, password, focusId);
1148 }
The Android Open Source Project0c908882009-03-03 19:32:16 -08001149 }
1150
Grace Kloba22ac16e2009-10-07 18:00:23 -07001151 @Override
1152 public void onLowMemory() {
The Android Open Source Project0c908882009-03-03 19:32:16 -08001153 super.onLowMemory();
1154 mTabControl.freeMemory();
1155 }
1156
Mike Reed7bfa63b2009-05-28 11:08:32 -04001157 private boolean resumeWebViewTimers() {
Grace Kloba22ac16e2009-10-07 18:00:23 -07001158 Tab tab = mTabControl.getCurrentTab();
1159 boolean inLoad = tab.inLoad();
1160 if ((!mActivityInPause && !inLoad) || (mActivityInPause && inLoad)) {
The Android Open Source Project0c908882009-03-03 19:32:16 -08001161 CookieSyncManager.getInstance().startSync();
Grace Kloba22ac16e2009-10-07 18:00:23 -07001162 WebView w = tab.getWebView();
The Android Open Source Project0c908882009-03-03 19:32:16 -08001163 if (w != null) {
1164 w.resumeTimers();
1165 }
1166 return true;
1167 } else {
1168 return false;
1169 }
1170 }
1171
Mike Reed7bfa63b2009-05-28 11:08:32 -04001172 private boolean pauseWebViewTimers() {
Grace Kloba22ac16e2009-10-07 18:00:23 -07001173 Tab tab = mTabControl.getCurrentTab();
1174 boolean inLoad = tab.inLoad();
1175 if (mActivityInPause && !inLoad) {
The Android Open Source Project0c908882009-03-03 19:32:16 -08001176 CookieSyncManager.getInstance().stopSync();
1177 WebView w = mTabControl.getCurrentWebView();
1178 if (w != null) {
1179 w.pauseTimers();
1180 }
1181 return true;
1182 } else {
1183 return false;
1184 }
1185 }
1186
Leon Scroggins1f005d32009-08-10 17:36:42 -04001187 // FIXME: Do we want to call this when loading google for the first time?
The Android Open Source Project0c908882009-03-03 19:32:16 -08001188 /*
1189 * This function is called when we are launching for the first time. We
1190 * are waiting for the login credentials before loading Google home
1191 * pages. This way the user will be logged in straight away.
1192 */
1193 private void waitForCredentials() {
1194 // Show a toast
1195 mCredsDlg = new ProgressDialog(this);
1196 mCredsDlg.setIndeterminate(true);
1197 mCredsDlg.setMessage(getText(R.string.retrieving_creds_dlg_msg));
1198 // If the user cancels the operation, then cancel the Google
1199 // Credentials request.
1200 mCredsDlg.setCancelMessage(mHandler.obtainMessage(CANCEL_CREDS_REQUEST));
1201 mCredsDlg.show();
1202
1203 // We set a timeout for the retrieval of credentials in onResume()
1204 // as that is when we have freed up some CPU time to get
1205 // the login credentials.
1206 }
1207
1208 /*
1209 * If we have received the credentials or we have timed out and we are
1210 * showing the credentials dialog, then it is time to move on.
1211 */
1212 private void resumeAfterCredentials() {
1213 if (mCredsDlg == null) {
1214 return;
1215 }
1216
1217 // Clear the toast
1218 if (mCredsDlg.isShowing()) {
1219 mCredsDlg.dismiss();
1220 }
1221 mCredsDlg = null;
1222
1223 // Clear any pending timeout
1224 mHandler.removeMessages(CANCEL_CREDS_REQUEST);
1225
1226 // Load the page
1227 WebView w = mTabControl.getCurrentWebView();
1228 if (w != null) {
Leon Scroggins92472e82010-02-17 16:32:28 -05001229 loadUrl(w, mSettings.getHomePage());
The Android Open Source Project0c908882009-03-03 19:32:16 -08001230 }
1231
1232 // Update the settings, need to do this last as it can take a moment
1233 // to persist the settings. In the mean time we could be loading
1234 // content.
1235 mSettings.setLoginInitialized(this);
1236 }
1237
1238 // Open the icon database and retain all the icons for visited sites.
1239 private void retainIconsOnStartup() {
1240 final WebIconDatabase db = WebIconDatabase.getInstance();
1241 db.open(getDir("icons", 0).getPath());
1242 try {
1243 Cursor c = Browser.getAllBookmarks(mResolver);
1244 if (!c.moveToFirst()) {
1245 c.deactivate();
1246 return;
1247 }
1248 int urlIndex = c.getColumnIndex(Browser.BookmarkColumns.URL);
1249 do {
1250 String url = c.getString(urlIndex);
1251 db.retainIconForPageUrl(url);
1252 } while (c.moveToNext());
1253 c.deactivate();
1254 } catch (IllegalStateException e) {
1255 Log.e(LOGTAG, "retainIconsOnStartup", e);
1256 }
1257 }
1258
1259 // Helper method for getting the top window.
1260 WebView getTopWindow() {
1261 return mTabControl.getCurrentTopWebView();
1262 }
1263
Grace Kloba22ac16e2009-10-07 18:00:23 -07001264 TabControl getTabControl() {
1265 return mTabControl;
1266 }
1267
The Android Open Source Project0c908882009-03-03 19:32:16 -08001268 @Override
1269 public boolean onCreateOptionsMenu(Menu menu) {
1270 super.onCreateOptionsMenu(menu);
1271
1272 MenuInflater inflater = getMenuInflater();
1273 inflater.inflate(R.menu.browser, menu);
1274 mMenu = menu;
1275 updateInLoadMenuItems();
1276 return true;
1277 }
1278
1279 /**
1280 * As the menu can be open when loading state changes
1281 * we must manually update the state of the stop/reload menu
1282 * item
1283 */
1284 private void updateInLoadMenuItems() {
1285 if (mMenu == null) {
1286 return;
1287 }
1288 MenuItem src = mInLoad ?
1289 mMenu.findItem(R.id.stop_menu_id):
1290 mMenu.findItem(R.id.reload_menu_id);
1291 MenuItem dest = mMenu.findItem(R.id.stop_reload_menu_id);
1292 dest.setIcon(src.getIcon());
1293 dest.setTitle(src.getTitle());
1294 }
1295
1296 @Override
1297 public boolean onContextItemSelected(MenuItem item) {
1298 // chording is not an issue with context menus, but we use the same
1299 // options selector, so set mCanChord to true so we can access them.
1300 mCanChord = true;
1301 int id = item.getItemId();
Leon Scroggins96afcb12009-12-10 12:35:56 -05001302 boolean result = true;
The Android Open Source Project0c908882009-03-03 19:32:16 -08001303 switch (id) {
Leon Scrogginsc6fa1102009-09-21 10:40:01 -04001304 // For the context menu from the title bar
Leon Scrogginsc6fa1102009-09-21 10:40:01 -04001305 case R.id.title_bar_copy_page_url:
Leon Scroggins96afcb12009-12-10 12:35:56 -05001306 Tab currentTab = mTabControl.getCurrentTab();
1307 if (null == currentTab) {
1308 result = false;
1309 break;
1310 }
1311 WebView mainView = currentTab.getWebView();
Leon Scrogginsc6fa1102009-09-21 10:40:01 -04001312 if (null == mainView) {
Leon Scroggins96afcb12009-12-10 12:35:56 -05001313 result = false;
1314 break;
Leon Scrogginsc6fa1102009-09-21 10:40:01 -04001315 }
Leon Scroggins96afcb12009-12-10 12:35:56 -05001316 copy(mainView.getUrl());
Leon Scrogginsc6fa1102009-09-21 10:40:01 -04001317 break;
The Android Open Source Project0c908882009-03-03 19:32:16 -08001318 // -- Browser context menu
1319 case R.id.open_context_menu_id:
1320 case R.id.open_newtab_context_menu_id:
1321 case R.id.bookmark_context_menu_id:
1322 case R.id.save_link_context_menu_id:
1323 case R.id.share_link_context_menu_id:
1324 case R.id.copy_link_context_menu_id:
Leon Scrogginsc6fa1102009-09-21 10:40:01 -04001325 final WebView webView = getTopWindow();
1326 if (null == webView) {
Leon Scroggins96afcb12009-12-10 12:35:56 -05001327 result = false;
1328 break;
Leon Scrogginsc6fa1102009-09-21 10:40:01 -04001329 }
1330 final HashMap hrefMap = new HashMap();
1331 hrefMap.put("webview", webView);
1332 final Message msg = mHandler.obtainMessage(
1333 FOCUS_NODE_HREF, id, 0, hrefMap);
The Android Open Source Project0c908882009-03-03 19:32:16 -08001334 webView.requestFocusNodeHref(msg);
1335 break;
1336
1337 default:
1338 // For other context menus
Leon Scroggins96afcb12009-12-10 12:35:56 -05001339 result = onOptionsItemSelected(item);
The Android Open Source Project0c908882009-03-03 19:32:16 -08001340 }
1341 mCanChord = false;
Leon Scroggins96afcb12009-12-10 12:35:56 -05001342 return result;
The Android Open Source Project0c908882009-03-03 19:32:16 -08001343 }
1344
1345 private Bundle createGoogleSearchSourceBundle(String source) {
1346 Bundle bundle = new Bundle();
Bjorn Bringert10d1cca2010-02-10 14:22:12 +00001347 bundle.putString(Search.SOURCE, source);
The Android Open Source Project0c908882009-03-03 19:32:16 -08001348 return bundle;
1349 }
1350
Leon Scroggins8ad29922010-02-16 12:33:55 -05001351 /* package */ void editUrl() {
Leon Scroggins68579392009-09-15 15:31:54 -04001352 if (mOptionsMenuOpen) closeOptionsMenu();
Leon Scroggins5bbe9802009-07-31 13:10:55 -04001353 String url = (getTopWindow() == null) ? null : getTopWindow().getUrl();
Grace Kloba83f47342009-07-20 10:44:31 -07001354 startSearch(mSettings.getHomePage().equals(url) ? null : url, true,
Leon Scroggins8ad29922010-02-16 12:33:55 -05001355 null, false);
The Android Open Source Project0c908882009-03-03 19:32:16 -08001356 }
1357
Leon Scroggins8ad29922010-02-16 12:33:55 -05001358 /**
1359 * Overriding this to insert a local information bundle
1360 */
The Android Open Source Project0c908882009-03-03 19:32:16 -08001361 @Override
1362 public void startSearch(String initialQuery, boolean selectInitialQuery,
1363 Bundle appSearchData, boolean globalSearch) {
1364 if (appSearchData == null) {
1365 appSearchData = createGoogleSearchSourceBundle(GOOGLE_SEARCH_SOURCE_TYPE);
1366 }
1367 super.startSearch(initialQuery, selectInitialQuery, appSearchData, globalSearch);
1368 }
1369
Leon Scroggins1f005d32009-08-10 17:36:42 -04001370 /**
1371 * Switch tabs. Called by the TitleBarSet when sliding the title bar
1372 * results in changing tabs.
Leon Scroggins160a7e72009-08-14 18:28:01 -04001373 * @param index Index of the tab to change to, as defined by
1374 * mTabControl.getTabIndex(Tab t).
1375 * @return boolean True if we successfully switched to a different tab. If
1376 * the indexth tab is null, or if that tab is the same as
1377 * the current one, return false.
Leon Scroggins1f005d32009-08-10 17:36:42 -04001378 */
Leon Scroggins160a7e72009-08-14 18:28:01 -04001379 /* package */ boolean switchToTab(int index) {
Grace Kloba22ac16e2009-10-07 18:00:23 -07001380 Tab tab = mTabControl.getTab(index);
1381 Tab currentTab = mTabControl.getCurrentTab();
Leon Scroggins1f005d32009-08-10 17:36:42 -04001382 if (tab == null || tab == currentTab) {
Leon Scroggins160a7e72009-08-14 18:28:01 -04001383 return false;
Leon Scroggins1f005d32009-08-10 17:36:42 -04001384 }
1385 if (currentTab != null) {
1386 // currentTab may be null if it was just removed. In that case,
1387 // we do not need to remove it
1388 removeTabFromContentView(currentTab);
1389 }
Leon Scroggins1f005d32009-08-10 17:36:42 -04001390 mTabControl.setCurrentTab(tab);
1391 attachTabToContentView(tab);
Grace Klobaeb6eef42009-09-15 17:56:32 -07001392 resetTitleIconAndProgress();
1393 updateLockIconToLatest();
Leon Scroggins160a7e72009-08-14 18:28:01 -04001394 return true;
Leon Scroggins1f005d32009-08-10 17:36:42 -04001395 }
1396
Grace Kloba22ac16e2009-10-07 18:00:23 -07001397 /* package */ Tab openTabToHomePage() {
Leon Scroggins0a64ba52009-09-08 15:35:33 -04001398 return openTabAndShow(mSettings.getHomePage(), false, null);
1399 }
1400
Leon Scroggins1f005d32009-08-10 17:36:42 -04001401 /* package */ void closeCurrentWindow() {
Grace Kloba22ac16e2009-10-07 18:00:23 -07001402 final Tab current = mTabControl.getCurrentTab();
Leon Scroggins160a7e72009-08-14 18:28:01 -04001403 if (mTabControl.getTabCount() == 1) {
Leon Scroggins30444232009-09-04 18:36:20 -04001404 // This is the last tab. Open a new one, with the home
1405 // page and close the current one.
Grace Kloba22ac16e2009-10-07 18:00:23 -07001406 openTabToHomePage();
Leon Scroggins160a7e72009-08-14 18:28:01 -04001407 closeTab(current);
Leon Scroggins160a7e72009-08-14 18:28:01 -04001408 return;
1409 }
Grace Kloba22ac16e2009-10-07 18:00:23 -07001410 final Tab parent = current.getParentTab();
Leon Scroggins1f005d32009-08-10 17:36:42 -04001411 int indexToShow = -1;
1412 if (parent != null) {
1413 indexToShow = mTabControl.getTabIndex(parent);
1414 } else {
Leon Scroggins160a7e72009-08-14 18:28:01 -04001415 final int currentIndex = mTabControl.getCurrentIndex();
1416 // Try to move to the tab to the right
1417 indexToShow = currentIndex + 1;
1418 if (indexToShow > mTabControl.getTabCount() - 1) {
1419 // Try to move to the tab to the left
1420 indexToShow = currentIndex - 1;
Leon Scroggins1f005d32009-08-10 17:36:42 -04001421 }
1422 }
Leon Scroggins160a7e72009-08-14 18:28:01 -04001423 if (switchToTab(indexToShow)) {
1424 // Close window
1425 closeTab(current);
1426 }
Leon Scroggins1f005d32009-08-10 17:36:42 -04001427 }
1428
Leon Scroggins0a64ba52009-09-08 15:35:33 -04001429 private ActiveTabsPage mActiveTabsPage;
1430
1431 /**
1432 * Remove the active tabs page.
1433 * @param needToAttach If true, the active tabs page did not attach a tab
1434 * to the content view, so we need to do that here.
1435 */
1436 /* package */ void removeActiveTabPage(boolean needToAttach) {
1437 mContentView.removeView(mActiveTabsPage);
1438 mActiveTabsPage = null;
1439 mMenuState = R.id.MAIN_MENU;
1440 if (needToAttach) {
1441 attachTabToContentView(mTabControl.getCurrentTab());
1442 }
1443 getTopWindow().requestFocus();
1444 }
1445
The Android Open Source Project0c908882009-03-03 19:32:16 -08001446 @Override
1447 public boolean onOptionsItemSelected(MenuItem item) {
1448 if (!mCanChord) {
1449 // The user has already fired a shortcut with this hold down of the
1450 // menu key.
1451 return false;
1452 }
Leon Scroggins1f005d32009-08-10 17:36:42 -04001453 if (null == getTopWindow()) {
Leon Scroggins0d7ae0e2009-06-05 11:04:45 -04001454 return false;
1455 }
Grace Kloba6ee9c492009-07-13 10:04:34 -07001456 if (mMenuIsDown) {
1457 // The shortcut action consumes the MENU. Even if it is still down,
1458 // it won't trigger the next shortcut action. In the case of the
1459 // shortcut action triggering a new activity, like Bookmarks, we
1460 // won't get onKeyUp for MENU. So it is important to reset it here.
1461 mMenuIsDown = false;
1462 }
The Android Open Source Project0c908882009-03-03 19:32:16 -08001463 switch (item.getItemId()) {
1464 // -- Main menu
Leon Scrogginsa81a7642009-08-31 17:05:41 -04001465 case R.id.new_tab_menu_id:
Leon Scroggins0a64ba52009-09-08 15:35:33 -04001466 openTabToHomePage();
Leon Scrogginsa81a7642009-08-31 17:05:41 -04001467 break;
1468
Leon Scroggins64b80f32009-08-07 12:03:34 -04001469 case R.id.goto_menu_id:
Leon Scroggins8ad29922010-02-16 12:33:55 -05001470 editUrl();
Leon Scrogginsb3a5bed2009-09-28 11:21:56 -04001471 break;
1472
1473 case R.id.bookmarks_menu_id:
Leon Scroggins30444232009-09-04 18:36:20 -04001474 bookmarksOrHistoryPicker(false);
The Android Open Source Project0c908882009-03-03 19:32:16 -08001475 break;
1476
Leon Scroggins0a64ba52009-09-08 15:35:33 -04001477 case R.id.active_tabs_menu_id:
1478 mActiveTabsPage = new ActiveTabsPage(this, mTabControl);
1479 removeTabFromContentView(mTabControl.getCurrentTab());
Leon Scroggins43de6162009-09-14 19:59:58 -04001480 hideFakeTitleBar();
Leon Scroggins0a64ba52009-09-08 15:35:33 -04001481 mContentView.addView(mActiveTabsPage, COVER_SCREEN_PARAMS);
1482 mActiveTabsPage.requestFocus();
1483 mMenuState = EMPTY_MENU;
1484 break;
1485
Leon Scroggins1f005d32009-08-10 17:36:42 -04001486 case R.id.add_bookmark_menu_id:
1487 Intent i = new Intent(BrowserActivity.this,
1488 AddBookmarkPage.class);
1489 WebView w = getTopWindow();
1490 i.putExtra("url", w.getUrl());
1491 i.putExtra("title", w.getTitle());
Grace Kloba83cdb2c2009-09-16 00:48:57 -07001492 i.putExtra("touch_icon_url", w.getTouchIconUrl());
Ben Murdochdcc2b6f2009-09-21 14:29:20 +01001493 i.putExtra("thumbnail", createScreenshot(w));
Leon Scroggins1f005d32009-08-10 17:36:42 -04001494 startActivity(i);
The Android Open Source Project0c908882009-03-03 19:32:16 -08001495 break;
1496
1497 case R.id.stop_reload_menu_id:
1498 if (mInLoad) {
1499 stopLoading();
1500 } else {
1501 getTopWindow().reload();
1502 }
1503 break;
1504
1505 case R.id.back_menu_id:
1506 getTopWindow().goBack();
1507 break;
1508
1509 case R.id.forward_menu_id:
1510 getTopWindow().goForward();
1511 break;
1512
1513 case R.id.close_menu_id:
1514 // Close the subwindow if it exists.
1515 if (mTabControl.getCurrentSubWindow() != null) {
1516 dismissSubWindow(mTabControl.getCurrentTab());
1517 break;
1518 }
Leon Scroggins1f005d32009-08-10 17:36:42 -04001519 closeCurrentWindow();
The Android Open Source Project0c908882009-03-03 19:32:16 -08001520 break;
1521
1522 case R.id.homepage_menu_id:
Grace Kloba22ac16e2009-10-07 18:00:23 -07001523 Tab current = mTabControl.getCurrentTab();
The Android Open Source Project0c908882009-03-03 19:32:16 -08001524 if (current != null) {
1525 dismissSubWindow(current);
Leon Scroggins92472e82010-02-17 16:32:28 -05001526 loadUrl(current.getWebView(), mSettings.getHomePage());
The Android Open Source Project0c908882009-03-03 19:32:16 -08001527 }
1528 break;
1529
1530 case R.id.preferences_menu_id:
1531 Intent intent = new Intent(this,
1532 BrowserPreferencesPage.class);
Leon Scrogginsd5304942009-12-10 16:11:39 -05001533 intent.putExtra(BrowserPreferencesPage.CURRENT_PAGE,
1534 getTopWindow().getUrl());
The Android Open Source Project0c908882009-03-03 19:32:16 -08001535 startActivityForResult(intent, PREFERENCES_PAGE);
1536 break;
1537
1538 case R.id.find_menu_id:
1539 if (null == mFindDialog) {
1540 mFindDialog = new FindDialog(this);
1541 }
1542 mFindDialog.setWebView(getTopWindow());
1543 mFindDialog.show();
1544 mMenuState = EMPTY_MENU;
1545 break;
1546
1547 case R.id.select_text_id:
1548 getTopWindow().emulateShiftHeld();
1549 break;
1550 case R.id.page_info_menu_id:
1551 showPageInfo(mTabControl.getCurrentTab(), false);
1552 break;
1553
1554 case R.id.classic_history_menu_id:
Leon Scroggins30444232009-09-04 18:36:20 -04001555 bookmarksOrHistoryPicker(true);
The Android Open Source Project0c908882009-03-03 19:32:16 -08001556 break;
1557
Leon Scroggins96afcb12009-12-10 12:35:56 -05001558 case R.id.title_bar_share_page_url:
The Android Open Source Project0c908882009-03-03 19:32:16 -08001559 case R.id.share_page_menu_id:
Leon Scroggins96afcb12009-12-10 12:35:56 -05001560 Tab currentTab = mTabControl.getCurrentTab();
1561 if (null == currentTab) {
1562 mCanChord = false;
1563 return false;
1564 }
1565 currentTab.populatePickerData();
1566 sharePage(this, currentTab.getTitle(),
1567 currentTab.getUrl(), currentTab.getFavicon(),
1568 createScreenshot(currentTab.getWebView()));
The Android Open Source Project0c908882009-03-03 19:32:16 -08001569 break;
1570
1571 case R.id.dump_nav_menu_id:
1572 getTopWindow().debugDump();
1573 break;
1574
Andrei Popescu7a8b88b2010-02-02 00:30:38 +00001575 case R.id.dump_counters_menu_id:
1576 getTopWindow().dumpV8Counters();
1577 break;
1578
The Android Open Source Project0c908882009-03-03 19:32:16 -08001579 case R.id.zoom_in_menu_id:
1580 getTopWindow().zoomIn();
1581 break;
1582
1583 case R.id.zoom_out_menu_id:
1584 getTopWindow().zoomOut();
1585 break;
1586
1587 case R.id.view_downloads_menu_id:
1588 viewDownloads(null);
1589 break;
1590
The Android Open Source Project0c908882009-03-03 19:32:16 -08001591 case R.id.window_one_menu_id:
1592 case R.id.window_two_menu_id:
1593 case R.id.window_three_menu_id:
1594 case R.id.window_four_menu_id:
1595 case R.id.window_five_menu_id:
1596 case R.id.window_six_menu_id:
1597 case R.id.window_seven_menu_id:
1598 case R.id.window_eight_menu_id:
1599 {
1600 int menuid = item.getItemId();
1601 for (int id = 0; id < WINDOW_SHORTCUT_ID_ARRAY.length; id++) {
1602 if (WINDOW_SHORTCUT_ID_ARRAY[id] == menuid) {
Grace Kloba22ac16e2009-10-07 18:00:23 -07001603 Tab desiredTab = mTabControl.getTab(id);
The Android Open Source Project0c908882009-03-03 19:32:16 -08001604 if (desiredTab != null &&
1605 desiredTab != mTabControl.getCurrentTab()) {
Leon Scroggins1f005d32009-08-10 17:36:42 -04001606 switchToTab(id);
The Android Open Source Project0c908882009-03-03 19:32:16 -08001607 }
1608 break;
1609 }
1610 }
1611 }
1612 break;
1613
1614 default:
1615 if (!super.onOptionsItemSelected(item)) {
1616 return false;
1617 }
1618 // Otherwise fall through.
1619 }
1620 mCanChord = false;
1621 return true;
1622 }
1623
1624 public void closeFind() {
1625 mMenuState = R.id.MAIN_MENU;
1626 }
1627
Grace Kloba22ac16e2009-10-07 18:00:23 -07001628 @Override
1629 public boolean onPrepareOptionsMenu(Menu menu) {
The Android Open Source Project0c908882009-03-03 19:32:16 -08001630 // This happens when the user begins to hold down the menu key, so
1631 // allow them to chord to get a shortcut.
1632 mCanChord = true;
1633 // Note: setVisible will decide whether an item is visible; while
1634 // setEnabled() will decide whether an item is enabled, which also means
1635 // whether the matching shortcut key will function.
1636 super.onPrepareOptionsMenu(menu);
1637 switch (mMenuState) {
The Android Open Source Project0c908882009-03-03 19:32:16 -08001638 case EMPTY_MENU:
1639 if (mCurrentMenuState != mMenuState) {
1640 menu.setGroupVisible(R.id.MAIN_MENU, false);
1641 menu.setGroupEnabled(R.id.MAIN_MENU, false);
1642 menu.setGroupEnabled(R.id.MAIN_SHORTCUT_MENU, false);
The Android Open Source Project0c908882009-03-03 19:32:16 -08001643 }
1644 break;
1645 default:
1646 if (mCurrentMenuState != mMenuState) {
1647 menu.setGroupVisible(R.id.MAIN_MENU, true);
1648 menu.setGroupEnabled(R.id.MAIN_MENU, true);
1649 menu.setGroupEnabled(R.id.MAIN_SHORTCUT_MENU, true);
The Android Open Source Project0c908882009-03-03 19:32:16 -08001650 }
1651 final WebView w = getTopWindow();
1652 boolean canGoBack = false;
1653 boolean canGoForward = false;
1654 boolean isHome = false;
1655 if (w != null) {
1656 canGoBack = w.canGoBack();
1657 canGoForward = w.canGoForward();
1658 isHome = mSettings.getHomePage().equals(w.getUrl());
1659 }
1660 final MenuItem back = menu.findItem(R.id.back_menu_id);
1661 back.setEnabled(canGoBack);
1662
1663 final MenuItem home = menu.findItem(R.id.homepage_menu_id);
1664 home.setEnabled(!isHome);
1665
1666 menu.findItem(R.id.forward_menu_id)
1667 .setEnabled(canGoForward);
1668
Leon Scrogginsa81a7642009-08-31 17:05:41 -04001669 menu.findItem(R.id.new_tab_menu_id).setEnabled(
Grace Kloba22ac16e2009-10-07 18:00:23 -07001670 mTabControl.canCreateNewTab());
Leon Scrogginsa81a7642009-08-31 17:05:41 -04001671
The Android Open Source Project0c908882009-03-03 19:32:16 -08001672 // decide whether to show the share link option
1673 PackageManager pm = getPackageManager();
1674 Intent send = new Intent(Intent.ACTION_SEND);
1675 send.setType("text/plain");
1676 ResolveInfo ri = pm.resolveActivity(send, PackageManager.MATCH_DEFAULT_ONLY);
1677 menu.findItem(R.id.share_page_menu_id).setVisible(ri != null);
1678
The Android Open Source Project0c908882009-03-03 19:32:16 -08001679 boolean isNavDump = mSettings.isNavDump();
1680 final MenuItem nav = menu.findItem(R.id.dump_nav_menu_id);
1681 nav.setVisible(isNavDump);
1682 nav.setEnabled(isNavDump);
Andrei Popescu7a8b88b2010-02-02 00:30:38 +00001683
1684 boolean showDebugSettings = mSettings.showDebugSettings();
1685 final MenuItem counter = menu.findItem(R.id.dump_counters_menu_id);
1686 counter.setVisible(showDebugSettings);
1687 counter.setEnabled(showDebugSettings);
1688
The Android Open Source Project0c908882009-03-03 19:32:16 -08001689 break;
1690 }
1691 mCurrentMenuState = mMenuState;
1692 return true;
1693 }
1694
1695 @Override
1696 public void onCreateContextMenu(ContextMenu menu, View v,
1697 ContextMenuInfo menuInfo) {
1698 WebView webview = (WebView) v;
1699 WebView.HitTestResult result = webview.getHitTestResult();
1700 if (result == null) {
1701 return;
1702 }
1703
1704 int type = result.getType();
1705 if (type == WebView.HitTestResult.UNKNOWN_TYPE) {
1706 Log.w(LOGTAG,
1707 "We should not show context menu when nothing is touched");
1708 return;
1709 }
1710 if (type == WebView.HitTestResult.EDIT_TEXT_TYPE) {
1711 // let TextView handles context menu
1712 return;
1713 }
1714
1715 // Note, http://b/issue?id=1106666 is requesting that
1716 // an inflated menu can be used again. This is not available
1717 // yet, so inflate each time (yuk!)
1718 MenuInflater inflater = getMenuInflater();
1719 inflater.inflate(R.menu.browsercontext, menu);
1720
1721 // Show the correct menu group
1722 String extra = result.getExtra();
1723 menu.setGroupVisible(R.id.PHONE_MENU,
1724 type == WebView.HitTestResult.PHONE_TYPE);
1725 menu.setGroupVisible(R.id.EMAIL_MENU,
1726 type == WebView.HitTestResult.EMAIL_TYPE);
1727 menu.setGroupVisible(R.id.GEO_MENU,
1728 type == WebView.HitTestResult.GEO_TYPE);
1729 menu.setGroupVisible(R.id.IMAGE_MENU,
1730 type == WebView.HitTestResult.IMAGE_TYPE
1731 || type == WebView.HitTestResult.SRC_IMAGE_ANCHOR_TYPE);
1732 menu.setGroupVisible(R.id.ANCHOR_MENU,
1733 type == WebView.HitTestResult.SRC_ANCHOR_TYPE
1734 || type == WebView.HitTestResult.SRC_IMAGE_ANCHOR_TYPE);
1735
1736 // Setup custom handling depending on the type
1737 switch (type) {
1738 case WebView.HitTestResult.PHONE_TYPE:
1739 menu.setHeaderTitle(Uri.decode(extra));
1740 menu.findItem(R.id.dial_context_menu_id).setIntent(
1741 new Intent(Intent.ACTION_VIEW, Uri
1742 .parse(WebView.SCHEME_TEL + extra)));
1743 Intent addIntent = new Intent(Intent.ACTION_INSERT_OR_EDIT);
1744 addIntent.putExtra(Insert.PHONE, Uri.decode(extra));
Cary Clark5e335a32009-09-22 14:53:11 -04001745 addIntent.setType(ContactsContract.Contacts.CONTENT_ITEM_TYPE);
The Android Open Source Project0c908882009-03-03 19:32:16 -08001746 menu.findItem(R.id.add_contact_context_menu_id).setIntent(
1747 addIntent);
1748 menu.findItem(R.id.copy_phone_context_menu_id).setOnMenuItemClickListener(
1749 new Copy(extra));
1750 break;
1751
1752 case WebView.HitTestResult.EMAIL_TYPE:
1753 menu.setHeaderTitle(extra);
1754 menu.findItem(R.id.email_context_menu_id).setIntent(
1755 new Intent(Intent.ACTION_VIEW, Uri
1756 .parse(WebView.SCHEME_MAILTO + extra)));
1757 menu.findItem(R.id.copy_mail_context_menu_id).setOnMenuItemClickListener(
1758 new Copy(extra));
1759 break;
1760
1761 case WebView.HitTestResult.GEO_TYPE:
1762 menu.setHeaderTitle(extra);
1763 menu.findItem(R.id.map_context_menu_id).setIntent(
1764 new Intent(Intent.ACTION_VIEW, Uri
1765 .parse(WebView.SCHEME_GEO
1766 + URLEncoder.encode(extra))));
1767 menu.findItem(R.id.copy_geo_context_menu_id).setOnMenuItemClickListener(
1768 new Copy(extra));
1769 break;
1770
1771 case WebView.HitTestResult.SRC_ANCHOR_TYPE:
1772 case WebView.HitTestResult.SRC_IMAGE_ANCHOR_TYPE:
1773 TextView titleView = (TextView) LayoutInflater.from(this)
1774 .inflate(android.R.layout.browser_link_context_header,
1775 null);
1776 titleView.setText(extra);
1777 menu.setHeaderView(titleView);
1778 // decide whether to show the open link in new tab option
1779 menu.findItem(R.id.open_newtab_context_menu_id).setVisible(
Grace Kloba22ac16e2009-10-07 18:00:23 -07001780 mTabControl.canCreateNewTab());
Ben Murdochde353622009-10-12 10:29:00 +01001781 menu.findItem(R.id.bookmark_context_menu_id).setVisible(
1782 Bookmarks.urlHasAcceptableScheme(extra));
The Android Open Source Project0c908882009-03-03 19:32:16 -08001783 PackageManager pm = getPackageManager();
1784 Intent send = new Intent(Intent.ACTION_SEND);
1785 send.setType("text/plain");
1786 ResolveInfo ri = pm.resolveActivity(send, PackageManager.MATCH_DEFAULT_ONLY);
1787 menu.findItem(R.id.share_link_context_menu_id).setVisible(ri != null);
1788 if (type == WebView.HitTestResult.SRC_ANCHOR_TYPE) {
1789 break;
1790 }
1791 // otherwise fall through to handle image part
1792 case WebView.HitTestResult.IMAGE_TYPE:
1793 if (type == WebView.HitTestResult.IMAGE_TYPE) {
1794 menu.setHeaderTitle(extra);
1795 }
1796 menu.findItem(R.id.view_image_context_menu_id).setIntent(
1797 new Intent(Intent.ACTION_VIEW, Uri.parse(extra)));
1798 menu.findItem(R.id.download_context_menu_id).
1799 setOnMenuItemClickListener(new Download(extra));
Ben Murdoch4f75ba22009-10-27 11:48:28 +00001800 menu.findItem(R.id.set_wallpaper_context_menu_id).
1801 setOnMenuItemClickListener(new SetAsWallpaper(extra));
The Android Open Source Project0c908882009-03-03 19:32:16 -08001802 break;
1803
1804 default:
1805 Log.w(LOGTAG, "We should not get here.");
1806 break;
1807 }
Leon Scrogginsb2b19f52009-10-09 16:10:00 -04001808 hideFakeTitleBar();
The Android Open Source Project0c908882009-03-03 19:32:16 -08001809 }
1810
The Android Open Source Project0c908882009-03-03 19:32:16 -08001811 // Attach the given tab to the content view.
Grace Klobac928c302009-09-17 11:51:21 -07001812 // this should only be called for the current tab.
Grace Kloba22ac16e2009-10-07 18:00:23 -07001813 private void attachTabToContentView(Tab t) {
Steve Block2bc69912009-07-30 14:45:13 +01001814 // Attach the container that contains the main WebView and any other UI
1815 // associated with the tab.
Patrick Scottd0119532009-09-17 08:00:31 -04001816 t.attachTabToContentView(mContentView);
Ben Murdochbff2d602009-07-01 20:19:05 +01001817
1818 if (mShouldShowErrorConsole) {
Grace Kloba22ac16e2009-10-07 18:00:23 -07001819 ErrorConsoleView errorConsole = t.getErrorConsole(true);
Ben Murdochbff2d602009-07-01 20:19:05 +01001820 if (errorConsole.numberOfErrors() == 0) {
1821 errorConsole.showConsole(ErrorConsoleView.SHOW_NONE);
1822 } else {
1823 errorConsole.showConsole(ErrorConsoleView.SHOW_MINIMIZED);
1824 }
1825
1826 mErrorConsoleContainer.addView(errorConsole,
Romain Guy15b8ec62010-01-08 15:06:43 -08001827 new LinearLayout.LayoutParams(ViewGroup.LayoutParams.MATCH_PARENT,
Ben Murdochbff2d602009-07-01 20:19:05 +01001828 ViewGroup.LayoutParams.WRAP_CONTENT));
1829 }
1830
Leon Scroggins39ab28e2009-09-02 21:20:30 -04001831 WebView view = t.getWebView();
Leon Scroggins55a5bc22009-09-04 17:00:08 -04001832 view.setEmbeddedTitleBar(mTitleBar);
Leon Scroggins58d56c62010-01-28 15:12:40 -05001833 if (t.isInVoiceSearchMode()) {
1834 showVoiceTitleBar(t.getVoiceDisplayTitle());
1835 } else {
1836 revertVoiceTitleBar();
1837 }
The Android Open Source Project0c908882009-03-03 19:32:16 -08001838 // Request focus on the top window.
1839 t.getTopWindow().requestFocus();
1840 }
1841
1842 // Attach a sub window to the main WebView of the given tab.
Grace Kloba22ac16e2009-10-07 18:00:23 -07001843 void attachSubWindow(Tab t) {
Patrick Scottd0119532009-09-17 08:00:31 -04001844 t.attachSubWindow(mContentView);
1845 getTopWindow().requestFocus();
The Android Open Source Project0c908882009-03-03 19:32:16 -08001846 }
1847
1848 // Remove the given tab from the content view.
Grace Kloba22ac16e2009-10-07 18:00:23 -07001849 private void removeTabFromContentView(Tab t) {
Steve Block2bc69912009-07-30 14:45:13 +01001850 // Remove the container that contains the main WebView.
Patrick Scottd0119532009-09-17 08:00:31 -04001851 t.removeTabFromContentView(mContentView);
Ben Murdochbff2d602009-07-01 20:19:05 +01001852
Grace Kloba22ac16e2009-10-07 18:00:23 -07001853 ErrorConsoleView errorConsole = t.getErrorConsole(false);
1854 if (errorConsole != null) {
1855 mErrorConsoleContainer.removeView(errorConsole);
Ben Murdochbff2d602009-07-01 20:19:05 +01001856 }
1857
Leon Scroggins39ab28e2009-09-02 21:20:30 -04001858 WebView view = t.getWebView();
Leon Scrogginsbb85b902009-09-14 19:27:20 -04001859 if (view != null) {
1860 view.setEmbeddedTitleBar(null);
1861 }
The Android Open Source Project0c908882009-03-03 19:32:16 -08001862 }
1863
1864 // Remove the sub window if it exists. Also called by TabControl when the
1865 // user clicks the 'X' to dismiss a sub window.
Grace Kloba22ac16e2009-10-07 18:00:23 -07001866 /* package */ void dismissSubWindow(Tab t) {
Patrick Scottd0119532009-09-17 08:00:31 -04001867 t.removeSubWindow(mContentView);
Grace Kloba22ac16e2009-10-07 18:00:23 -07001868 // dismiss the subwindow. This will destroy the WebView.
1869 t.dismissSubWindow();
Patrick Scottd0119532009-09-17 08:00:31 -04001870 getTopWindow().requestFocus();
The Android Open Source Project0c908882009-03-03 19:32:16 -08001871 }
1872
Leon Scroggins1f005d32009-08-10 17:36:42 -04001873 // A wrapper function of {@link #openTabAndShow(UrlData, boolean, String)}
Mitsuru Oshima25ad8ab2009-06-10 16:26:07 -07001874 // that accepts url as string.
Grace Kloba22ac16e2009-10-07 18:00:23 -07001875 private Tab openTabAndShow(String url, boolean closeOnExit, String appId) {
Leon Scroggins1f005d32009-08-10 17:36:42 -04001876 return openTabAndShow(new UrlData(url), closeOnExit, appId);
The Android Open Source Project0c908882009-03-03 19:32:16 -08001877 }
1878
1879 // This method does a ton of stuff. It will attempt to create a new tab
1880 // if we haven't reached MAX_TABS. Otherwise it uses the current tab. If
Leon Scroggins1f005d32009-08-10 17:36:42 -04001881 // url isn't null, it will load the given url.
Grace Kloba22ac16e2009-10-07 18:00:23 -07001882 /* package */Tab openTabAndShow(UrlData urlData, boolean closeOnExit,
1883 String appId) {
1884 final Tab currentTab = mTabControl.getCurrentTab();
1885 if (mTabControl.canCreateNewTab()) {
1886 final Tab tab = mTabControl.createNewTab(closeOnExit, appId,
1887 urlData.mUrl);
Leon Scroggins1f005d32009-08-10 17:36:42 -04001888 WebView webview = tab.getWebView();
Leon Scroggins0a64ba52009-09-08 15:35:33 -04001889 // If the last tab was removed from the active tabs page, currentTab
1890 // will be null.
1891 if (currentTab != null) {
1892 removeTabFromContentView(currentTab);
1893 }
Patrick Scott8bbd69f2009-08-14 13:35:53 -04001894 // We must set the new tab as the current tab to reflect the old
1895 // animation behavior.
1896 mTabControl.setCurrentTab(tab);
Grace Klobaeb6eef42009-09-15 17:56:32 -07001897 attachTabToContentView(tab);
Leon Scroggins160a7e72009-08-14 18:28:01 -04001898 if (!urlData.isEmpty()) {
Patrick Scott9d53da02010-02-19 10:19:01 -05001899 loadUrlDataIn(tab, urlData);
Leon Scroggins1f005d32009-08-10 17:36:42 -04001900 }
1901 return tab;
1902 } else {
1903 // Get rid of the subwindow if it exists
1904 dismissSubWindow(currentTab);
1905 if (!urlData.isEmpty()) {
1906 // Load the given url.
Patrick Scott9d53da02010-02-19 10:19:01 -05001907 loadUrlDataIn(currentTab, urlData);
The Android Open Source Project0c908882009-03-03 19:32:16 -08001908 }
Leon Scroggins58d56c62010-01-28 15:12:40 -05001909 return currentTab;
The Android Open Source Project0c908882009-03-03 19:32:16 -08001910 }
1911 }
1912
Grace Kloba22ac16e2009-10-07 18:00:23 -07001913 private Tab openTab(String url) {
The Android Open Source Project0c908882009-03-03 19:32:16 -08001914 if (mSettings.openInBackground()) {
Grace Kloba22ac16e2009-10-07 18:00:23 -07001915 Tab t = mTabControl.createNewTab();
The Android Open Source Project0c908882009-03-03 19:32:16 -08001916 if (t != null) {
Leon Scroggins1f005d32009-08-10 17:36:42 -04001917 WebView view = t.getWebView();
Leon Scroggins92472e82010-02-17 16:32:28 -05001918 loadUrl(view, url);
The Android Open Source Project0c908882009-03-03 19:32:16 -08001919 }
Grace Klobac9181842009-04-14 08:53:22 -07001920 return t;
The Android Open Source Project0c908882009-03-03 19:32:16 -08001921 } else {
Leon Scroggins1f005d32009-08-10 17:36:42 -04001922 return openTabAndShow(url, false, null);
The Android Open Source Project0c908882009-03-03 19:32:16 -08001923 }
1924 }
1925
1926 private class Copy implements OnMenuItemClickListener {
1927 private CharSequence mText;
1928
1929 public boolean onMenuItemClick(MenuItem item) {
1930 copy(mText);
1931 return true;
1932 }
1933
1934 public Copy(CharSequence toCopy) {
1935 mText = toCopy;
1936 }
1937 }
1938
1939 private class Download implements OnMenuItemClickListener {
1940 private String mText;
1941
1942 public boolean onMenuItemClick(MenuItem item) {
1943 onDownloadStartNoStream(mText, null, null, null, -1);
1944 return true;
1945 }
1946
1947 public Download(String toDownload) {
1948 mText = toDownload;
1949 }
1950 }
1951
Ben Murdoch4f75ba22009-10-27 11:48:28 +00001952 private class SetAsWallpaper extends Thread implements
1953 OnMenuItemClickListener, DialogInterface.OnCancelListener {
1954 private URL mUrl;
1955 private ProgressDialog mWallpaperProgress;
1956 private boolean mCanceled = false;
1957
1958 public SetAsWallpaper(String url) {
1959 try {
1960 mUrl = new URL(url);
1961 } catch (MalformedURLException e) {
1962 mUrl = null;
1963 }
1964 }
1965
1966 public void onCancel(DialogInterface dialog) {
1967 mCanceled = true;
1968 }
1969
1970 public boolean onMenuItemClick(MenuItem item) {
1971 if (mUrl != null) {
1972 // The user may have tried to set a image with a large file size as their
1973 // background so it may take a few moments to perform the operation. Display
1974 // a progress spinner while it is working.
1975 mWallpaperProgress = new ProgressDialog(BrowserActivity.this);
1976 mWallpaperProgress.setIndeterminate(true);
1977 mWallpaperProgress.setMessage(getText(R.string.progress_dialog_setting_wallpaper));
1978 mWallpaperProgress.setCancelable(true);
1979 mWallpaperProgress.setOnCancelListener(this);
1980 mWallpaperProgress.show();
1981 start();
1982 }
1983 return true;
1984 }
1985
1986 public void run() {
1987 Drawable oldWallpaper = BrowserActivity.this.getWallpaper();
1988 try {
1989 // TODO: This will cause the resource to be downloaded again, when we
1990 // should in most cases be able to grab it from the cache. To fix this
1991 // we should query WebCore to see if we can access a cached version and
1992 // instead open an input stream on that. This pattern could also be used
1993 // in the download manager where the same problem exists.
1994 InputStream inputstream = mUrl.openStream();
1995 if (inputstream != null) {
1996 setWallpaper(inputstream);
1997 }
1998 } catch (IOException e) {
1999 Log.e(LOGTAG, "Unable to set new wallpaper");
2000 // Act as though the user canceled the operation so we try to
2001 // restore the old wallpaper.
2002 mCanceled = true;
2003 }
2004
2005 if (mCanceled) {
2006 // Restore the old wallpaper if the user cancelled whilst we were setting
2007 // the new wallpaper.
2008 int width = oldWallpaper.getIntrinsicWidth();
2009 int height = oldWallpaper.getIntrinsicHeight();
2010 Bitmap bm = Bitmap.createBitmap(width, height, Bitmap.Config.RGB_565);
2011 Canvas canvas = new Canvas(bm);
2012 oldWallpaper.setBounds(0, 0, width, height);
2013 oldWallpaper.draw(canvas);
2014 try {
2015 setWallpaper(bm);
2016 } catch (IOException e) {
2017 Log.e(LOGTAG, "Unable to restore old wallpaper.");
2018 }
2019 mCanceled = false;
2020 }
2021
2022 if (mWallpaperProgress.isShowing()) {
2023 mWallpaperProgress.dismiss();
2024 }
2025 }
2026 }
2027
The Android Open Source Project0c908882009-03-03 19:32:16 -08002028 private void copy(CharSequence text) {
2029 try {
2030 IClipboard clip = IClipboard.Stub.asInterface(ServiceManager.getService("clipboard"));
2031 if (clip != null) {
2032 clip.setClipboardText(text);
2033 }
2034 } catch (android.os.RemoteException e) {
2035 Log.e(LOGTAG, "Copy failed", e);
2036 }
2037 }
2038
2039 /**
The Android Open Source Project0c908882009-03-03 19:32:16 -08002040 * Resets the browser title-view to whatever it must be
2041 * (for example, if we had a loading error)
2042 * When we have a new page, we call resetTitle, when we
2043 * have to reset the titlebar to whatever it used to be
2044 * (for example, if the user chose to stop loading), we
2045 * call resetTitleAndRevertLockIcon.
2046 */
2047 /* package */ void resetTitleAndRevertLockIcon() {
Grace Kloba22ac16e2009-10-07 18:00:23 -07002048 mTabControl.getCurrentTab().revertLockIcon();
2049 updateLockIconToLatest();
The Android Open Source Project0c908882009-03-03 19:32:16 -08002050 resetTitleIconAndProgress();
2051 }
2052
2053 /**
2054 * Reset the title, favicon, and progress.
2055 */
2056 private void resetTitleIconAndProgress() {
2057 WebView current = mTabControl.getCurrentWebView();
2058 if (current == null) {
2059 return;
2060 }
2061 resetTitleAndIcon(current);
2062 int progress = current.getProgress();
Grace Kloba22ac16e2009-10-07 18:00:23 -07002063 current.getWebChromeClient().onProgressChanged(current, progress);
The Android Open Source Project0c908882009-03-03 19:32:16 -08002064 }
2065
2066 // Reset the title and the icon based on the given item.
2067 private void resetTitleAndIcon(WebView view) {
2068 WebHistoryItem item = view.copyBackForwardList().getCurrentItem();
2069 if (item != null) {
Leon Scroggins68579392009-09-15 15:31:54 -04002070 setUrlTitle(item.getUrl(), item.getTitle());
The Android Open Source Project0c908882009-03-03 19:32:16 -08002071 setFavicon(item.getFavicon());
2072 } else {
Leon Scroggins68579392009-09-15 15:31:54 -04002073 setUrlTitle(null, null);
The Android Open Source Project0c908882009-03-03 19:32:16 -08002074 setFavicon(null);
2075 }
2076 }
2077
2078 /**
2079 * Sets a title composed of the URL and the title string.
2080 * @param url The URL of the site being loaded.
2081 * @param title The title of the site being loaded.
2082 */
Grace Kloba22ac16e2009-10-07 18:00:23 -07002083 void setUrlTitle(String url, String title) {
The Android Open Source Project0c908882009-03-03 19:32:16 -08002084 mUrl = url;
2085 mTitle = title;
2086
Leon Scroggins58d56c62010-01-28 15:12:40 -05002087 // If we are in voice search mode, the title has already been set.
2088 if (mTabControl.getCurrentTab().isInVoiceSearchMode()) return;
2089 mTitleBar.setDisplayTitle(url);
2090 mFakeTitleBar.setDisplayTitle(url);
The Android Open Source Project0c908882009-03-03 19:32:16 -08002091 }
2092
2093 /**
The Android Open Source Project0c908882009-03-03 19:32:16 -08002094 * @param url The URL to build a title version of the URL from.
2095 * @return The title version of the URL or null if fails.
2096 * The title version of the URL can be either the URL hostname,
2097 * or the hostname with an "https://" prefix (for secure URLs),
2098 * or an empty string if, for example, the URL in question is a
2099 * file:// URL with no hostname.
2100 */
Leon Scroggins32e14a62009-06-11 10:26:34 -04002101 /* package */ static String buildTitleUrl(String url) {
The Android Open Source Project0c908882009-03-03 19:32:16 -08002102 String titleUrl = null;
2103
2104 if (url != null) {
2105 try {
2106 // parse the url string
2107 URL urlObj = new URL(url);
2108 if (urlObj != null) {
2109 titleUrl = "";
2110
2111 String protocol = urlObj.getProtocol();
2112 String host = urlObj.getHost();
2113
2114 if (host != null && 0 < host.length()) {
2115 titleUrl = host;
2116 if (protocol != null) {
2117 // if a secure site, add an "https://" prefix!
2118 if (protocol.equalsIgnoreCase("https")) {
2119 titleUrl = protocol + "://" + host;
2120 }
2121 }
2122 }
2123 }
2124 } catch (MalformedURLException e) {}
2125 }
2126
2127 return titleUrl;
2128 }
2129
2130 // Set the favicon in the title bar.
Grace Kloba22ac16e2009-10-07 18:00:23 -07002131 void setFavicon(Bitmap icon) {
Leon Scroggins68579392009-09-15 15:31:54 -04002132 mTitleBar.setFavicon(icon);
Leon Scrogginsfe87bd32009-10-06 10:10:00 -04002133 mFakeTitleBar.setFavicon(icon);
The Android Open Source Project0c908882009-03-03 19:32:16 -08002134 }
2135
2136 /**
Leon Scroggins0a64ba52009-09-08 15:35:33 -04002137 * Close the tab, remove its associated title bar, and adjust mTabControl's
2138 * current tab to a valid value.
Leon Scroggins1f005d32009-08-10 17:36:42 -04002139 */
Grace Kloba22ac16e2009-10-07 18:00:23 -07002140 /* package */ void closeTab(Tab t) {
Leon Scroggins0a64ba52009-09-08 15:35:33 -04002141 int currentIndex = mTabControl.getCurrentIndex();
2142 int removeIndex = mTabControl.getTabIndex(t);
Leon Scroggins1f005d32009-08-10 17:36:42 -04002143 mTabControl.removeTab(t);
Leon Scroggins0a64ba52009-09-08 15:35:33 -04002144 if (currentIndex >= removeIndex && currentIndex != 0) {
2145 currentIndex--;
2146 }
2147 mTabControl.setCurrentTab(mTabControl.getTab(currentIndex));
Andrei Popescua5bf1de2009-09-23 16:39:23 +01002148 resetTitleIconAndProgress();
The Android Open Source Project0c908882009-03-03 19:32:16 -08002149 }
2150
2151 private void goBackOnePageOrQuit() {
Grace Kloba22ac16e2009-10-07 18:00:23 -07002152 Tab current = mTabControl.getCurrentTab();
The Android Open Source Project0c908882009-03-03 19:32:16 -08002153 if (current == null) {
2154 /*
2155 * Instead of finishing the activity, simply push this to the back
2156 * of the stack and let ActivityManager to choose the foreground
2157 * activity. As BrowserActivity is singleTask, it will be always the
2158 * root of the task. So we can use either true or false for
2159 * moveTaskToBack().
2160 */
2161 moveTaskToBack(true);
Grace Kloba00d85e72009-09-23 18:50:05 -07002162 return;
The Android Open Source Project0c908882009-03-03 19:32:16 -08002163 }
2164 WebView w = current.getWebView();
2165 if (w.canGoBack()) {
2166 w.goBack();
2167 } else {
2168 // Check to see if we are closing a window that was created by
2169 // another window. If so, we switch back to that window.
Grace Kloba22ac16e2009-10-07 18:00:23 -07002170 Tab parent = current.getParentTab();
The Android Open Source Project0c908882009-03-03 19:32:16 -08002171 if (parent != null) {
Leon Scroggins1f005d32009-08-10 17:36:42 -04002172 switchToTab(mTabControl.getTabIndex(parent));
2173 // Now we close the other tab
2174 closeTab(current);
The Android Open Source Project0c908882009-03-03 19:32:16 -08002175 } else {
2176 if (current.closeOnExit()) {
Grace Kloba22ac16e2009-10-07 18:00:23 -07002177 // force the tab's inLoad() to be false as we are going to
2178 // either finish the activity or remove the tab. This will
2179 // ensure pauseWebViewTimers() taking action.
2180 mTabControl.getCurrentTab().clearInLoad();
The Android Open Source Project0c908882009-03-03 19:32:16 -08002181 if (mTabControl.getTabCount() == 1) {
2182 finish();
2183 return;
2184 }
Mike Reed7bfa63b2009-05-28 11:08:32 -04002185 // call pauseWebViewTimers() now, we won't be able to call
2186 // it in onPause() as the WebView won't be valid.
Grace Klobaec1b5ad2009-08-18 08:42:32 -07002187 // Temporarily change mActivityInPause to be true as
2188 // pauseWebViewTimers() will do nothing if mActivityInPause
2189 // is false.
Grace Kloba918e1d72009-08-13 14:55:06 -07002190 boolean savedState = mActivityInPause;
2191 if (savedState) {
Grace Klobaec1b5ad2009-08-18 08:42:32 -07002192 Log.e(LOGTAG, "BrowserActivity is already paused "
2193 + "while handing goBackOnePageOrQuit.");
Grace Kloba918e1d72009-08-13 14:55:06 -07002194 }
2195 mActivityInPause = true;
Mike Reed7bfa63b2009-05-28 11:08:32 -04002196 pauseWebViewTimers();
Grace Kloba918e1d72009-08-13 14:55:06 -07002197 mActivityInPause = savedState;
The Android Open Source Project0c908882009-03-03 19:32:16 -08002198 removeTabFromContentView(current);
2199 mTabControl.removeTab(current);
2200 }
2201 /*
2202 * Instead of finishing the activity, simply push this to the back
2203 * of the stack and let ActivityManager to choose the foreground
2204 * activity. As BrowserActivity is singleTask, it will be always the
2205 * root of the task. So we can use either true or false for
2206 * moveTaskToBack().
2207 */
2208 moveTaskToBack(true);
2209 }
2210 }
2211 }
2212
Grace Kloba22ac16e2009-10-07 18:00:23 -07002213 boolean isMenuDown() {
2214 return mMenuIsDown;
2215 }
2216
Grace Kloba5942df02009-09-18 11:48:29 -07002217 @Override
2218 public boolean onKeyDown(int keyCode, KeyEvent event) {
Leon Scrogginsf65b50d2009-12-08 10:44:28 -05002219 // Even if MENU is already held down, we need to call to super to open
2220 // the IME on long press.
2221 if (KeyEvent.KEYCODE_MENU == keyCode) {
2222 mMenuIsDown = true;
2223 return super.onKeyDown(keyCode, event);
2224 }
Grace Kloba5942df02009-09-18 11:48:29 -07002225 // The default key mode is DEFAULT_KEYS_SEARCH_LOCAL. As the MENU is
2226 // still down, we don't want to trigger the search. Pretend to consume
2227 // the key and do nothing.
2228 if (mMenuIsDown) return true;
The Android Open Source Project0c908882009-03-03 19:32:16 -08002229
Grace Kloba5942df02009-09-18 11:48:29 -07002230 switch(keyCode) {
Grace Kloba5942df02009-09-18 11:48:29 -07002231 case KeyEvent.KEYCODE_SPACE:
Grace Klobada0fe552009-09-22 18:17:24 -07002232 // WebView/WebTextView handle the keys in the KeyDown. As
2233 // the Activity's shortcut keys are only handled when WebView
2234 // doesn't, have to do it in onKeyDown instead of onKeyUp.
2235 if (event.isShiftPressed()) {
2236 getTopWindow().pageUp(false);
2237 } else {
2238 getTopWindow().pageDown(false);
2239 }
Grace Kloba5942df02009-09-18 11:48:29 -07002240 return true;
2241 case KeyEvent.KEYCODE_BACK:
2242 if (event.getRepeatCount() == 0) {
2243 event.startTracking();
2244 return true;
2245 } else if (mCustomView == null && mActiveTabsPage == null
2246 && event.isLongPress()) {
2247 bookmarksOrHistoryPicker(true);
2248 return true;
The Android Open Source Project0c908882009-03-03 19:32:16 -08002249 }
Grace Kloba5942df02009-09-18 11:48:29 -07002250 break;
The Android Open Source Project0c908882009-03-03 19:32:16 -08002251 }
Grace Kloba5942df02009-09-18 11:48:29 -07002252 return super.onKeyDown(keyCode, event);
The Android Open Source Project0c908882009-03-03 19:32:16 -08002253 }
2254
Grace Kloba5942df02009-09-18 11:48:29 -07002255 @Override
2256 public boolean onKeyUp(int keyCode, KeyEvent event) {
2257 switch(keyCode) {
2258 case KeyEvent.KEYCODE_MENU:
2259 mMenuIsDown = false;
2260 break;
Grace Kloba5942df02009-09-18 11:48:29 -07002261 case KeyEvent.KEYCODE_BACK:
2262 if (event.isTracking() && !event.isCanceled()) {
2263 if (mCustomView != null) {
2264 // if a custom view is showing, hide it
Grace Kloba22ac16e2009-10-07 18:00:23 -07002265 mTabControl.getCurrentWebView().getWebChromeClient()
2266 .onHideCustomView();
Grace Kloba5942df02009-09-18 11:48:29 -07002267 } else if (mActiveTabsPage != null) {
2268 // if tab page is showing, hide it
2269 removeActiveTabPage(true);
The Android Open Source Project0c908882009-03-03 19:32:16 -08002270 } else {
Grace Kloba5942df02009-09-18 11:48:29 -07002271 WebView subwindow = mTabControl.getCurrentSubWindow();
2272 if (subwindow != null) {
2273 if (subwindow.canGoBack()) {
2274 subwindow.goBack();
2275 } else {
2276 dismissSubWindow(mTabControl.getCurrentTab());
2277 }
2278 } else {
2279 goBackOnePageOrQuit();
2280 }
The Android Open Source Project0c908882009-03-03 19:32:16 -08002281 }
Grace Kloba5942df02009-09-18 11:48:29 -07002282 return true;
2283 }
2284 break;
The Android Open Source Project0c908882009-03-03 19:32:16 -08002285 }
Grace Kloba5942df02009-09-18 11:48:29 -07002286 return super.onKeyUp(keyCode, event);
The Android Open Source Project0c908882009-03-03 19:32:16 -08002287 }
2288
Leon Scroggins68579392009-09-15 15:31:54 -04002289 /* package */ void stopLoading() {
Ben Murdochb7cc8b42009-09-28 10:59:09 +01002290 mDidStopLoad = true;
The Android Open Source Project0c908882009-03-03 19:32:16 -08002291 resetTitleAndRevertLockIcon();
2292 WebView w = getTopWindow();
2293 w.stopLoading();
Grace Kloba22ac16e2009-10-07 18:00:23 -07002294 // FIXME: before refactor, it is using mWebViewClient. So I keep the
2295 // same logic here. But for subwindow case, should we call into the main
2296 // WebView's onPageFinished as we never call its onPageStarted and if
2297 // the page finishes itself, we don't call onPageFinished.
2298 mTabControl.getCurrentWebView().getWebViewClient().onPageFinished(w,
2299 w.getUrl());
The Android Open Source Project0c908882009-03-03 19:32:16 -08002300
2301 cancelStopToast();
2302 mStopToast = Toast
2303 .makeText(this, R.string.stopping, Toast.LENGTH_SHORT);
2304 mStopToast.show();
2305 }
2306
Grace Kloba22ac16e2009-10-07 18:00:23 -07002307 boolean didUserStopLoading() {
2308 return mDidStopLoad;
2309 }
2310
The Android Open Source Project0c908882009-03-03 19:32:16 -08002311 private void cancelStopToast() {
2312 if (mStopToast != null) {
2313 mStopToast.cancel();
2314 mStopToast = null;
2315 }
2316 }
2317
Grace Kloba22ac16e2009-10-07 18:00:23 -07002318 // called by a UI or non-UI thread to post the message
2319 public void postMessage(int what, int arg1, int arg2, Object obj,
2320 long delayMillis) {
2321 mHandler.sendMessageDelayed(mHandler.obtainMessage(what, arg1, arg2,
2322 obj), delayMillis);
2323 }
2324
2325 // called by a UI or non-UI thread to remove the message
2326 void removeMessages(int what, Object object) {
2327 mHandler.removeMessages(what, object);
The Android Open Source Project0c908882009-03-03 19:32:16 -08002328 }
2329
2330 // public message ids
2331 public final static int LOAD_URL = 1001;
2332 public final static int STOP_LOAD = 1002;
2333
2334 // Message Ids
2335 private static final int FOCUS_NODE_HREF = 102;
2336 private static final int CANCEL_CREDS_REQUEST = 103;
Grace Kloba92c18a52009-07-31 23:48:32 -07002337 private static final int RELEASE_WAKELOCK = 107;
The Android Open Source Project0c908882009-03-03 19:32:16 -08002338
Grace Kloba22ac16e2009-10-07 18:00:23 -07002339 static final int UPDATE_BOOKMARK_THUMBNAIL = 108;
Ben Murdoch2694e232009-09-29 09:41:11 +01002340
The Android Open Source Project0c908882009-03-03 19:32:16 -08002341 // Private handler for handling javascript and saving passwords
2342 private Handler mHandler = new Handler() {
2343
2344 public void handleMessage(Message msg) {
2345 switch (msg.what) {
The Android Open Source Project0c908882009-03-03 19:32:16 -08002346 case FOCUS_NODE_HREF:
Ben Murdoch2694e232009-09-29 09:41:11 +01002347 {
The Android Open Source Project0c908882009-03-03 19:32:16 -08002348 String url = (String) msg.getData().get("url");
Ben Murdoch90d088c2009-11-17 18:14:04 +00002349 String title = (String) msg.getData().get("title");
The Android Open Source Project0c908882009-03-03 19:32:16 -08002350 if (url == null || url.length() == 0) {
2351 break;
2352 }
2353 HashMap focusNodeMap = (HashMap) msg.obj;
2354 WebView view = (WebView) focusNodeMap.get("webview");
2355 // Only apply the action if the top window did not change.
2356 if (getTopWindow() != view) {
2357 break;
2358 }
2359 switch (msg.arg1) {
2360 case R.id.open_context_menu_id:
2361 case R.id.view_image_context_menu_id:
Leon Scroggins92472e82010-02-17 16:32:28 -05002362 loadUrlFromContext(getTopWindow(), url);
The Android Open Source Project0c908882009-03-03 19:32:16 -08002363 break;
2364 case R.id.open_newtab_context_menu_id:
Grace Kloba22ac16e2009-10-07 18:00:23 -07002365 final Tab parent = mTabControl.getCurrentTab();
2366 final Tab newTab = openTab(url);
Grace Klobac9181842009-04-14 08:53:22 -07002367 if (newTab != parent) {
2368 parent.addChildTab(newTab);
2369 }
The Android Open Source Project0c908882009-03-03 19:32:16 -08002370 break;
2371 case R.id.bookmark_context_menu_id:
2372 Intent intent = new Intent(BrowserActivity.this,
2373 AddBookmarkPage.class);
2374 intent.putExtra("url", url);
Ben Murdoch90d088c2009-11-17 18:14:04 +00002375 intent.putExtra("title", title);
The Android Open Source Project0c908882009-03-03 19:32:16 -08002376 startActivity(intent);
2377 break;
2378 case R.id.share_link_context_menu_id:
Leon Scroggins96afcb12009-12-10 12:35:56 -05002379 // See if this site has been visited before
2380 StringBuilder sb = new StringBuilder(
2381 Browser.BookmarkColumns.URL + " = ");
2382 DatabaseUtils.appendEscapedSQLString(sb, url);
2383 Cursor c = mResolver.query(Browser.BOOKMARKS_URI,
2384 Browser.HISTORY_PROJECTION,
2385 sb.toString(),
2386 null,
2387 null);
2388 if (c.moveToFirst()) {
2389 // The site has been visited before, so grab the
2390 // info from the database.
2391 Bitmap favicon = null;
2392 Bitmap thumbnail = null;
2393 String linkTitle = c.getString(Browser.
2394 HISTORY_PROJECTION_TITLE_INDEX);
2395 byte[] data = c.getBlob(Browser.
2396 HISTORY_PROJECTION_FAVICON_INDEX);
2397 if (data != null) {
2398 favicon = BitmapFactory.decodeByteArray(
2399 data, 0, data.length);
2400 }
2401 data = c.getBlob(Browser.
2402 HISTORY_PROJECTION_THUMBNAIL_INDEX);
2403 if (data != null) {
2404 thumbnail = BitmapFactory.decodeByteArray(
2405 data, 0, data.length);
2406 }
2407 sharePage(BrowserActivity.this,
2408 linkTitle, url, favicon, thumbnail);
2409 } else {
2410 Browser.sendString(BrowserActivity.this, url,
2411 getString(
2412 R.string.choosertitle_sharevia));
2413 }
The Android Open Source Project0c908882009-03-03 19:32:16 -08002414 break;
2415 case R.id.copy_link_context_menu_id:
2416 copy(url);
2417 break;
2418 case R.id.save_link_context_menu_id:
2419 case R.id.download_context_menu_id:
2420 onDownloadStartNoStream(url, null, null, null, -1);
2421 break;
2422 }
2423 break;
Ben Murdoch2694e232009-09-29 09:41:11 +01002424 }
The Android Open Source Project0c908882009-03-03 19:32:16 -08002425
2426 case LOAD_URL:
Leon Scroggins92472e82010-02-17 16:32:28 -05002427 loadUrlFromContext(getTopWindow(), (String) msg.obj);
The Android Open Source Project0c908882009-03-03 19:32:16 -08002428 break;
2429
2430 case STOP_LOAD:
2431 stopLoading();
2432 break;
2433
2434 case CANCEL_CREDS_REQUEST:
2435 resumeAfterCredentials();
2436 break;
2437
The Android Open Source Project0c908882009-03-03 19:32:16 -08002438 case RELEASE_WAKELOCK:
2439 if (mWakeLock.isHeld()) {
2440 mWakeLock.release();
Grace Kloba5d0e02e2009-10-05 15:15:36 -07002441 // if we reach here, Browser should be still in the
2442 // background loading after WAKELOCK_TIMEOUT (5-min).
2443 // To avoid burning the battery, stop loading.
2444 mTabControl.stopAllLoading();
The Android Open Source Project0c908882009-03-03 19:32:16 -08002445 }
2446 break;
Ben Murdoch2694e232009-09-29 09:41:11 +01002447
2448 case UPDATE_BOOKMARK_THUMBNAIL:
2449 WebView view = (WebView) msg.obj;
2450 if (view != null) {
2451 updateScreenshot(view);
2452 }
2453 break;
The Android Open Source Project0c908882009-03-03 19:32:16 -08002454 }
2455 }
2456 };
2457
Leon Scroggins96afcb12009-12-10 12:35:56 -05002458 /**
2459 * Share a page, providing the title, url, favicon, and a screenshot. Uses
2460 * an {@link Intent} to launch the Activity chooser.
2461 * @param c Context used to launch a new Activity.
2462 * @param title Title of the page. Stored in the Intent with
2463 * {@link Browser#EXTRA_SHARE_TITLE}
2464 * @param url URL of the page. Stored in the Intent with
2465 * {@link Intent#EXTRA_TEXT}
2466 * @param favicon Bitmap of the favicon for the page. Stored in the Intent
2467 * with {@link Browser#EXTRA_SHARE_FAVICON}
2468 * @param screenshot Bitmap of a screenshot of the page. Stored in the
2469 * Intent with {@link Browser#EXTRA_SHARE_SCREENSHOT}
2470 */
2471 public static final void sharePage(Context c, String title, String url,
2472 Bitmap favicon, Bitmap screenshot) {
2473 Intent send = new Intent(Intent.ACTION_SEND);
2474 send.setType("text/plain");
2475 send.putExtra(Intent.EXTRA_TEXT, url);
2476 send.putExtra(Browser.EXTRA_SHARE_TITLE, title);
2477 send.putExtra(Browser.EXTRA_SHARE_FAVICON, favicon);
2478 send.putExtra(Browser.EXTRA_SHARE_SCREENSHOT, screenshot);
2479 try {
2480 c.startActivity(Intent.createChooser(send, c.getString(
2481 R.string.choosertitle_sharevia)));
2482 } catch(android.content.ActivityNotFoundException ex) {
2483 // if no app handles it, do nothing
2484 }
2485 }
2486
Leon Scroggins89c6d362009-07-15 16:54:37 -04002487 private void updateScreenshot(WebView view) {
2488 // If this is a bookmarked site, add a screenshot to the database.
2489 // FIXME: When should we update? Every time?
2490 // FIXME: Would like to make sure there is actually something to
2491 // draw, but the API for that (WebViewCore.pictureReady()) is not
2492 // currently accessible here.
Ben Murdochaac7aa62009-09-17 16:57:40 +01002493
Patrick Scott3918d442009-08-04 13:22:29 -04002494 ContentResolver cr = getContentResolver();
2495 final Cursor c = BrowserBookmarksAdapter.queryBookmarksForUrl(
Ben Murdochaac7aa62009-09-17 16:57:40 +01002496 cr, view.getOriginalUrl(), view.getUrl(), true);
Patrick Scott3918d442009-08-04 13:22:29 -04002497 if (c != null) {
Leon Scroggins89c6d362009-07-15 16:54:37 -04002498 boolean succeed = c.moveToFirst();
2499 ContentValues values = null;
2500 while (succeed) {
2501 if (values == null) {
2502 final ByteArrayOutputStream os
2503 = new ByteArrayOutputStream();
Ben Murdochdcc2b6f2009-09-21 14:29:20 +01002504 Bitmap bm = createScreenshot(view);
Leon Scroggins45800572009-09-29 16:38:47 -04002505 if (bm == null) {
2506 c.close();
2507 return;
2508 }
Leon Scroggins89c6d362009-07-15 16:54:37 -04002509 bm.compress(Bitmap.CompressFormat.PNG, 100, os);
2510 values = new ContentValues();
2511 values.put(Browser.BookmarkColumns.THUMBNAIL,
2512 os.toByteArray());
2513 }
2514 cr.update(ContentUris.withAppendedId(Browser.BOOKMARKS_URI,
2515 c.getInt(0)), values, null, null);
2516 succeed = c.moveToNext();
2517 }
2518 c.close();
2519 }
2520 }
2521
Leon Scroggins06ec5f22009-09-17 12:46:04 -04002522 /**
Leon Scrogginsf8551612009-09-24 16:06:02 -04002523 * Values for the size of the thumbnail created when taking a screenshot.
2524 * Lazily initialized. Instead of using these directly, use
2525 * getDesiredThumbnailWidth() or getDesiredThumbnailHeight().
Leon Scroggins06ec5f22009-09-17 12:46:04 -04002526 */
Leon Scrogginsf8551612009-09-24 16:06:02 -04002527 private static int THUMBNAIL_WIDTH = 0;
2528 private static int THUMBNAIL_HEIGHT = 0;
2529
2530 /**
2531 * Return the desired width for thumbnail screenshots, which are stored in
2532 * the database, and used on the bookmarks screen.
2533 * @param context Context for finding out the density of the screen.
2534 * @return int desired width for thumbnail screenshot.
2535 */
2536 /* package */ static int getDesiredThumbnailWidth(Context context) {
2537 if (THUMBNAIL_WIDTH == 0) {
2538 float density = context.getResources().getDisplayMetrics().density;
2539 THUMBNAIL_WIDTH = (int) (90 * density);
2540 THUMBNAIL_HEIGHT = (int) (80 * density);
2541 }
2542 return THUMBNAIL_WIDTH;
2543 }
2544
2545 /**
2546 * Return the desired height for thumbnail screenshots, which are stored in
2547 * the database, and used on the bookmarks screen.
2548 * @param context Context for finding out the density of the screen.
2549 * @return int desired height for thumbnail screenshot.
2550 */
2551 /* package */ static int getDesiredThumbnailHeight(Context context) {
2552 // To ensure that they are both initialized.
2553 getDesiredThumbnailWidth(context);
2554 return THUMBNAIL_HEIGHT;
2555 }
Leon Scroggins06ec5f22009-09-17 12:46:04 -04002556
Ben Murdochdcc2b6f2009-09-21 14:29:20 +01002557 private Bitmap createScreenshot(WebView view) {
2558 Picture thumbnail = view.capturePicture();
Leon Scroggins45800572009-09-29 16:38:47 -04002559 if (thumbnail == null) {
2560 return null;
2561 }
Leon Scrogginsf8551612009-09-24 16:06:02 -04002562 Bitmap bm = Bitmap.createBitmap(getDesiredThumbnailWidth(this),
2563 getDesiredThumbnailHeight(this), Bitmap.Config.ARGB_4444);
Ben Murdochdcc2b6f2009-09-21 14:29:20 +01002564 Canvas canvas = new Canvas(bm);
2565 // May need to tweak these values to determine what is the
2566 // best scale factor
Ben Murdoch2694e232009-09-29 09:41:11 +01002567 int thumbnailWidth = thumbnail.getWidth();
Ben Murdochae59c3f2009-10-20 18:30:28 +01002568 int thumbnailHeight = thumbnail.getHeight();
2569 float scaleFactorX = 1.0f;
2570 float scaleFactorY = 1.0f;
Ben Murdoch2694e232009-09-29 09:41:11 +01002571 if (thumbnailWidth > 0) {
Ben Murdochae59c3f2009-10-20 18:30:28 +01002572 scaleFactorX = (float) getDesiredThumbnailWidth(this) /
Ben Murdoch2694e232009-09-29 09:41:11 +01002573 (float)thumbnailWidth;
Ben Murdochae59c3f2009-10-20 18:30:28 +01002574 } else {
2575 return null;
Leon Scroggins06ec5f22009-09-17 12:46:04 -04002576 }
Ben Murdochae59c3f2009-10-20 18:30:28 +01002577
2578 if (view.getWidth() > view.getHeight() &&
2579 thumbnailHeight < view.getHeight() && thumbnailHeight > 0) {
2580 // If the device is in landscape and the page is shorter
2581 // than the height of the view, stretch the thumbnail to fill the
2582 // space.
2583 scaleFactorY = (float) getDesiredThumbnailHeight(this) /
2584 (float)thumbnailHeight;
2585 } else {
2586 // In the portrait case, this looks nice.
2587 scaleFactorY = scaleFactorX;
2588 }
2589
2590 canvas.scale(scaleFactorX, scaleFactorY);
2591
Ben Murdochdcc2b6f2009-09-21 14:29:20 +01002592 thumbnail.draw(canvas);
2593 return bm;
2594 }
2595
The Android Open Source Project0c908882009-03-03 19:32:16 -08002596 // -------------------------------------------------------------------------
Grace Kloba22ac16e2009-10-07 18:00:23 -07002597 // Helper function for WebViewClient.
The Android Open Source Project0c908882009-03-03 19:32:16 -08002598 //-------------------------------------------------------------------------
2599
2600 // Use in overrideUrlLoading
2601 /* package */ final static String SCHEME_WTAI = "wtai://wp/";
2602 /* package */ final static String SCHEME_WTAI_MC = "wtai://wp/mc;";
2603 /* package */ final static String SCHEME_WTAI_SD = "wtai://wp/sd;";
2604 /* package */ final static String SCHEME_WTAI_AP = "wtai://wp/ap;";
2605
Leon Scroggins92472e82010-02-17 16:32:28 -05002606 // Keep this initial progress in sync with initialProgressValue (* 100)
2607 // in ProgressTracker.cpp
2608 private final static int INITIAL_PROGRESS = 10;
2609
Grace Kloba22ac16e2009-10-07 18:00:23 -07002610 void onPageStarted(WebView view, String url, Bitmap favicon) {
2611 // when BrowserActivity just starts, onPageStarted may be called before
2612 // onResume as it is triggered from onCreate. Call resumeWebViewTimers
2613 // to start the timer. As we won't switch tabs while an activity is in
2614 // pause state, we can ensure calling resume and pause in pair.
2615 if (mActivityInPause) resumeWebViewTimers();
The Android Open Source Project0c908882009-03-03 19:32:16 -08002616
Grace Kloba22ac16e2009-10-07 18:00:23 -07002617 resetLockIcon(url);
2618 setUrlTitle(url, null);
2619 setFavicon(favicon);
Leon Scroggins8cf8f682009-11-04 11:13:50 -08002620 // Show some progress so that the user knows the page is beginning to
2621 // load
Leon Scroggins92472e82010-02-17 16:32:28 -05002622 onProgressChanged(view, INITIAL_PROGRESS);
Grace Kloba22ac16e2009-10-07 18:00:23 -07002623 mDidStopLoad = false;
Grace Kloba22ac16e2009-10-07 18:00:23 -07002624 if (!mIsNetworkUp) createAndShowNetworkDialog();
Patrick Scott15525d42009-09-21 13:39:37 -04002625
Grace Kloba22ac16e2009-10-07 18:00:23 -07002626 if (mSettings.isTracing()) {
2627 String host;
The Android Open Source Project0c908882009-03-03 19:32:16 -08002628 try {
Grace Kloba22ac16e2009-10-07 18:00:23 -07002629 WebAddress uri = new WebAddress(url);
2630 host = uri.mHost;
2631 } catch (android.net.ParseException ex) {
2632 host = "browser";
The Android Open Source Project0c908882009-03-03 19:32:16 -08002633 }
Grace Kloba22ac16e2009-10-07 18:00:23 -07002634 host = host.replace('.', '_');
2635 host += ".trace";
2636 mInTrace = true;
2637 Debug.startMethodTracing(host, 20 * 1024 * 1024);
2638 }
The Android Open Source Project0c908882009-03-03 19:32:16 -08002639
Grace Kloba22ac16e2009-10-07 18:00:23 -07002640 // Performance probe
2641 if (false) {
2642 mStart = SystemClock.uptimeMillis();
2643 mProcessStart = Process.getElapsedCpuTime();
2644 long[] sysCpu = new long[7];
2645 if (Process.readProcFile("/proc/stat", SYSTEM_CPU_FORMAT, null,
2646 sysCpu, null)) {
2647 mUserStart = sysCpu[0] + sysCpu[1];
2648 mSystemStart = sysCpu[2];
2649 mIdleStart = sysCpu[3];
2650 mIrqStart = sysCpu[4] + sysCpu[5] + sysCpu[6];
2651 }
2652 mUiStart = SystemClock.currentThreadTimeMillis();
2653 }
2654 }
2655
2656 void onPageFinished(WebView view, String url) {
2657 // Reset the title and icon in case we stopped a provisional load.
2658 resetTitleAndIcon(view);
2659 // Update the lock icon image only once we are done loading
2660 updateLockIconToLatest();
2661 // pause the WebView timer and release the wake lock if it is finished
2662 // while BrowserActivity is in pause state.
2663 if (mActivityInPause && pauseWebViewTimers()) {
2664 if (mWakeLock.isHeld()) {
2665 mHandler.removeMessages(RELEASE_WAKELOCK);
2666 mWakeLock.release();
2667 }
2668 }
2669
2670 // Performance probe
2671 if (false) {
2672 long[] sysCpu = new long[7];
2673 if (Process.readProcFile("/proc/stat", SYSTEM_CPU_FORMAT, null,
2674 sysCpu, null)) {
2675 String uiInfo = "UI thread used "
2676 + (SystemClock.currentThreadTimeMillis() - mUiStart)
2677 + " ms";
2678 if (LOGD_ENABLED) {
2679 Log.d(LOGTAG, uiInfo);
2680 }
2681 //The string that gets written to the log
2682 String performanceString = "It took total "
2683 + (SystemClock.uptimeMillis() - mStart)
2684 + " ms clock time to load the page."
2685 + "\nbrowser process used "
2686 + (Process.getElapsedCpuTime() - mProcessStart)
2687 + " ms, user processes used "
2688 + (sysCpu[0] + sysCpu[1] - mUserStart) * 10
2689 + " ms, kernel used "
2690 + (sysCpu[2] - mSystemStart) * 10
2691 + " ms, idle took " + (sysCpu[3] - mIdleStart) * 10
2692 + " ms and irq took "
2693 + (sysCpu[4] + sysCpu[5] + sysCpu[6] - mIrqStart)
2694 * 10 + " ms, " + uiInfo;
2695 if (LOGD_ENABLED) {
2696 Log.d(LOGTAG, performanceString + "\nWebpage: " + url);
2697 }
2698 if (url != null) {
2699 // strip the url to maintain consistency
2700 String newUrl = new String(url);
2701 if (newUrl.startsWith("http://www.")) {
2702 newUrl = newUrl.substring(11);
2703 } else if (newUrl.startsWith("http://")) {
2704 newUrl = newUrl.substring(7);
2705 } else if (newUrl.startsWith("https://www.")) {
2706 newUrl = newUrl.substring(12);
2707 } else if (newUrl.startsWith("https://")) {
2708 newUrl = newUrl.substring(8);
2709 }
2710 if (LOGD_ENABLED) {
2711 Log.d(LOGTAG, newUrl + " loaded");
2712 }
Grace Kloba5b078b52009-06-24 20:23:41 -07002713 }
2714 }
Grace Kloba22ac16e2009-10-07 18:00:23 -07002715 }
Grace Kloba5b078b52009-06-24 20:23:41 -07002716
Grace Kloba22ac16e2009-10-07 18:00:23 -07002717 if (mInTrace) {
2718 mInTrace = false;
2719 Debug.stopMethodTracing();
2720 }
2721 }
The Android Open Source Project0c908882009-03-03 19:32:16 -08002722
Grace Kloba22ac16e2009-10-07 18:00:23 -07002723 boolean shouldOverrideUrlLoading(WebView view, String url) {
2724 if (url.startsWith(SCHEME_WTAI)) {
2725 // wtai://wp/mc;number
2726 // number=string(phone-number)
2727 if (url.startsWith(SCHEME_WTAI_MC)) {
2728 Intent intent = new Intent(Intent.ACTION_VIEW,
2729 Uri.parse(WebView.SCHEME_TEL +
2730 url.substring(SCHEME_WTAI_MC.length())));
2731 startActivity(intent);
The Android Open Source Project0c908882009-03-03 19:32:16 -08002732 return true;
2733 }
Grace Kloba22ac16e2009-10-07 18:00:23 -07002734 // wtai://wp/sd;dtmf
2735 // dtmf=string(dialstring)
2736 if (url.startsWith(SCHEME_WTAI_SD)) {
2737 // TODO: only send when there is active voice connection
2738 return false;
2739 }
2740 // wtai://wp/ap;number;name
2741 // number=string(phone-number)
2742 // name=string
2743 if (url.startsWith(SCHEME_WTAI_AP)) {
2744 // TODO
2745 return false;
2746 }
2747 }
The Android Open Source Project0c908882009-03-03 19:32:16 -08002748
Grace Kloba22ac16e2009-10-07 18:00:23 -07002749 // The "about:" schemes are internal to the browser; don't want these to
2750 // be dispatched to other apps.
2751 if (url.startsWith("about:")) {
The Android Open Source Project0c908882009-03-03 19:32:16 -08002752 return false;
2753 }
2754
Grace Kloba22ac16e2009-10-07 18:00:23 -07002755 Intent intent;
2756 // perform generic parsing of the URI to turn it into an Intent.
2757 try {
2758 intent = Intent.parseUri(url, Intent.URI_INTENT_SCHEME);
2759 } catch (URISyntaxException ex) {
2760 Log.w("Browser", "Bad URI " + url + ": " + ex.getMessage());
2761 return false;
The Android Open Source Project0c908882009-03-03 19:32:16 -08002762 }
2763
Grace Kloba22ac16e2009-10-07 18:00:23 -07002764 // check whether the intent can be resolved. If not, we will see
2765 // whether we can download it from the Market.
2766 if (getPackageManager().resolveActivity(intent, 0) == null) {
2767 String packagename = intent.getPackage();
2768 if (packagename != null) {
2769 intent = new Intent(Intent.ACTION_VIEW, Uri
2770 .parse("market://search?q=pname:" + packagename));
2771 intent.addCategory(Intent.CATEGORY_BROWSABLE);
2772 startActivity(intent);
2773 return true;
The Android Open Source Project0c908882009-03-03 19:32:16 -08002774 } else {
2775 return false;
2776 }
2777 }
2778
Grace Kloba22ac16e2009-10-07 18:00:23 -07002779 // sanitize the Intent, ensuring web pages can not bypass browser
2780 // security (only access to BROWSABLE activities).
2781 intent.addCategory(Intent.CATEGORY_BROWSABLE);
2782 intent.setComponent(null);
2783 try {
2784 if (startActivityIfNeeded(intent, -1)) {
The Android Open Source Project0c908882009-03-03 19:32:16 -08002785 return true;
2786 }
Grace Kloba22ac16e2009-10-07 18:00:23 -07002787 } catch (ActivityNotFoundException ex) {
2788 // ignore the error. If no application can handle the URL,
2789 // eg about:blank, assume the browser can handle it.
2790 }
The Android Open Source Project0c908882009-03-03 19:32:16 -08002791
Grace Kloba22ac16e2009-10-07 18:00:23 -07002792 if (mMenuIsDown) {
2793 openTab(url);
2794 closeOptionsMenu();
The Android Open Source Project0c908882009-03-03 19:32:16 -08002795 return true;
2796 }
Grace Kloba22ac16e2009-10-07 18:00:23 -07002797 return false;
2798 }
The Android Open Source Project0c908882009-03-03 19:32:16 -08002799
Grace Kloba22ac16e2009-10-07 18:00:23 -07002800 // -------------------------------------------------------------------------
2801 // Helper function for WebChromeClient
2802 // -------------------------------------------------------------------------
The Android Open Source Project0c908882009-03-03 19:32:16 -08002803
Grace Kloba22ac16e2009-10-07 18:00:23 -07002804 void onProgressChanged(WebView view, int newProgress) {
2805 mTitleBar.setProgress(newProgress);
2806 mFakeTitleBar.setProgress(newProgress);
The Android Open Source Project0c908882009-03-03 19:32:16 -08002807
Grace Kloba22ac16e2009-10-07 18:00:23 -07002808 if (newProgress == 100) {
2809 // onProgressChanged() may continue to be called after the main
2810 // frame has finished loading, as any remaining sub frames continue
2811 // to load. We'll only get called once though with newProgress as
2812 // 100 when everything is loaded. (onPageFinished is called once
2813 // when the main frame completes loading regardless of the state of
2814 // any sub frames so calls to onProgressChanges may continue after
2815 // onPageFinished has executed)
2816 if (mInLoad) {
2817 mInLoad = false;
Leon Scrogginsa27ff192009-09-14 12:58:04 -04002818 updateInLoadMenuItems();
Grace Kloba22ac16e2009-10-07 18:00:23 -07002819 // If the options menu is open, leave the title bar
2820 if (!mOptionsMenuOpen || !mIconView) {
2821 hideFakeTitleBar();
The Android Open Source Projectcb9a0bb2009-03-11 12:11:58 -07002822 }
The Android Open Source Project0c908882009-03-03 19:32:16 -08002823 }
Grace Kloba22ac16e2009-10-07 18:00:23 -07002824 } else if (!mInLoad) {
2825 // onPageFinished may have already been called but a subframe is
2826 // still loading and updating the progress. Reset mInLoad and update
2827 // the menu items.
2828 mInLoad = true;
2829 updateInLoadMenuItems();
2830 if (!mOptionsMenuOpen || mIconView) {
2831 // This page has begun to load, so show the title bar
2832 showFakeTitleBar();
The Android Open Source Project0c908882009-03-03 19:32:16 -08002833 }
2834 }
Grace Kloba22ac16e2009-10-07 18:00:23 -07002835 }
The Android Open Source Project0c908882009-03-03 19:32:16 -08002836
Grace Kloba22ac16e2009-10-07 18:00:23 -07002837 void onShowCustomView(View view, WebChromeClient.CustomViewCallback callback) {
Derek Sollenberger8ff57db2009-12-08 15:39:55 -05002838 // if a view already exists then immediately terminate the new one
2839 if (mCustomView != null) {
2840 callback.onCustomViewHidden();
Grace Kloba22ac16e2009-10-07 18:00:23 -07002841 return;
Derek Sollenberger8ff57db2009-12-08 15:39:55 -05002842 }
Grace Kloba22ac16e2009-10-07 18:00:23 -07002843
2844 // Add the custom view to its container.
2845 mCustomViewContainer.addView(view, COVER_SCREEN_GRAVITY_CENTER);
2846 mCustomView = view;
2847 mCustomViewCallback = callback;
2848 // Save the menu state and set it to empty while the custom
2849 // view is showing.
2850 mOldMenuState = mMenuState;
2851 mMenuState = EMPTY_MENU;
2852 // Hide the content view.
2853 mContentView.setVisibility(View.GONE);
2854 // Finally show the custom view container.
Andrei Popescu163ab742009-10-20 17:58:23 +01002855 setStatusBarVisibility(false);
Grace Kloba22ac16e2009-10-07 18:00:23 -07002856 mCustomViewContainer.setVisibility(View.VISIBLE);
2857 mCustomViewContainer.bringToFront();
2858 }
2859
2860 void onHideCustomView() {
2861 if (mCustomView == null)
2862 return;
2863
2864 // Hide the custom view.
2865 mCustomView.setVisibility(View.GONE);
2866 // Remove the custom view from its container.
2867 mCustomViewContainer.removeView(mCustomView);
2868 mCustomView = null;
2869 // Reset the old menu state.
2870 mMenuState = mOldMenuState;
2871 mOldMenuState = EMPTY_MENU;
2872 mCustomViewContainer.setVisibility(View.GONE);
2873 mCustomViewCallback.onCustomViewHidden();
2874 // Show the content view.
Andrei Popescu163ab742009-10-20 17:58:23 +01002875 setStatusBarVisibility(true);
Grace Kloba22ac16e2009-10-07 18:00:23 -07002876 mContentView.setVisibility(View.VISIBLE);
2877 }
2878
2879 Bitmap getDefaultVideoPoster() {
2880 if (mDefaultVideoPoster == null) {
2881 mDefaultVideoPoster = BitmapFactory.decodeResource(
2882 getResources(), R.drawable.default_video_poster);
Patrick Scott3918d442009-08-04 13:22:29 -04002883 }
Grace Kloba22ac16e2009-10-07 18:00:23 -07002884 return mDefaultVideoPoster;
2885 }
Patrick Scott3918d442009-08-04 13:22:29 -04002886
Grace Kloba22ac16e2009-10-07 18:00:23 -07002887 View getVideoLoadingProgressView() {
2888 if (mVideoProgressView == null) {
2889 LayoutInflater inflater = LayoutInflater.from(BrowserActivity.this);
2890 mVideoProgressView = inflater.inflate(
2891 R.layout.video_loading_progress, null);
The Android Open Source Project0c908882009-03-03 19:32:16 -08002892 }
Grace Kloba22ac16e2009-10-07 18:00:23 -07002893 return mVideoProgressView;
2894 }
The Android Open Source Project0c908882009-03-03 19:32:16 -08002895
Leon Scroggins8d5fa432009-10-02 15:55:59 -04002896 /*
2897 * The Object used to inform the WebView of the file to upload.
2898 */
2899 private ValueCallback<Uri> mUploadMessage;
2900
Grace Kloba22ac16e2009-10-07 18:00:23 -07002901 void openFileChooser(ValueCallback<Uri> uploadMsg) {
2902 if (mUploadMessage != null) return;
2903 mUploadMessage = uploadMsg;
2904 Intent i = new Intent(Intent.ACTION_GET_CONTENT);
2905 i.addCategory(Intent.CATEGORY_OPENABLE);
2906 i.setType("*/*");
2907 BrowserActivity.this.startActivityForResult(Intent.createChooser(i,
2908 getString(R.string.choose_upload)), FILE_SELECTED);
2909 }
2910
2911 // -------------------------------------------------------------------------
2912 // Implement functions for DownloadListener
2913 // -------------------------------------------------------------------------
2914
The Android Open Source Project0c908882009-03-03 19:32:16 -08002915 /**
2916 * Notify the host application a download should be done, or that
2917 * the data should be streamed if a streaming viewer is available.
2918 * @param url The full url to the content that should be downloaded
2919 * @param contentDisposition Content-disposition http header, if
2920 * present.
2921 * @param mimetype The mimetype of the content reported by the server
2922 * @param contentLength The file size reported by the server
2923 */
2924 public void onDownloadStart(String url, String userAgent,
2925 String contentDisposition, String mimetype, long contentLength) {
2926 // if we're dealing wih A/V content that's not explicitly marked
2927 // for download, check if it's streamable.
2928 if (contentDisposition == null
Patrick Scotte1fb9662009-08-31 14:31:52 -04002929 || !contentDisposition.regionMatches(
2930 true, 0, "attachment", 0, 10)) {
The Android Open Source Project0c908882009-03-03 19:32:16 -08002931 // query the package manager to see if there's a registered handler
2932 // that matches.
2933 Intent intent = new Intent(Intent.ACTION_VIEW);
2934 intent.setDataAndType(Uri.parse(url), mimetype);
Patrick Scotte1fb9662009-08-31 14:31:52 -04002935 ResolveInfo info = getPackageManager().resolveActivity(intent,
2936 PackageManager.MATCH_DEFAULT_ONLY);
2937 if (info != null) {
2938 ComponentName myName = getComponentName();
2939 // If we resolved to ourselves, we don't want to attempt to
2940 // load the url only to try and download it again.
2941 if (!myName.getPackageName().equals(
2942 info.activityInfo.packageName)
2943 || !myName.getClassName().equals(
2944 info.activityInfo.name)) {
2945 // someone (other than us) knows how to handle this mime
2946 // type with this scheme, don't download.
2947 try {
2948 startActivity(intent);
2949 return;
2950 } catch (ActivityNotFoundException ex) {
2951 if (LOGD_ENABLED) {
2952 Log.d(LOGTAG, "activity not found for " + mimetype
2953 + " over " + Uri.parse(url).getScheme(),
2954 ex);
2955 }
2956 // Best behavior is to fall back to a download in this
2957 // case
The Android Open Source Project0c908882009-03-03 19:32:16 -08002958 }
The Android Open Source Project0c908882009-03-03 19:32:16 -08002959 }
2960 }
2961 }
2962 onDownloadStartNoStream(url, userAgent, contentDisposition, mimetype, contentLength);
2963 }
2964
2965 /**
2966 * Notify the host application a download should be done, even if there
2967 * is a streaming viewer available for thise type.
2968 * @param url The full url to the content that should be downloaded
2969 * @param contentDisposition Content-disposition http header, if
2970 * present.
2971 * @param mimetype The mimetype of the content reported by the server
2972 * @param contentLength The file size reported by the server
2973 */
2974 /*package */ void onDownloadStartNoStream(String url, String userAgent,
2975 String contentDisposition, String mimetype, long contentLength) {
2976
2977 String filename = URLUtil.guessFileName(url,
2978 contentDisposition, mimetype);
2979
2980 // Check to see if we have an SDCard
2981 String status = Environment.getExternalStorageState();
2982 if (!status.equals(Environment.MEDIA_MOUNTED)) {
2983 int title;
2984 String msg;
2985
2986 // Check to see if the SDCard is busy, same as the music app
2987 if (status.equals(Environment.MEDIA_SHARED)) {
2988 msg = getString(R.string.download_sdcard_busy_dlg_msg);
2989 title = R.string.download_sdcard_busy_dlg_title;
2990 } else {
2991 msg = getString(R.string.download_no_sdcard_dlg_msg, filename);
2992 title = R.string.download_no_sdcard_dlg_title;
2993 }
2994
2995 new AlertDialog.Builder(this)
2996 .setTitle(title)
2997 .setIcon(android.R.drawable.ic_dialog_alert)
2998 .setMessage(msg)
2999 .setPositiveButton(R.string.ok, null)
3000 .show();
3001 return;
3002 }
3003
3004 // java.net.URI is a lot stricter than KURL so we have to undo
3005 // KURL's percent-encoding and redo the encoding using java.net.URI.
3006 URI uri = null;
3007 try {
3008 // Undo the percent-encoding that KURL may have done.
3009 String newUrl = new String(URLUtil.decode(url.getBytes()));
3010 // Parse the url into pieces
3011 WebAddress w = new WebAddress(newUrl);
3012 String frag = null;
3013 String query = null;
3014 String path = w.mPath;
3015 // Break the path into path, query, and fragment
3016 if (path.length() > 0) {
3017 // Strip the fragment
3018 int idx = path.lastIndexOf('#');
3019 if (idx != -1) {
3020 frag = path.substring(idx + 1);
3021 path = path.substring(0, idx);
3022 }
3023 idx = path.lastIndexOf('?');
3024 if (idx != -1) {
3025 query = path.substring(idx + 1);
3026 path = path.substring(0, idx);
3027 }
3028 }
3029 uri = new URI(w.mScheme, w.mAuthInfo, w.mHost, w.mPort, path,
3030 query, frag);
3031 } catch (Exception e) {
3032 Log.e(LOGTAG, "Could not parse url for download: " + url, e);
3033 return;
3034 }
3035
3036 // XXX: Have to use the old url since the cookies were stored using the
3037 // old percent-encoded url.
3038 String cookies = CookieManager.getInstance().getCookie(url);
3039
3040 ContentValues values = new ContentValues();
Jean-Baptiste Queru1e5bad92010-01-14 16:09:03 -08003041 values.put(Downloads.Impl.COLUMN_URI, uri.toString());
3042 values.put(Downloads.Impl.COLUMN_COOKIE_DATA, cookies);
3043 values.put(Downloads.Impl.COLUMN_USER_AGENT, userAgent);
3044 values.put(Downloads.Impl.COLUMN_NOTIFICATION_PACKAGE,
The Android Open Source Project0c908882009-03-03 19:32:16 -08003045 getPackageName());
Jean-Baptiste Queru1e5bad92010-01-14 16:09:03 -08003046 values.put(Downloads.Impl.COLUMN_NOTIFICATION_CLASS,
The Android Open Source Project0c908882009-03-03 19:32:16 -08003047 BrowserDownloadPage.class.getCanonicalName());
Jean-Baptiste Queru1e5bad92010-01-14 16:09:03 -08003048 values.put(Downloads.Impl.COLUMN_VISIBILITY,
3049 Downloads.Impl.VISIBILITY_VISIBLE_NOTIFY_COMPLETED);
3050 values.put(Downloads.Impl.COLUMN_MIME_TYPE, mimetype);
3051 values.put(Downloads.Impl.COLUMN_FILE_NAME_HINT, filename);
3052 values.put(Downloads.Impl.COLUMN_DESCRIPTION, uri.getHost());
The Android Open Source Project0c908882009-03-03 19:32:16 -08003053 if (contentLength > 0) {
Jean-Baptiste Queru1e5bad92010-01-14 16:09:03 -08003054 values.put(Downloads.Impl.COLUMN_TOTAL_BYTES, contentLength);
The Android Open Source Project0c908882009-03-03 19:32:16 -08003055 }
3056 if (mimetype == null) {
3057 // We must have long pressed on a link or image to download it. We
3058 // are not sure of the mimetype in this case, so do a head request
3059 new FetchUrlMimeType(this).execute(values);
3060 } else {
3061 final Uri contentUri =
Jean-Baptiste Queru1e5bad92010-01-14 16:09:03 -08003062 getContentResolver().insert(Downloads.Impl.CONTENT_URI, values);
The Android Open Source Project0c908882009-03-03 19:32:16 -08003063 }
3064
3065 }
3066
Grace Kloba22ac16e2009-10-07 18:00:23 -07003067 // -------------------------------------------------------------------------
3068
The Android Open Source Project0c908882009-03-03 19:32:16 -08003069 /**
3070 * Resets the lock icon. This method is called when we start a new load and
3071 * know the url to be loaded.
3072 */
3073 private void resetLockIcon(String url) {
3074 // Save the lock-icon state (we revert to it if the load gets cancelled)
Grace Kloba22ac16e2009-10-07 18:00:23 -07003075 mTabControl.getCurrentTab().resetLockIcon(url);
The Android Open Source Project0c908882009-03-03 19:32:16 -08003076 updateLockIconImage(LOCK_ICON_UNSECURE);
3077 }
3078
The Android Open Source Project0c908882009-03-03 19:32:16 -08003079 /**
Leon Scroggins3bbb6ca2009-09-09 12:51:10 -04003080 * Update the lock icon to correspond to our latest state.
3081 */
Grace Kloba22ac16e2009-10-07 18:00:23 -07003082 private void updateLockIconToLatest() {
3083 updateLockIconImage(mTabControl.getCurrentTab().getLockIconType());
Leon Scroggins3bbb6ca2009-09-09 12:51:10 -04003084 }
3085
3086 /**
The Android Open Source Project0c908882009-03-03 19:32:16 -08003087 * Updates the lock-icon image in the title-bar.
3088 */
3089 private void updateLockIconImage(int lockIconType) {
3090 Drawable d = null;
3091 if (lockIconType == LOCK_ICON_SECURE) {
3092 d = mSecLockIcon;
3093 } else if (lockIconType == LOCK_ICON_MIXED) {
3094 d = mMixLockIcon;
3095 }
Leon Scroggins68579392009-09-15 15:31:54 -04003096 mTitleBar.setLock(d);
Leon Scrogginsfe87bd32009-10-06 10:10:00 -04003097 mFakeTitleBar.setLock(d);
The Android Open Source Project0c908882009-03-03 19:32:16 -08003098 }
3099
3100 /**
3101 * Displays a page-info dialog.
3102 * @param tab The tab to show info about
3103 * @param fromShowSSLCertificateOnError The flag that indicates whether
3104 * this dialog was opened from the SSL-certificate-on-error dialog or
3105 * not. This is important, since we need to know whether to return to
3106 * the parent dialog or simply dismiss.
3107 */
Grace Kloba22ac16e2009-10-07 18:00:23 -07003108 private void showPageInfo(final Tab tab,
The Android Open Source Project0c908882009-03-03 19:32:16 -08003109 final boolean fromShowSSLCertificateOnError) {
3110 final LayoutInflater factory = LayoutInflater
3111 .from(this);
3112
3113 final View pageInfoView = factory.inflate(R.layout.page_info, null);
3114
3115 final WebView view = tab.getWebView();
3116
3117 String url = null;
3118 String title = null;
3119
3120 if (view == null) {
3121 url = tab.getUrl();
3122 title = tab.getTitle();
3123 } else if (view == mTabControl.getCurrentWebView()) {
3124 // Use the cached title and url if this is the current WebView
3125 url = mUrl;
3126 title = mTitle;
3127 } else {
3128 url = view.getUrl();
3129 title = view.getTitle();
3130 }
3131
3132 if (url == null) {
3133 url = "";
3134 }
3135 if (title == null) {
3136 title = "";
3137 }
3138
3139 ((TextView) pageInfoView.findViewById(R.id.address)).setText(url);
3140 ((TextView) pageInfoView.findViewById(R.id.title)).setText(title);
3141
3142 mPageInfoView = tab;
Leon Scrogginsc7b92f82010-01-11 18:17:31 -05003143 mPageInfoFromShowSSLCertificateOnError = fromShowSSLCertificateOnError;
The Android Open Source Project0c908882009-03-03 19:32:16 -08003144
3145 AlertDialog.Builder alertDialogBuilder =
3146 new AlertDialog.Builder(this)
3147 .setTitle(R.string.page_info).setIcon(android.R.drawable.ic_dialog_info)
3148 .setView(pageInfoView)
3149 .setPositiveButton(
3150 R.string.ok,
3151 new DialogInterface.OnClickListener() {
3152 public void onClick(DialogInterface dialog,
3153 int whichButton) {
3154 mPageInfoDialog = null;
3155 mPageInfoView = null;
The Android Open Source Project0c908882009-03-03 19:32:16 -08003156
3157 // if we came here from the SSL error dialog
3158 if (fromShowSSLCertificateOnError) {
3159 // go back to the SSL error dialog
3160 showSSLCertificateOnError(
3161 mSSLCertificateOnErrorView,
3162 mSSLCertificateOnErrorHandler,
3163 mSSLCertificateOnErrorError);
3164 }
3165 }
3166 })
3167 .setOnCancelListener(
3168 new DialogInterface.OnCancelListener() {
3169 public void onCancel(DialogInterface dialog) {
3170 mPageInfoDialog = null;
3171 mPageInfoView = null;
The Android Open Source Project0c908882009-03-03 19:32:16 -08003172
3173 // if we came here from the SSL error dialog
3174 if (fromShowSSLCertificateOnError) {
3175 // go back to the SSL error dialog
3176 showSSLCertificateOnError(
3177 mSSLCertificateOnErrorView,
3178 mSSLCertificateOnErrorHandler,
3179 mSSLCertificateOnErrorError);
3180 }
3181 }
3182 });
3183
3184 // if we have a main top-level page SSL certificate set or a certificate
3185 // error
3186 if (fromShowSSLCertificateOnError ||
3187 (view != null && view.getCertificate() != null)) {
3188 // add a 'View Certificate' button
3189 alertDialogBuilder.setNeutralButton(
3190 R.string.view_certificate,
3191 new DialogInterface.OnClickListener() {
3192 public void onClick(DialogInterface dialog,
3193 int whichButton) {
3194 mPageInfoDialog = null;
3195 mPageInfoView = null;
The Android Open Source Project0c908882009-03-03 19:32:16 -08003196
3197 // if we came here from the SSL error dialog
3198 if (fromShowSSLCertificateOnError) {
3199 // go back to the SSL error dialog
3200 showSSLCertificateOnError(
3201 mSSLCertificateOnErrorView,
3202 mSSLCertificateOnErrorHandler,
3203 mSSLCertificateOnErrorError);
3204 } else {
3205 // otherwise, display the top-most certificate from
3206 // the chain
3207 if (view.getCertificate() != null) {
3208 showSSLCertificate(tab);
3209 }
3210 }
3211 }
3212 });
3213 }
3214
3215 mPageInfoDialog = alertDialogBuilder.show();
3216 }
3217
3218 /**
3219 * Displays the main top-level page SSL certificate dialog
3220 * (accessible from the Page-Info dialog).
3221 * @param tab The tab to show certificate for.
3222 */
Grace Kloba22ac16e2009-10-07 18:00:23 -07003223 private void showSSLCertificate(final Tab tab) {
The Android Open Source Project0c908882009-03-03 19:32:16 -08003224 final View certificateView =
3225 inflateCertificateView(tab.getWebView().getCertificate());
3226 if (certificateView == null) {
3227 return;
3228 }
3229
3230 LayoutInflater factory = LayoutInflater.from(this);
3231
3232 final LinearLayout placeholder =
3233 (LinearLayout)certificateView.findViewById(R.id.placeholder);
3234
3235 LinearLayout ll = (LinearLayout) factory.inflate(
3236 R.layout.ssl_success, placeholder);
3237 ((TextView)ll.findViewById(R.id.success))
3238 .setText(R.string.ssl_certificate_is_valid);
3239
3240 mSSLCertificateView = tab;
3241 mSSLCertificateDialog =
3242 new AlertDialog.Builder(this)
3243 .setTitle(R.string.ssl_certificate).setIcon(
3244 R.drawable.ic_dialog_browser_certificate_secure)
3245 .setView(certificateView)
3246 .setPositiveButton(R.string.ok,
3247 new DialogInterface.OnClickListener() {
3248 public void onClick(DialogInterface dialog,
3249 int whichButton) {
3250 mSSLCertificateDialog = null;
3251 mSSLCertificateView = null;
3252
3253 showPageInfo(tab, false);
3254 }
3255 })
3256 .setOnCancelListener(
3257 new DialogInterface.OnCancelListener() {
3258 public void onCancel(DialogInterface dialog) {
3259 mSSLCertificateDialog = null;
3260 mSSLCertificateView = null;
3261
3262 showPageInfo(tab, false);
3263 }
3264 })
3265 .show();
3266 }
3267
3268 /**
3269 * Displays the SSL error certificate dialog.
3270 * @param view The target web-view.
3271 * @param handler The SSL error handler responsible for cancelling the
3272 * connection that resulted in an SSL error or proceeding per user request.
3273 * @param error The SSL error object.
3274 */
Grace Kloba22ac16e2009-10-07 18:00:23 -07003275 void showSSLCertificateOnError(
The Android Open Source Project0c908882009-03-03 19:32:16 -08003276 final WebView view, final SslErrorHandler handler, final SslError error) {
3277
3278 final View certificateView =
3279 inflateCertificateView(error.getCertificate());
3280 if (certificateView == null) {
3281 return;
3282 }
3283
3284 LayoutInflater factory = LayoutInflater.from(this);
3285
3286 final LinearLayout placeholder =
3287 (LinearLayout)certificateView.findViewById(R.id.placeholder);
3288
3289 if (error.hasError(SslError.SSL_UNTRUSTED)) {
3290 LinearLayout ll = (LinearLayout)factory
3291 .inflate(R.layout.ssl_warning, placeholder);
3292 ((TextView)ll.findViewById(R.id.warning))
3293 .setText(R.string.ssl_untrusted);
3294 }
3295
3296 if (error.hasError(SslError.SSL_IDMISMATCH)) {
3297 LinearLayout ll = (LinearLayout)factory
3298 .inflate(R.layout.ssl_warning, placeholder);
3299 ((TextView)ll.findViewById(R.id.warning))
3300 .setText(R.string.ssl_mismatch);
3301 }
3302
3303 if (error.hasError(SslError.SSL_EXPIRED)) {
3304 LinearLayout ll = (LinearLayout)factory
3305 .inflate(R.layout.ssl_warning, placeholder);
3306 ((TextView)ll.findViewById(R.id.warning))
3307 .setText(R.string.ssl_expired);
3308 }
3309
3310 if (error.hasError(SslError.SSL_NOTYETVALID)) {
3311 LinearLayout ll = (LinearLayout)factory
3312 .inflate(R.layout.ssl_warning, placeholder);
3313 ((TextView)ll.findViewById(R.id.warning))
3314 .setText(R.string.ssl_not_yet_valid);
3315 }
3316
3317 mSSLCertificateOnErrorHandler = handler;
3318 mSSLCertificateOnErrorView = view;
3319 mSSLCertificateOnErrorError = error;
3320 mSSLCertificateOnErrorDialog =
3321 new AlertDialog.Builder(this)
3322 .setTitle(R.string.ssl_certificate).setIcon(
3323 R.drawable.ic_dialog_browser_certificate_partially_secure)
3324 .setView(certificateView)
3325 .setPositiveButton(R.string.ok,
3326 new DialogInterface.OnClickListener() {
3327 public void onClick(DialogInterface dialog,
3328 int whichButton) {
3329 mSSLCertificateOnErrorDialog = null;
3330 mSSLCertificateOnErrorView = null;
3331 mSSLCertificateOnErrorHandler = null;
3332 mSSLCertificateOnErrorError = null;
3333
Grace Kloba22ac16e2009-10-07 18:00:23 -07003334 view.getWebViewClient().onReceivedSslError(
3335 view, handler, error);
The Android Open Source Project0c908882009-03-03 19:32:16 -08003336 }
3337 })
3338 .setNeutralButton(R.string.page_info_view,
3339 new DialogInterface.OnClickListener() {
3340 public void onClick(DialogInterface dialog,
3341 int whichButton) {
3342 mSSLCertificateOnErrorDialog = null;
3343
3344 // do not clear the dialog state: we will
3345 // need to show the dialog again once the
3346 // user is done exploring the page-info details
3347
3348 showPageInfo(mTabControl.getTabFromView(view),
3349 true);
3350 }
3351 })
3352 .setOnCancelListener(
3353 new DialogInterface.OnCancelListener() {
3354 public void onCancel(DialogInterface dialog) {
3355 mSSLCertificateOnErrorDialog = null;
3356 mSSLCertificateOnErrorView = null;
3357 mSSLCertificateOnErrorHandler = null;
3358 mSSLCertificateOnErrorError = null;
3359
Grace Kloba22ac16e2009-10-07 18:00:23 -07003360 view.getWebViewClient().onReceivedSslError(
3361 view, handler, error);
The Android Open Source Project0c908882009-03-03 19:32:16 -08003362 }
3363 })
3364 .show();
3365 }
3366
3367 /**
3368 * Inflates the SSL certificate view (helper method).
3369 * @param certificate The SSL certificate.
3370 * @return The resultant certificate view with issued-to, issued-by,
3371 * issued-on, expires-on, and possibly other fields set.
3372 * If the input certificate is null, returns null.
3373 */
3374 private View inflateCertificateView(SslCertificate certificate) {
3375 if (certificate == null) {
3376 return null;
3377 }
3378
3379 LayoutInflater factory = LayoutInflater.from(this);
3380
3381 View certificateView = factory.inflate(
3382 R.layout.ssl_certificate, null);
3383
3384 // issued to:
3385 SslCertificate.DName issuedTo = certificate.getIssuedTo();
3386 if (issuedTo != null) {
3387 ((TextView) certificateView.findViewById(R.id.to_common))
3388 .setText(issuedTo.getCName());
3389 ((TextView) certificateView.findViewById(R.id.to_org))
3390 .setText(issuedTo.getOName());
3391 ((TextView) certificateView.findViewById(R.id.to_org_unit))
3392 .setText(issuedTo.getUName());
3393 }
3394
3395 // issued by:
3396 SslCertificate.DName issuedBy = certificate.getIssuedBy();
3397 if (issuedBy != null) {
3398 ((TextView) certificateView.findViewById(R.id.by_common))
3399 .setText(issuedBy.getCName());
3400 ((TextView) certificateView.findViewById(R.id.by_org))
3401 .setText(issuedBy.getOName());
3402 ((TextView) certificateView.findViewById(R.id.by_org_unit))
3403 .setText(issuedBy.getUName());
3404 }
3405
3406 // issued on:
3407 String issuedOn = reformatCertificateDate(
3408 certificate.getValidNotBefore());
3409 ((TextView) certificateView.findViewById(R.id.issued_on))
3410 .setText(issuedOn);
3411
3412 // expires on:
3413 String expiresOn = reformatCertificateDate(
3414 certificate.getValidNotAfter());
3415 ((TextView) certificateView.findViewById(R.id.expires_on))
3416 .setText(expiresOn);
3417
3418 return certificateView;
3419 }
3420
3421 /**
3422 * Re-formats the certificate date (Date.toString()) string to
3423 * a properly localized date string.
3424 * @return Properly localized version of the certificate date string and
3425 * the original certificate date string if fails to localize.
3426 * If the original string is null, returns an empty string "".
3427 */
3428 private String reformatCertificateDate(String certificateDate) {
3429 String reformattedDate = null;
3430
3431 if (certificateDate != null) {
3432 Date date = null;
3433 try {
3434 date = java.text.DateFormat.getInstance().parse(certificateDate);
3435 } catch (ParseException e) {
3436 date = null;
3437 }
3438
3439 if (date != null) {
3440 reformattedDate =
3441 DateFormat.getDateFormat(this).format(date);
3442 }
3443 }
3444
3445 return reformattedDate != null ? reformattedDate :
3446 (certificateDate != null ? certificateDate : "");
3447 }
3448
3449 /**
3450 * Displays an http-authentication dialog.
3451 */
Grace Kloba22ac16e2009-10-07 18:00:23 -07003452 void showHttpAuthentication(final HttpAuthHandler handler,
The Android Open Source Project0c908882009-03-03 19:32:16 -08003453 final String host, final String realm, final String title,
3454 final String name, final String password, int focusId) {
3455 LayoutInflater factory = LayoutInflater.from(this);
3456 final View v = factory
3457 .inflate(R.layout.http_authentication, null);
3458 if (name != null) {
3459 ((EditText) v.findViewById(R.id.username_edit)).setText(name);
3460 }
3461 if (password != null) {
3462 ((EditText) v.findViewById(R.id.password_edit)).setText(password);
3463 }
3464
3465 String titleText = title;
3466 if (titleText == null) {
3467 titleText = getText(R.string.sign_in_to).toString().replace(
3468 "%s1", host).replace("%s2", realm);
3469 }
3470
3471 mHttpAuthHandler = handler;
3472 AlertDialog dialog = new AlertDialog.Builder(this)
3473 .setTitle(titleText)
3474 .setIcon(android.R.drawable.ic_dialog_alert)
3475 .setView(v)
3476 .setPositiveButton(R.string.action,
3477 new DialogInterface.OnClickListener() {
3478 public void onClick(DialogInterface dialog,
3479 int whichButton) {
3480 String nm = ((EditText) v
3481 .findViewById(R.id.username_edit))
3482 .getText().toString();
3483 String pw = ((EditText) v
3484 .findViewById(R.id.password_edit))
3485 .getText().toString();
3486 BrowserActivity.this.setHttpAuthUsernamePassword
3487 (host, realm, nm, pw);
3488 handler.proceed(nm, pw);
3489 mHttpAuthenticationDialog = null;
3490 mHttpAuthHandler = null;
3491 }})
3492 .setNegativeButton(R.string.cancel,
3493 new DialogInterface.OnClickListener() {
3494 public void onClick(DialogInterface dialog,
3495 int whichButton) {
3496 handler.cancel();
3497 BrowserActivity.this.resetTitleAndRevertLockIcon();
3498 mHttpAuthenticationDialog = null;
3499 mHttpAuthHandler = null;
3500 }})
3501 .setOnCancelListener(new DialogInterface.OnCancelListener() {
3502 public void onCancel(DialogInterface dialog) {
3503 handler.cancel();
3504 BrowserActivity.this.resetTitleAndRevertLockIcon();
3505 mHttpAuthenticationDialog = null;
3506 mHttpAuthHandler = null;
3507 }})
3508 .create();
3509 // Make the IME appear when the dialog is displayed if applicable.
3510 dialog.getWindow().setSoftInputMode(
3511 WindowManager.LayoutParams.SOFT_INPUT_STATE_VISIBLE);
3512 dialog.show();
3513 if (focusId != 0) {
3514 dialog.findViewById(focusId).requestFocus();
3515 } else {
3516 v.findViewById(R.id.username_edit).requestFocus();
3517 }
3518 mHttpAuthenticationDialog = dialog;
3519 }
3520
3521 public int getProgress() {
3522 WebView w = mTabControl.getCurrentWebView();
3523 if (w != null) {
3524 return w.getProgress();
3525 } else {
3526 return 100;
3527 }
3528 }
3529
3530 /**
3531 * Set HTTP authentication password.
3532 *
3533 * @param host The host for the password
3534 * @param realm The realm for the password
3535 * @param username The username for the password. If it is null, it means
3536 * password can't be saved.
3537 * @param password The password
3538 */
3539 public void setHttpAuthUsernamePassword(String host, String realm,
3540 String username,
3541 String password) {
3542 WebView w = mTabControl.getCurrentWebView();
3543 if (w != null) {
3544 w.setHttpAuthUsernamePassword(host, realm, username, password);
3545 }
3546 }
3547
3548 /**
3549 * connectivity manager says net has come or gone... inform the user
3550 * @param up true if net has come up, false if net has gone down
3551 */
3552 public void onNetworkToggle(boolean up) {
3553 if (up == mIsNetworkUp) {
3554 return;
3555 } else if (up) {
3556 mIsNetworkUp = true;
3557 if (mAlertDialog != null) {
3558 mAlertDialog.cancel();
3559 mAlertDialog = null;
3560 }
3561 } else {
3562 mIsNetworkUp = false;
Patrick Scotteb6ab2a2009-09-16 10:00:17 -04003563 if (mInLoad) {
3564 createAndShowNetworkDialog();
3565 }
The Android Open Source Project0c908882009-03-03 19:32:16 -08003566 }
3567 WebView w = mTabControl.getCurrentWebView();
3568 if (w != null) {
3569 w.setNetworkAvailable(up);
3570 }
3571 }
3572
Grace Kloba22ac16e2009-10-07 18:00:23 -07003573 boolean isNetworkUp() {
3574 return mIsNetworkUp;
3575 }
3576
Patrick Scotteb6ab2a2009-09-16 10:00:17 -04003577 // This method shows the network dialog alerting the user that the net is
3578 // down. It will only show the dialog if mAlertDialog is null.
3579 private void createAndShowNetworkDialog() {
3580 if (mAlertDialog == null) {
3581 mAlertDialog = new AlertDialog.Builder(this)
3582 .setTitle(R.string.loadSuspendedTitle)
3583 .setMessage(R.string.loadSuspended)
3584 .setPositiveButton(R.string.ok, null)
3585 .show();
3586 }
3587 }
3588
The Android Open Source Project0c908882009-03-03 19:32:16 -08003589 @Override
3590 protected void onActivityResult(int requestCode, int resultCode,
3591 Intent intent) {
Grace Klobabb394f32009-11-19 10:26:37 -08003592 if (getTopWindow() == null) return;
3593
The Android Open Source Project0c908882009-03-03 19:32:16 -08003594 switch (requestCode) {
3595 case COMBO_PAGE:
3596 if (resultCode == RESULT_OK && intent != null) {
3597 String data = intent.getAction();
3598 Bundle extras = intent.getExtras();
3599 if (extras != null && extras.getBoolean("new_window", false)) {
Leon Scroggins25d35472009-09-15 11:37:27 -04003600 openTab(data);
The Android Open Source Project0c908882009-03-03 19:32:16 -08003601 } else {
Grace Kloba22ac16e2009-10-07 18:00:23 -07003602 final Tab currentTab =
The Android Open Source Project0c908882009-03-03 19:32:16 -08003603 mTabControl.getCurrentTab();
Leon Scroggins1f005d32009-08-10 17:36:42 -04003604 dismissSubWindow(currentTab);
3605 if (data != null && data.length() != 0) {
Leon Scroggins92472e82010-02-17 16:32:28 -05003606 loadUrl(getTopWindow(), data);
The Android Open Source Project0c908882009-03-03 19:32:16 -08003607 }
3608 }
3609 }
Leon Scrogginsfde97462010-01-11 13:06:21 -05003610 // Deliberately fall through to PREFERENCES_PAGE, since the
3611 // same extra may be attached to the COMBO_PAGE
3612 case PREFERENCES_PAGE:
3613 if (resultCode == RESULT_OK && intent != null) {
3614 String action = intent.getStringExtra(Intent.EXTRA_TEXT);
3615 if (BrowserSettings.PREF_CLEAR_HISTORY.equals(action)) {
3616 mTabControl.removeParentChildRelationShips();
3617 }
3618 }
The Android Open Source Project0c908882009-03-03 19:32:16 -08003619 break;
Leon Scroggins8d5fa432009-10-02 15:55:59 -04003620 // Choose a file from the file picker.
3621 case FILE_SELECTED:
3622 if (null == mUploadMessage) break;
3623 Uri result = intent == null || resultCode != RESULT_OK ? null
3624 : intent.getData();
3625 mUploadMessage.onReceiveValue(result);
3626 mUploadMessage = null;
3627 break;
The Android Open Source Project0c908882009-03-03 19:32:16 -08003628 default:
3629 break;
3630 }
Leon Scroggins30444232009-09-04 18:36:20 -04003631 getTopWindow().requestFocus();
The Android Open Source Project0c908882009-03-03 19:32:16 -08003632 }
3633
3634 /*
3635 * This method is called as a result of the user selecting the options
Leon Scrogginsf08809b2010-01-21 09:27:46 -05003636 * menu to see the download window. It shows the download window on top of
3637 * the current window.
The Android Open Source Project0c908882009-03-03 19:32:16 -08003638 */
Leon Scrogginsf08809b2010-01-21 09:27:46 -05003639 private void viewDownloads(Uri downloadRecord) {
The Android Open Source Project0c908882009-03-03 19:32:16 -08003640 Intent intent = new Intent(this,
3641 BrowserDownloadPage.class);
3642 intent.setData(downloadRecord);
Grace Kloba22ac16e2009-10-07 18:00:23 -07003643 startActivityForResult(intent, BrowserActivity.DOWNLOAD_PAGE);
The Android Open Source Project0c908882009-03-03 19:32:16 -08003644
3645 }
3646
Leon Scroggins160a7e72009-08-14 18:28:01 -04003647 /**
3648 * Open the Go page.
3649 * @param startWithHistory If true, open starting on the history tab.
3650 * Otherwise, start with the bookmarks tab.
Leon Scroggins160a7e72009-08-14 18:28:01 -04003651 */
Leon Scroggins30444232009-09-04 18:36:20 -04003652 /* package */ void bookmarksOrHistoryPicker(boolean startWithHistory) {
The Android Open Source Project0c908882009-03-03 19:32:16 -08003653 WebView current = mTabControl.getCurrentWebView();
3654 if (current == null) {
3655 return;
3656 }
3657 Intent intent = new Intent(this,
3658 CombinedBookmarkHistoryActivity.class);
3659 String title = current.getTitle();
3660 String url = current.getUrl();
Ben Murdochdcc2b6f2009-09-21 14:29:20 +01003661 Bitmap thumbnail = createScreenshot(current);
3662
The Android Open Source Project0c908882009-03-03 19:32:16 -08003663 // Just in case the user opens bookmarks before a page finishes loading
3664 // so the current history item, and therefore the page, is null.
3665 if (null == url) {
3666 url = mLastEnteredUrl;
3667 // This can happen.
3668 if (null == url) {
3669 url = mSettings.getHomePage();
3670 }
3671 }
3672 // In case the web page has not yet received its associated title.
3673 if (title == null) {
3674 title = url;
3675 }
3676 intent.putExtra("title", title);
3677 intent.putExtra("url", url);
Ben Murdochdcc2b6f2009-09-21 14:29:20 +01003678 intent.putExtra("thumbnail", thumbnail);
Leon Scroggins30444232009-09-04 18:36:20 -04003679 // Disable opening in a new window if we have maxed out the windows
Grace Kloba22ac16e2009-10-07 18:00:23 -07003680 intent.putExtra("disable_new_window", !mTabControl.canCreateNewTab());
Patrick Scott3918d442009-08-04 13:22:29 -04003681 intent.putExtra("touch_icon_url", current.getTouchIconUrl());
The Android Open Source Project0c908882009-03-03 19:32:16 -08003682 if (startWithHistory) {
3683 intent.putExtra(CombinedBookmarkHistoryActivity.STARTING_TAB,
3684 CombinedBookmarkHistoryActivity.HISTORY_TAB);
3685 }
3686 startActivityForResult(intent, COMBO_PAGE);
3687 }
3688
3689 // Called when loading from context menu or LOAD_URL message
Leon Scroggins92472e82010-02-17 16:32:28 -05003690 private void loadUrlFromContext(WebView view, String url) {
The Android Open Source Project0c908882009-03-03 19:32:16 -08003691 // In case the user enters nothing.
3692 if (url != null && url.length() != 0 && view != null) {
3693 url = smartUrlFilter(url);
Grace Kloba22ac16e2009-10-07 18:00:23 -07003694 if (!view.getWebViewClient().shouldOverrideUrlLoading(view, url)) {
Leon Scroggins92472e82010-02-17 16:32:28 -05003695 loadUrl(view, url);
The Android Open Source Project0c908882009-03-03 19:32:16 -08003696 }
3697 }
3698 }
3699
Leon Scroggins92472e82010-02-17 16:32:28 -05003700 /**
3701 * Load the URL into the given WebView and update the title bar
3702 * to reflect the new load. Call this instead of WebView.loadUrl
3703 * directly.
3704 * @param view The WebView used to load url.
3705 * @param url The URL to load.
3706 */
3707 private void loadUrl(WebView view, String url) {
3708 updateTitleBarForNewLoad(view, url);
3709 view.loadUrl(url);
3710 }
3711
3712 /**
3713 * Load UrlData into a Tab and update the title bar to reflect the new
3714 * load. Call this instead of UrlData.loadIn directly.
3715 * @param t The Tab used to load.
3716 * @param data The UrlData being loaded.
3717 */
3718 private void loadUrlDataIn(Tab t, UrlData data) {
3719 updateTitleBarForNewLoad(t.getWebView(), data.mUrl);
3720 data.loadIn(t);
3721 }
3722
3723 /**
3724 * If the WebView is the top window, update the title bar to reflect
3725 * loading the new URL. i.e. set its text, clear the favicon (which
3726 * will be set once the page begins loading), and set the progress to
3727 * INITIAL_PROGRESS to show that the page has begun to load. Called
3728 * by loadUrl and loadUrlDataIn.
3729 * @param view The WebView that is starting a load.
3730 * @param url The URL that is being loaded.
3731 */
3732 private void updateTitleBarForNewLoad(WebView view, String url) {
3733 if (view == getTopWindow()) {
3734 setUrlTitle(url, null);
3735 setFavicon(null);
3736 onProgressChanged(view, INITIAL_PROGRESS);
3737 }
3738 }
3739
The Android Open Source Project0c908882009-03-03 19:32:16 -08003740 private String smartUrlFilter(Uri inUri) {
3741 if (inUri != null) {
3742 return smartUrlFilter(inUri.toString());
3743 }
3744 return null;
3745 }
3746
Feng Qianb34f87a2009-03-24 21:27:26 -07003747 protected static final Pattern ACCEPTED_URI_SCHEMA = Pattern.compile(
The Android Open Source Project0c908882009-03-03 19:32:16 -08003748 "(?i)" + // switch on case insensitive matching
3749 "(" + // begin group for schema
3750 "(?:http|https|file):\\/\\/" +
Mitsuru Oshima25ad8ab2009-06-10 16:26:07 -07003751 "|(?:inline|data|about|content|javascript):" +
The Android Open Source Project0c908882009-03-03 19:32:16 -08003752 ")" +
3753 "(.*)" );
3754
3755 /**
3756 * Attempts to determine whether user input is a URL or search
3757 * terms. Anything with a space is passed to search.
3758 *
3759 * Converts to lowercase any mistakenly uppercased schema (i.e.,
3760 * "Http://" converts to "http://"
3761 *
3762 * @return Original or modified URL
3763 *
3764 */
3765 String smartUrlFilter(String url) {
3766
3767 String inUrl = url.trim();
3768 boolean hasSpace = inUrl.indexOf(' ') != -1;
3769
3770 Matcher matcher = ACCEPTED_URI_SCHEMA.matcher(inUrl);
3771 if (matcher.matches()) {
The Android Open Source Project0c908882009-03-03 19:32:16 -08003772 // force scheme to lowercase
3773 String scheme = matcher.group(1);
3774 String lcScheme = scheme.toLowerCase();
3775 if (!lcScheme.equals(scheme)) {
Mitsuru Oshima123ecfb2009-05-18 19:11:14 -07003776 inUrl = lcScheme + matcher.group(2);
3777 }
3778 if (hasSpace) {
3779 inUrl = inUrl.replace(" ", "%20");
The Android Open Source Project0c908882009-03-03 19:32:16 -08003780 }
3781 return inUrl;
3782 }
3783 if (hasSpace) {
Satish Sampath565505b2009-05-29 15:37:27 +01003784 // FIXME: Is this the correct place to add to searches?
3785 // what if someone else calls this function?
3786 int shortcut = parseUrlShortcut(inUrl);
3787 if (shortcut != SHORTCUT_INVALID) {
3788 Browser.addSearchUrl(mResolver, inUrl);
3789 String query = inUrl.substring(2);
3790 switch (shortcut) {
3791 case SHORTCUT_GOOGLE_SEARCH:
Grace Kloba47fdfdb2009-06-30 11:15:34 -07003792 return URLUtil.composeSearchUrl(query, QuickSearch_G, QUERY_PLACE_HOLDER);
Satish Sampath565505b2009-05-29 15:37:27 +01003793 case SHORTCUT_WIKIPEDIA_SEARCH:
3794 return URLUtil.composeSearchUrl(query, QuickSearch_W, QUERY_PLACE_HOLDER);
3795 case SHORTCUT_DICTIONARY_SEARCH:
3796 return URLUtil.composeSearchUrl(query, QuickSearch_D, QUERY_PLACE_HOLDER);
3797 case SHORTCUT_GOOGLE_MOBILE_LOCAL_SEARCH:
The Android Open Source Project0c908882009-03-03 19:32:16 -08003798 // FIXME: we need location in this case
Satish Sampath565505b2009-05-29 15:37:27 +01003799 return URLUtil.composeSearchUrl(query, QuickSearch_L, QUERY_PLACE_HOLDER);
The Android Open Source Project0c908882009-03-03 19:32:16 -08003800 }
3801 }
3802 } else {
Dan Egnor5ee906c2009-11-18 12:11:49 -08003803 if (Patterns.WEB_URL.matcher(inUrl).matches()) {
The Android Open Source Project0c908882009-03-03 19:32:16 -08003804 return URLUtil.guessUrl(inUrl);
3805 }
3806 }
3807
3808 Browser.addSearchUrl(mResolver, inUrl);
Grace Kloba47fdfdb2009-06-30 11:15:34 -07003809 return URLUtil.composeSearchUrl(inUrl, QuickSearch_G, QUERY_PLACE_HOLDER);
The Android Open Source Project0c908882009-03-03 19:32:16 -08003810 }
3811
Ben Murdochbff2d602009-07-01 20:19:05 +01003812 /* package */ void setShouldShowErrorConsole(boolean flag) {
3813 if (flag == mShouldShowErrorConsole) {
3814 // Nothing to do.
3815 return;
3816 }
3817
3818 mShouldShowErrorConsole = flag;
3819
Grace Kloba22ac16e2009-10-07 18:00:23 -07003820 ErrorConsoleView errorConsole = mTabControl.getCurrentTab()
3821 .getErrorConsole(true);
Ben Murdochbff2d602009-07-01 20:19:05 +01003822
3823 if (flag) {
3824 // Setting the show state of the console will cause it's the layout to be inflated.
3825 if (errorConsole.numberOfErrors() > 0) {
3826 errorConsole.showConsole(ErrorConsoleView.SHOW_MINIMIZED);
3827 } else {
3828 errorConsole.showConsole(ErrorConsoleView.SHOW_NONE);
3829 }
3830
3831 // Now we can add it to the main view.
3832 mErrorConsoleContainer.addView(errorConsole,
Romain Guy15b8ec62010-01-08 15:06:43 -08003833 new LinearLayout.LayoutParams(ViewGroup.LayoutParams.MATCH_PARENT,
Ben Murdochbff2d602009-07-01 20:19:05 +01003834 ViewGroup.LayoutParams.WRAP_CONTENT));
3835 } else {
3836 mErrorConsoleContainer.removeView(errorConsole);
3837 }
3838
3839 }
3840
Grace Kloba22ac16e2009-10-07 18:00:23 -07003841 boolean shouldShowErrorConsole() {
3842 return mShouldShowErrorConsole;
3843 }
3844
Andrei Popescu163ab742009-10-20 17:58:23 +01003845 private void setStatusBarVisibility(boolean visible) {
3846 int flag = visible ? 0 : WindowManager.LayoutParams.FLAG_FULLSCREEN;
3847 getWindow().setFlags(flag, WindowManager.LayoutParams.FLAG_FULLSCREEN);
3848 }
3849
Andrei Popescu56199cc2010-01-12 22:39:16 +00003850
3851 private void sendNetworkType(String type, String subtype) {
3852 WebView w = mTabControl.getCurrentWebView();
3853 if (w != null) {
3854 w.setNetworkType(type, subtype);
3855 }
3856 }
3857
Andrei Popescu30995e72010-02-09 16:59:58 +00003858 private void packageChanged(String packageName, boolean wasAdded) {
3859 WebView w = mTabControl.getCurrentWebView();
3860 if (w == null) {
3861 return;
3862 }
3863
3864 if (wasAdded) {
3865 w.addPackageName(packageName);
3866 } else {
3867 w.removePackageName(packageName);
3868 }
3869 }
3870
3871 private void addPackageNames(Set<String> packageNames) {
3872 WebView w = mTabControl.getCurrentWebView();
3873 if (w == null) {
3874 return;
3875 }
3876
3877 w.addPackageNames(packageNames);
3878 }
3879
3880 private void getInstalledPackages() {
3881 AsyncTask<Void, Void, Set<String> > task =
3882 new AsyncTask<Void, Void, Set<String> >() {
3883 protected Set<String> doInBackground(Void... unused) {
3884 Set<String> installedPackages = new HashSet<String>();
3885 PackageManager pm = BrowserActivity.this.getPackageManager();
3886 if (pm != null) {
3887 List<PackageInfo> packages = pm.getInstalledPackages(0);
3888 for (PackageInfo p : packages) {
3889 if (BrowserActivity.this.sGoogleApps.contains(p.packageName)) {
3890 installedPackages.add(p.packageName);
3891 }
3892 }
3893 }
3894
3895 return installedPackages;
3896 }
3897
3898 // Executes on the UI thread
3899 protected void onPostExecute(Set<String> installedPackages) {
3900 addPackageNames(installedPackages);
3901 }
3902 };
3903 task.execute();
3904 }
3905
Grace Klobaeb6eef42009-09-15 17:56:32 -07003906 final static int LOCK_ICON_UNSECURE = 0;
3907 final static int LOCK_ICON_SECURE = 1;
3908 final static int LOCK_ICON_MIXED = 2;
The Android Open Source Project0c908882009-03-03 19:32:16 -08003909
The Android Open Source Project0c908882009-03-03 19:32:16 -08003910 private BrowserSettings mSettings;
3911 private TabControl mTabControl;
3912 private ContentResolver mResolver;
3913 private FrameLayout mContentView;
Andrei Popescuadc008d2009-06-26 14:11:30 +01003914 private View mCustomView;
3915 private FrameLayout mCustomViewContainer;
Andrei Popescuc9b55562009-07-07 10:51:15 +01003916 private WebChromeClient.CustomViewCallback mCustomViewCallback;
The Android Open Source Project0c908882009-03-03 19:32:16 -08003917
3918 // FIXME, temp address onPrepareMenu performance problem. When we move everything out of
3919 // view, we should rewrite this.
3920 private int mCurrentMenuState = 0;
3921 private int mMenuState = R.id.MAIN_MENU;
Andrei Popescuadc008d2009-06-26 14:11:30 +01003922 private int mOldMenuState = EMPTY_MENU;
The Android Open Source Project0c908882009-03-03 19:32:16 -08003923 private static final int EMPTY_MENU = -1;
3924 private Menu mMenu;
3925
3926 private FindDialog mFindDialog;
3927 // Used to prevent chording to result in firing two shortcuts immediately
3928 // one after another. Fixes bug 1211714.
3929 boolean mCanChord;
3930
3931 private boolean mInLoad;
3932 private boolean mIsNetworkUp;
Ben Murdochb7cc8b42009-09-28 10:59:09 +01003933 private boolean mDidStopLoad;
The Android Open Source Project0c908882009-03-03 19:32:16 -08003934
The Android Open Source Project0c908882009-03-03 19:32:16 -08003935 private boolean mActivityInPause = true;
3936
3937 private boolean mMenuIsDown;
3938
The Android Open Source Project0c908882009-03-03 19:32:16 -08003939 private static boolean mInTrace;
3940
3941 // Performance probe
3942 private static final int[] SYSTEM_CPU_FORMAT = new int[] {
3943 Process.PROC_SPACE_TERM | Process.PROC_COMBINE,
3944 Process.PROC_SPACE_TERM | Process.PROC_OUT_LONG, // 1: user time
3945 Process.PROC_SPACE_TERM | Process.PROC_OUT_LONG, // 2: nice time
3946 Process.PROC_SPACE_TERM | Process.PROC_OUT_LONG, // 3: sys time
3947 Process.PROC_SPACE_TERM | Process.PROC_OUT_LONG, // 4: idle time
3948 Process.PROC_SPACE_TERM | Process.PROC_OUT_LONG, // 5: iowait time
3949 Process.PROC_SPACE_TERM | Process.PROC_OUT_LONG, // 6: irq time
3950 Process.PROC_SPACE_TERM | Process.PROC_OUT_LONG // 7: softirq time
3951 };
3952
3953 private long mStart;
3954 private long mProcessStart;
3955 private long mUserStart;
3956 private long mSystemStart;
3957 private long mIdleStart;
3958 private long mIrqStart;
3959
3960 private long mUiStart;
3961
3962 private Drawable mMixLockIcon;
3963 private Drawable mSecLockIcon;
The Android Open Source Project0c908882009-03-03 19:32:16 -08003964
3965 /* hold a ref so we can auto-cancel if necessary */
3966 private AlertDialog mAlertDialog;
3967
3968 // Wait for credentials before loading google.com
3969 private ProgressDialog mCredsDlg;
3970
3971 // The up-to-date URL and title (these can be different from those stored
3972 // in WebView, since it takes some time for the information in WebView to
3973 // get updated)
3974 private String mUrl;
3975 private String mTitle;
3976
3977 // As PageInfo has different style for landscape / portrait, we have
3978 // to re-open it when configuration changed
3979 private AlertDialog mPageInfoDialog;
Grace Kloba22ac16e2009-10-07 18:00:23 -07003980 private Tab mPageInfoView;
The Android Open Source Project0c908882009-03-03 19:32:16 -08003981 // If the Page-Info dialog is launched from the SSL-certificate-on-error
3982 // dialog, we should not just dismiss it, but should get back to the
3983 // SSL-certificate-on-error dialog. This flag is used to store this state
Leon Scrogginsc7b92f82010-01-11 18:17:31 -05003984 private boolean mPageInfoFromShowSSLCertificateOnError;
The Android Open Source Project0c908882009-03-03 19:32:16 -08003985
3986 // as SSLCertificateOnError has different style for landscape / portrait,
3987 // we have to re-open it when configuration changed
3988 private AlertDialog mSSLCertificateOnErrorDialog;
3989 private WebView mSSLCertificateOnErrorView;
3990 private SslErrorHandler mSSLCertificateOnErrorHandler;
3991 private SslError mSSLCertificateOnErrorError;
3992
3993 // as SSLCertificate has different style for landscape / portrait, we
3994 // have to re-open it when configuration changed
3995 private AlertDialog mSSLCertificateDialog;
Grace Kloba22ac16e2009-10-07 18:00:23 -07003996 private Tab mSSLCertificateView;
The Android Open Source Project0c908882009-03-03 19:32:16 -08003997
3998 // as HttpAuthentication has different style for landscape / portrait, we
3999 // have to re-open it when configuration changed
4000 private AlertDialog mHttpAuthenticationDialog;
4001 private HttpAuthHandler mHttpAuthHandler;
4002
4003 /*package*/ static final FrameLayout.LayoutParams COVER_SCREEN_PARAMS =
4004 new FrameLayout.LayoutParams(
Romain Guy15b8ec62010-01-08 15:06:43 -08004005 ViewGroup.LayoutParams.MATCH_PARENT,
4006 ViewGroup.LayoutParams.MATCH_PARENT);
Andrei Popescuadc008d2009-06-26 14:11:30 +01004007 /*package*/ static final FrameLayout.LayoutParams COVER_SCREEN_GRAVITY_CENTER =
4008 new FrameLayout.LayoutParams(
Romain Guy15b8ec62010-01-08 15:06:43 -08004009 ViewGroup.LayoutParams.MATCH_PARENT,
4010 ViewGroup.LayoutParams.MATCH_PARENT,
Andrei Popescuadc008d2009-06-26 14:11:30 +01004011 Gravity.CENTER);
Grace Kloba47fdfdb2009-06-30 11:15:34 -07004012 // Google search
4013 final static String QuickSearch_G = "http://www.google.com/m?q=%s";
The Android Open Source Project0c908882009-03-03 19:32:16 -08004014 // Wikipedia search
4015 final static String QuickSearch_W = "http://en.wikipedia.org/w/index.php?search=%s&go=Go";
4016 // Dictionary search
4017 final static String QuickSearch_D = "http://dictionary.reference.com/search?q=%s";
4018 // Google Mobile Local search
4019 final static String QuickSearch_L = "http://www.google.com/m/search?site=local&q=%s&near=mountain+view";
4020
4021 final static String QUERY_PLACE_HOLDER = "%s";
4022
4023 // "source" parameter for Google search through search key
4024 final static String GOOGLE_SEARCH_SOURCE_SEARCHKEY = "browser-key";
4025 // "source" parameter for Google search through goto menu
4026 final static String GOOGLE_SEARCH_SOURCE_GOTO = "browser-goto";
4027 // "source" parameter for Google search through simplily type
4028 final static String GOOGLE_SEARCH_SOURCE_TYPE = "browser-type";
4029 // "source" parameter for Google search suggested by the browser
4030 final static String GOOGLE_SEARCH_SOURCE_SUGGEST = "browser-suggest";
4031 // "source" parameter for Google search from unknown source
4032 final static String GOOGLE_SEARCH_SOURCE_UNKNOWN = "unknown";
4033
4034 private final static String LOGTAG = "browser";
4035
The Android Open Source Project0c908882009-03-03 19:32:16 -08004036 private String mLastEnteredUrl;
4037
4038 private PowerManager.WakeLock mWakeLock;
4039 private final static int WAKELOCK_TIMEOUT = 5 * 60 * 1000; // 5 minutes
4040
4041 private Toast mStopToast;
4042
Leon Scroggins68579392009-09-15 15:31:54 -04004043 private TitleBar mTitleBar;
Leon Scroggins81db3662009-06-04 17:45:11 -04004044
Ben Murdochbff2d602009-07-01 20:19:05 +01004045 private LinearLayout mErrorConsoleContainer = null;
4046 private boolean mShouldShowErrorConsole = false;
4047
The Android Open Source Project0c908882009-03-03 19:32:16 -08004048 // As the ids are dynamically created, we can't guarantee that they will
4049 // be in sequence, so this static array maps ids to a window number.
4050 final static private int[] WINDOW_SHORTCUT_ID_ARRAY =
4051 { R.id.window_one_menu_id, R.id.window_two_menu_id, R.id.window_three_menu_id,
4052 R.id.window_four_menu_id, R.id.window_five_menu_id, R.id.window_six_menu_id,
4053 R.id.window_seven_menu_id, R.id.window_eight_menu_id };
4054
4055 // monitor platform changes
4056 private IntentFilter mNetworkStateChangedFilter;
4057 private BroadcastReceiver mNetworkStateIntentReceiver;
4058
Grace Klobab4da0ad2009-05-14 14:45:40 -07004059 private BroadcastReceiver mPackageInstallationReceiver;
4060
The Android Open Source Project0c908882009-03-03 19:32:16 -08004061 // activity requestCode
Nicolas Roard78a98e42009-05-11 13:34:17 +01004062 final static int COMBO_PAGE = 1;
4063 final static int DOWNLOAD_PAGE = 2;
4064 final static int PREFERENCES_PAGE = 3;
Leon Scroggins8d5fa432009-10-02 15:55:59 -04004065 final static int FILE_SELECTED = 4;
The Android Open Source Project0c908882009-03-03 19:32:16 -08004066
Andrei Popescu540035d2009-09-18 18:59:20 +01004067 // the default <video> poster
4068 private Bitmap mDefaultVideoPoster;
4069 // the video progress view
4070 private View mVideoProgressView;
4071
Andrei Popescu30995e72010-02-09 16:59:58 +00004072 // The Google packages we monitor for the navigator.isApplicationInstalled()
4073 // API. Add as needed.
4074 private static Set<String> sGoogleApps;
4075 static {
4076 sGoogleApps = new HashSet<String>();
4077 sGoogleApps.add("com.google.android.youtube");
4078 }
4079
Mitsuru Oshima25ad8ab2009-06-10 16:26:07 -07004080 /**
4081 * A UrlData class to abstract how the content will be set to WebView.
4082 * This base class uses loadUrl to show the content.
4083 */
4084 private static class UrlData {
Grace Kloba068e48b2010-01-26 18:11:27 -08004085 final String mUrl;
4086 final Map<String, String> mHeaders;
Leon Scroggins58d56c62010-01-28 15:12:40 -05004087 final Intent mVoiceIntent;
Grace Kloba60e095c2009-06-16 11:50:55 -07004088
Mitsuru Oshima25ad8ab2009-06-10 16:26:07 -07004089 UrlData(String url) {
4090 this.mUrl = url;
Grace Kloba068e48b2010-01-26 18:11:27 -08004091 this.mHeaders = null;
Leon Scroggins58d56c62010-01-28 15:12:40 -05004092 this.mVoiceIntent = null;
Mitsuru Oshima25ad8ab2009-06-10 16:26:07 -07004093 }
Grace Kloba60e095c2009-06-16 11:50:55 -07004094
Leon Scroggins58d56c62010-01-28 15:12:40 -05004095 UrlData(String url, Map<String, String> headers, Intent intent) {
Grace Kloba068e48b2010-01-26 18:11:27 -08004096 this.mUrl = url;
4097 this.mHeaders = headers;
Leon Scrogginsa1cc3fd2010-02-01 16:14:11 -05004098 if (RecognizerResultsIntent.ACTION_VOICE_SEARCH_RESULTS
4099 .equals(intent.getAction())) {
Leon Scroggins58d56c62010-01-28 15:12:40 -05004100 this.mVoiceIntent = intent;
4101 } else {
4102 this.mVoiceIntent = null;
4103 }
Grace Kloba60e095c2009-06-16 11:50:55 -07004104 }
4105
Mitsuru Oshima25ad8ab2009-06-10 16:26:07 -07004106 boolean isEmpty() {
Leon Scroggins58d56c62010-01-28 15:12:40 -05004107 return mVoiceIntent == null && (mUrl == null || mUrl.length() == 0);
Mitsuru Oshima25ad8ab2009-06-10 16:26:07 -07004108 }
4109
Leon Scroggins92472e82010-02-17 16:32:28 -05004110 /**
4111 * Load this UrlData into the given Tab. Use loadUrlDataIn to update
4112 * the title bar as well.
4113 */
Leon Scroggins58d56c62010-01-28 15:12:40 -05004114 public void loadIn(Tab t) {
4115 if (mVoiceIntent != null) {
4116 t.activateVoiceSearchMode(mVoiceIntent);
4117 } else {
4118 t.getWebView().loadUrl(mUrl, mHeaders);
4119 }
Mitsuru Oshima25ad8ab2009-06-10 16:26:07 -07004120 }
4121 };
4122
Leon Scroggins1f005d32009-08-10 17:36:42 -04004123 /* package */ static final UrlData EMPTY_URL_DATA = new UrlData(null);
The Android Open Source Project0c908882009-03-03 19:32:16 -08004124}