blob: 799a8da7864cc751e8aa54140feb951b54705123 [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
Michael Kolb3f65c382010-08-20 15:31:16 -070019import com.android.browser.ScrollWebView.ScrollListener;
Bjorn Bringertd69f51d2010-09-13 14:06:41 +010020import com.android.browser.search.SearchEngine;
Michael Kolb3f65c382010-08-20 15:31:16 -070021import com.android.common.Search;
22import com.android.common.speech.LoggingEvents;
23
Michael Kolbed217742010-08-10 17:52:34 -070024import android.app.ActionBar;
The Android Open Source Project0c908882009-03-03 19:32:16 -080025import android.app.Activity;
The Android Open Source Project0c908882009-03-03 19:32:16 -080026import android.app.AlertDialog;
Michael Kolbc7485ae2010-09-03 10:10:58 -070027import android.app.Dialog;
Steve Howard5a862fc2010-09-28 12:52:06 -070028import android.app.DownloadManager;
The Android Open Source Project0c908882009-03-03 19:32:16 -080029import android.app.ProgressDialog;
30import android.app.SearchManager;
31import android.content.ActivityNotFoundException;
32import android.content.BroadcastReceiver;
Dianne Hackborn80f32622010-08-05 14:17:53 -070033import android.content.ClipboardManager;
The Android Open Source Project0c908882009-03-03 19:32:16 -080034import android.content.ComponentName;
Leon Scroggins58d56c62010-01-28 15:12:40 -050035import android.content.ContentProvider;
36import android.content.ContentProviderClient;
The Android Open Source Project0c908882009-03-03 19:32:16 -080037import android.content.ContentResolver;
38import android.content.ContentValues;
39import android.content.Context;
40import android.content.DialogInterface;
41import android.content.Intent;
42import android.content.IntentFilter;
The Android Open Source Project0c908882009-03-03 19:32:16 -080043import android.content.pm.PackageManager;
44import android.content.pm.ResolveInfo;
The Android Open Source Project0c908882009-03-03 19:32:16 -080045import android.content.res.Configuration;
46import android.content.res.Resources;
47import android.database.Cursor;
The Android Open Source Project0c908882009-03-03 19:32:16 -080048import android.graphics.Bitmap;
Andrei Popescu540035d2009-09-18 18:59:20 +010049import android.graphics.BitmapFactory;
The Android Open Source Project0c908882009-03-03 19:32:16 -080050import android.graphics.Canvas;
The Android Open Source Project0c908882009-03-03 19:32:16 -080051import android.graphics.Picture;
Leon Scroggins3bbb6ca2009-09-09 12:51:10 -040052import android.graphics.PixelFormat;
The Android Open Source Project0c908882009-03-03 19:32:16 -080053import android.graphics.drawable.Drawable;
The Android Open Source Project0c908882009-03-03 19:32:16 -080054import android.net.ConnectivityManager;
Andrei Popescu56199cc2010-01-12 22:39:16 +000055import android.net.NetworkInfo;
The Android Open Source Project0c908882009-03-03 19:32:16 -080056import android.net.Uri;
57import android.net.WebAddress;
The Android Open Source Project0c908882009-03-03 19:32:16 -080058import android.net.http.SslCertificate;
59import android.net.http.SslError;
60import android.os.AsyncTask;
61import android.os.Bundle;
62import android.os.Debug;
63import android.os.Environment;
64import android.os.Handler;
The Android Open Source Project0c908882009-03-03 19:32:16 -080065import android.os.Message;
66import android.os.PowerManager;
67import android.os.Process;
The Android Open Source Project0c908882009-03-03 19:32:16 -080068import android.os.SystemClock;
The Android Open Source Project0c908882009-03-03 19:32:16 -080069import android.provider.Browser;
Michael Kolb370a4f32010-10-06 10:45:32 -070070import android.provider.BrowserContract;
Jeff Hamilton1a805652010-09-07 12:36:30 -070071import android.provider.BrowserContract.Images;
Michael Kolbe421c242010-10-04 19:29:01 -070072import android.provider.ContactsContract;
Michael Kolba2b2ba82010-08-04 17:54:03 -070073import android.provider.ContactsContract.Intents.Insert;
The Android Open Source Project0c908882009-03-03 19:32:16 -080074import android.provider.Downloads;
75import android.provider.MediaStore;
Leon Scrogginsa1cc3fd2010-02-01 16:14:11 -050076import android.speech.RecognizerResultsIntent;
The Android Open Source Project0c908882009-03-03 19:32:16 -080077import android.text.TextUtils;
78import android.text.format.DateFormat;
The Android Open Source Project0c908882009-03-03 19:32:16 -080079import android.util.Log;
Dianne Hackborn385effd2010-02-24 20:03:04 -080080import android.util.Patterns;
Leon Scroggins III8e4fbf12010-08-17 16:58:15 -040081import android.view.ActionMode;
The Android Open Source Project0c908882009-03-03 19:32:16 -080082import android.view.ContextMenu;
Michael Kolba2b2ba82010-08-04 17:54:03 -070083import android.view.ContextMenu.ContextMenuInfo;
The Android Open Source Project0c908882009-03-03 19:32:16 -080084import android.view.Gravity;
85import android.view.KeyEvent;
86import android.view.LayoutInflater;
87import android.view.Menu;
88import android.view.MenuInflater;
89import android.view.MenuItem;
Michael Kolba2b2ba82010-08-04 17:54:03 -070090import android.view.MenuItem.OnMenuItemClickListener;
The Android Open Source Project0c908882009-03-03 19:32:16 -080091import android.view.View;
92import android.view.ViewGroup;
93import android.view.Window;
94import android.view.WindowManager;
Svetoslav Ganov2b345992010-05-06 06:13:54 -070095import android.view.accessibility.AccessibilityManager;
The Android Open Source Project0c908882009-03-03 19:32:16 -080096import android.webkit.CookieManager;
97import android.webkit.CookieSyncManager;
98import android.webkit.DownloadListener;
99import android.webkit.HttpAuthHandler;
100import android.webkit.SslErrorHandler;
101import android.webkit.URLUtil;
Leon Clarkecb6cc862009-09-29 18:35:13 +0100102import android.webkit.ValueCallback;
The Android Open Source Project0c908882009-03-03 19:32:16 -0800103import android.webkit.WebChromeClient;
104import android.webkit.WebHistoryItem;
105import android.webkit.WebIconDatabase;
Leon Scroggins88d08032010-10-21 15:17:10 -0400106import android.webkit.WebSettings;
The Android Open Source Project0c908882009-03-03 19:32:16 -0800107import android.webkit.WebView;
The Android Open Source Project0c908882009-03-03 19:32:16 -0800108import android.widget.EditText;
109import android.widget.FrameLayout;
110import android.widget.LinearLayout;
111import android.widget.TextView;
112import android.widget.Toast;
113
Leon Scrogginsb6b7f9e2009-06-18 12:05:28 -0400114import java.io.ByteArrayOutputStream;
The Android Open Source Project0c908882009-03-03 19:32:16 -0800115import java.io.File;
Ben Murdoch4f75ba22009-10-27 11:48:28 +0000116import java.io.IOException;
117import java.io.InputStream;
The Android Open Source Project0c908882009-03-03 19:32:16 -0800118import java.net.MalformedURLException;
Dianne Hackborn99189432009-06-17 18:06:18 -0700119import java.net.URISyntaxException;
The Android Open Source Project0c908882009-03-03 19:32:16 -0800120import java.net.URL;
121import java.net.URLEncoder;
Elliott Slaughter3d6df162010-08-25 13:17:44 -0700122import java.util.Calendar;
The Android Open Source Project0c908882009-03-03 19:32:16 -0800123import java.util.Date;
The Android Open Source Project0c908882009-03-03 19:32:16 -0800124import java.util.HashMap;
Grace Kloba00f54c52010-01-27 14:53:51 -0800125import java.util.Iterator;
Grace Kloba068e48b2010-01-26 18:11:27 -0800126import java.util.Map;
Michael Kolbfe251992010-07-08 15:41:55 -0700127import java.util.Vector;
The Android Open Source Project0c908882009-03-03 19:32:16 -0800128import java.util.regex.Matcher;
129import java.util.regex.Pattern;
The Android Open Source Project0c908882009-03-03 19:32:16 -0800130
131public class BrowserActivity extends Activity
Michael Kolbe421c242010-10-04 19:29:01 -0700132 implements View.OnCreateContextMenuListener, DownloadListener,
Leon Scroggins88d08032010-10-21 15:17:10 -0400133 BookmarksHistoryCallbacks {
The Android Open Source Project0c908882009-03-03 19:32:16 -0800134
Dave Bort31a6d1c2009-04-13 15:56:49 -0700135 /* Define some aliases to make these debugging flags easier to refer to.
136 * This file imports android.provider.Browser, so we can't just refer to "Browser.DEBUG".
137 */
138 private final static boolean DEBUG = com.android.browser.Browser.DEBUG;
139 private final static boolean LOGV_ENABLED = com.android.browser.Browser.LOGV_ENABLED;
140 private final static boolean LOGD_ENABLED = com.android.browser.Browser.LOGD_ENABLED;
141
Cary Clarka9771242009-08-11 16:42:26 -0400142 private static class ClearThumbnails extends AsyncTask<File, Void, Void> {
The Android Open Source Project0c908882009-03-03 19:32:16 -0800143 @Override
144 public Void doInBackground(File... files) {
145 if (files != null) {
146 for (File f : files) {
Cary Clarkd6be1752009-08-12 12:56:42 -0400147 if (!f.delete()) {
148 Log.e(LOGTAG, f.getPath() + " was not deleted");
149 }
The Android Open Source Project0c908882009-03-03 19:32:16 -0800150 }
151 }
152 return null;
153 }
154 }
155
Leon Scroggins3bbb6ca2009-09-09 12:51:10 -0400156 /**
157 * This layout holds everything you see below the status bar, including the
158 * error console, the custom view container, and the webviews.
159 */
160 private FrameLayout mBrowserFrameLayout;
Leon Scroggins81db3662009-06-04 17:45:11 -0400161
Michael Kolbe421c242010-10-04 19:29:01 -0700162 private CombinedBookmarkHistoryView mComboView;
163
Leon Scrogginsd746a942010-05-19 13:21:44 -0400164 private boolean mXLargeScreenSize;
165
Jeff Davidson43610292010-07-16 16:03:58 -0700166 private Boolean mIsProviderPresent = null;
167 private Uri mRlzUri = null;
168
Grace Kloba22ac16e2009-10-07 18:00:23 -0700169 @Override
170 public void onCreate(Bundle icicle) {
Dave Bort31a6d1c2009-04-13 15:56:49 -0700171 if (LOGV_ENABLED) {
The Android Open Source Project0c908882009-03-03 19:32:16 -0800172 Log.v(LOGTAG, this + " onStart");
173 }
174 super.onCreate(icicle);
The Android Open Source Project0c908882009-03-03 19:32:16 -0800175 // test the browser in OpenGL
176 // requestWindowFeature(Window.FEATURE_OPENGL);
177
Mike Reedd334bf52010-01-26 15:21:44 -0500178 // enable this to test the browser in 32bit
179 if (false) {
180 getWindow().setFormat(PixelFormat.RGBX_8888);
181 BitmapFactory.setDefaultConfig(Bitmap.Config.ARGB_8888);
182 }
183
Bjorn Bringertb1402a52010-10-12 10:53:12 +0100184 if (((AccessibilityManager) getSystemService(ACCESSIBILITY_SERVICE)).isEnabled()) {
Svetoslav Ganov2b345992010-05-06 06:13:54 -0700185 setDefaultKeyMode(DEFAULT_KEYS_DISABLE);
186 } else {
187 setDefaultKeyMode(DEFAULT_KEYS_SEARCH_LOCAL);
188 }
The Android Open Source Project0c908882009-03-03 19:32:16 -0800189
190 mResolver = getContentResolver();
191
Leon Scroggins IIIcc14c8c2010-09-27 12:45:34 -0400192 // Keep a settings instance handy.
193 mSettings = BrowserSettings.getInstance();
194
Grace Kloba0923d692009-09-23 21:37:25 -0700195 // If this was a web search request, pass it on to the default web
196 // search provider and finish this activity.
197 if (handleWebSearchIntent(getIntent())) {
198 finish();
199 return;
200 }
201
Michael Kolb0506f2d2010-10-14 16:20:16 -0700202 mSecLockIcon = getResources().getDrawable(R.drawable.ic_secure);
203 mMixLockIcon = getResources().getDrawable(R.drawable.ic_partial_secure);
The Android Open Source Project0c908882009-03-03 19:32:16 -0800204
Michael Kolbed217742010-08-10 17:52:34 -0700205 // Create the tab control and our initial tab
206 mTabControl = new TabControl(this);
207
208 mXLargeScreenSize = (getResources().getConfiguration().screenLayout
209 & Configuration.SCREENLAYOUT_SIZE_MASK)
210 == Configuration.SCREENLAYOUT_SIZE_XLARGE;
211
Leon Scroggins81db3662009-06-04 17:45:11 -0400212 FrameLayout frameLayout = (FrameLayout) getWindow().getDecorView()
Bjorn Bringertb1402a52010-10-12 10:53:12 +0100213 .findViewById(android.R.id.content);
Leon Scroggins3bbb6ca2009-09-09 12:51:10 -0400214 mBrowserFrameLayout = (FrameLayout) LayoutInflater.from(this)
215 .inflate(R.layout.custom_screen, null);
216 mContentView = (FrameLayout) mBrowserFrameLayout.findViewById(
217 R.id.main_content);
218 mErrorConsoleContainer = (LinearLayout) mBrowserFrameLayout
219 .findViewById(R.id.error_console);
220 mCustomViewContainer = (FrameLayout) mBrowserFrameLayout
221 .findViewById(R.id.fullscreen_custom_content);
222 frameLayout.addView(mBrowserFrameLayout, COVER_SCREEN_PARAMS);
Michael Kolbe0a36662010-06-29 10:37:12 -0700223
Leon Scrogginsd746a942010-05-19 13:21:44 -0400224 if (mXLargeScreenSize) {
Michael Kolba2b2ba82010-08-04 17:54:03 -0700225 mTitleBar = new TitleBarXLarge(this);
226 mTitleBar.setProgress(100);
227 mFakeTitleBar = new TitleBarXLarge(this);
Michael Kolbed217742010-08-10 17:52:34 -0700228 ActionBar actionBar = getActionBar();
Michael Kolba2b2ba82010-08-04 17:54:03 -0700229 mTabBar = new TabBar(this, mTabControl, (TitleBarXLarge) mFakeTitleBar);
Michael Kolbed217742010-08-10 17:52:34 -0700230 actionBar.setCustomNavigationMode(mTabBar);
Michael Kolb68775752010-08-19 12:42:01 -0700231 // disable built in zoom controls
232 mTabControl.setDisplayZoomControls(false);
Leon Scrogginsd746a942010-05-19 13:21:44 -0400233 } else {
Leon Scroggins571b3762010-05-26 10:25:01 -0400234 mTitleBar = new TitleBar(this);
Leon Scrogginsd746a942010-05-19 13:21:44 -0400235 // mTitleBar will be always be shown in the fully loaded mode on
236 // phone
237 mTitleBar.setProgress(100);
Leon Scrogginsd746a942010-05-19 13:21:44 -0400238 mFakeTitleBar = new TitleBar(this);
239 }
The Android Open Source Project0c908882009-03-03 19:32:16 -0800240
The Android Open Source Project0c908882009-03-03 19:32:16 -0800241 // Open the icon database and retain all the bookmark urls for favicons
242 retainIconsOnStartup();
243
The Android Open Source Project0c908882009-03-03 19:32:16 -0800244 mSettings.setTabControl(mTabControl);
The Android Open Source Project0c908882009-03-03 19:32:16 -0800245
246 PowerManager pm = (PowerManager) getSystemService(Context.POWER_SERVICE);
247 mWakeLock = pm.newWakeLock(PowerManager.PARTIAL_WAKE_LOCK, "Browser");
248
Patrick Scott6adacc92010-03-05 08:24:51 -0500249 // Find out if the network is currently up.
250 ConnectivityManager cm = (ConnectivityManager) getSystemService(
251 Context.CONNECTIVITY_SERVICE);
252 NetworkInfo info = cm.getActiveNetworkInfo();
253 if (info != null) {
254 mIsNetworkUp = info.isAvailable();
255 }
256
Grace Klobaa34f6862009-07-31 16:28:17 -0700257 /* enables registration for changes in network status from
258 http stack */
259 mNetworkStateChangedFilter = new IntentFilter();
260 mNetworkStateChangedFilter.addAction(
261 ConnectivityManager.CONNECTIVITY_ACTION);
262 mNetworkStateIntentReceiver = new BroadcastReceiver() {
263 @Override
264 public void onReceive(Context context, Intent intent) {
265 if (intent.getAction().equals(
266 ConnectivityManager.CONNECTIVITY_ACTION)) {
Andrei Popescue4c98462010-02-19 15:44:13 +0000267
268 NetworkInfo info = intent.getParcelableExtra(
269 ConnectivityManager.EXTRA_NETWORK_INFO);
270 String typeName = info.getTypeName();
271 String subtypeName = info.getSubtypeName();
272 sendNetworkType(typeName.toLowerCase(),
273 (subtypeName != null ? subtypeName.toLowerCase() : ""));
274
275 onNetworkToggle(info.isAvailable());
Grace Klobaa34f6862009-07-31 16:28:17 -0700276 }
277 }
278 };
279
Elliott Slaughter3d6df162010-08-25 13:17:44 -0700280 // Unless the last browser usage was within 24 hours, destroy any
281 // remaining incognito tabs.
282
283 Calendar lastActiveDate = icicle != null ? (Calendar) icicle.getSerializable("lastActiveDate") : null;
284 Calendar today = Calendar.getInstance();
285 Calendar yesterday = Calendar.getInstance();
286 yesterday.add(Calendar.DATE, -1);
287
288 boolean dontRestoreIncognitoTabs = lastActiveDate == null
289 || lastActiveDate.before(yesterday)
290 || lastActiveDate.after(today);
291
292 if (!mTabControl.restoreState(icicle, dontRestoreIncognitoTabs)) {
The Android Open Source Project0c908882009-03-03 19:32:16 -0800293 // clear up the thumbnail directory if we can't restore the state as
294 // none of the files in the directory are referenced any more.
295 new ClearThumbnails().execute(
296 mTabControl.getThumbnailDir().listFiles());
Grace Klobaaab3f092009-07-30 12:29:51 -0700297 // there is no quit on Android. But if we can't restore the state,
298 // we can treat it as a new Browser, remove the old session cookies.
299 CookieManager.getInstance().removeSessionCookie();
Elliott Slaughter3d6df162010-08-25 13:17:44 -0700300 // remove any incognito files
301 WebView.cleanupPrivateBrowsingFiles(this);
The Android Open Source Project0c908882009-03-03 19:32:16 -0800302 final Intent intent = getIntent();
303 final Bundle extra = intent.getExtras();
304 // Create an initial tab.
305 // If the intent is ACTION_VIEW and data is not null, the Browser is
306 // invoked to view the content by another application. In this case,
307 // the tab will be close when exit.
Mitsuru Oshima25ad8ab2009-06-10 16:26:07 -0700308 UrlData urlData = getUrlDataFromIntent(intent);
309
Leon Scroggins58d56c62010-01-28 15:12:40 -0500310 String action = intent.getAction();
Grace Kloba22ac16e2009-10-07 18:00:23 -0700311 final Tab t = mTabControl.createNewTab(
Leon Scroggins58d56c62010-01-28 15:12:40 -0500312 (Intent.ACTION_VIEW.equals(action) &&
313 intent.getData() != null)
Leon Scrogginsa1cc3fd2010-02-01 16:14:11 -0500314 || RecognizerResultsIntent.ACTION_VOICE_SEARCH_RESULTS
315 .equals(action),
Elliott Slaughterf0f03952010-07-14 18:10:36 -0700316 intent.getStringExtra(Browser.EXTRA_APPLICATION_ID),
317 urlData.mUrl, false);
The Android Open Source Project0c908882009-03-03 19:32:16 -0800318 mTabControl.setCurrentTab(t);
The Android Open Source Project0c908882009-03-03 19:32:16 -0800319 attachTabToContentView(t);
320 WebView webView = t.getWebView();
321 if (extra != null) {
322 int scale = extra.getInt(Browser.INITIAL_ZOOM_LEVEL, 0);
323 if (scale > 0 && scale <= 1000) {
324 webView.setInitialScale(scale);
325 }
326 }
The Android Open Source Project0c908882009-03-03 19:32:16 -0800327
Mitsuru Oshima25ad8ab2009-06-10 16:26:07 -0700328 if (urlData.isEmpty()) {
Shimeng (Simon) Wang98d5fce2010-03-16 13:23:39 -0700329 loadUrl(webView, mSettings.getHomePage());
The Android Open Source Project0c908882009-03-03 19:32:16 -0800330 } else {
Patrick Scott9d53da02010-02-19 10:19:01 -0500331 loadUrlDataIn(t, urlData);
The Android Open Source Project0c908882009-03-03 19:32:16 -0800332 }
333 } else {
Elliott Slaughter3d6df162010-08-25 13:17:44 -0700334 if (dontRestoreIncognitoTabs) {
335 WebView.cleanupPrivateBrowsingFiles(this);
336 }
337
The Android Open Source Project0c908882009-03-03 19:32:16 -0800338 // TabControl.restoreState() will create a new tab even if
Leon Scroggins1f005d32009-08-10 17:36:42 -0400339 // restoring the state fails.
The Android Open Source Project0c908882009-03-03 19:32:16 -0800340 attachTabToContentView(mTabControl.getCurrentTab());
341 }
Grace Kloba615c6c92009-08-03 10:22:44 -0700342
Cary Clarkb4b83182010-07-01 12:36:56 -0400343 // Delete old thumbnails to save space
344 File dir = mTabControl.getThumbnailDir();
345 if (dir.exists()) {
346 for (String child : dir.list()) {
347 File f = new File(dir, child);
348 f.delete();
349 }
350 }
351
Feng Qianb3c02da2009-06-29 15:58:08 -0700352 // Read JavaScript flags if it exists.
353 String jsFlags = mSettings.getJsFlags();
354 if (jsFlags.trim().length() != 0) {
355 mTabControl.getCurrentWebView().setJsFlags(jsFlags);
356 }
Bjorn Bringerta7611812010-03-24 11:12:02 +0000357
358 // Start watching the default geolocation permissions
359 mSystemAllowGeolocationOrigins
360 = new SystemAllowGeolocationOrigins(getApplicationContext());
361 mSystemAllowGeolocationOrigins.start();
The Android Open Source Project0c908882009-03-03 19:32:16 -0800362 }
363
Michael Kolba2b2ba82010-08-04 17:54:03 -0700364 ScrollListener getScrollListener() {
365 return mTabBar;
366 }
367
Leon Scroggins58d56c62010-01-28 15:12:40 -0500368 /**
369 * Feed the previously stored results strings to the BrowserProvider so that
370 * the SearchDialog will show them instead of the standard searches.
371 * @param result String to show on the editable line of the SearchDialog.
372 */
373 /* package */ void showVoiceSearchResults(String result) {
374 ContentProviderClient client = mResolver.acquireContentProviderClient(
375 Browser.BOOKMARKS_URI);
376 ContentProvider prov = client.getLocalContentProvider();
377 BrowserProvider bp = (BrowserProvider) prov;
378 bp.setQueryResults(mTabControl.getCurrentTab().getVoiceSearchResults());
379 client.release();
380
Leon Scrogginsfbb3f152010-03-09 17:26:56 -0500381 Bundle bundle = createGoogleSearchSourceBundle(
382 GOOGLE_SEARCH_SOURCE_SEARCHKEY);
383 bundle.putBoolean(SearchManager.CONTEXT_IS_VOICE, true);
384 startSearch(result, false, bundle, false);
Leon Scroggins58d56c62010-01-28 15:12:40 -0500385 }
386
The Android Open Source Project0c908882009-03-03 19:32:16 -0800387 @Override
388 protected void onNewIntent(Intent intent) {
Grace Kloba22ac16e2009-10-07 18:00:23 -0700389 Tab current = mTabControl.getCurrentTab();
The Android Open Source Project0c908882009-03-03 19:32:16 -0800390 // When a tab is closed on exit, the current tab index is set to -1.
391 // Reset before proceed as Browser requires the current tab to be set.
392 if (current == null) {
393 // Try to reset the tab in case the index was incorrect.
394 current = mTabControl.getTab(0);
395 if (current == null) {
396 // No tabs at all so just ignore this intent.
397 return;
398 }
399 mTabControl.setCurrentTab(current);
400 attachTabToContentView(current);
401 resetTitleAndIcon(current.getWebView());
402 }
403 final String action = intent.getAction();
404 final int flags = intent.getFlags();
405 if (Intent.ACTION_MAIN.equals(action) ||
406 (flags & Intent.FLAG_ACTIVITY_LAUNCHED_FROM_HISTORY) != 0) {
407 // just resume the browser
408 return;
409 }
Leon Scrogginsb8a844d2010-03-18 15:06:15 -0400410 // In case the SearchDialog is open.
411 ((SearchManager) getSystemService(Context.SEARCH_SERVICE))
412 .stopSearch();
Leon Scrogginsa1cc3fd2010-02-01 16:14:11 -0500413 boolean activateVoiceSearch = RecognizerResultsIntent
414 .ACTION_VOICE_SEARCH_RESULTS.equals(action);
The Android Open Source Project0c908882009-03-03 19:32:16 -0800415 if (Intent.ACTION_VIEW.equals(action)
416 || Intent.ACTION_SEARCH.equals(action)
417 || MediaStore.INTENT_ACTION_MEDIA_SEARCH.equals(action)
Leon Scroggins58d56c62010-01-28 15:12:40 -0500418 || Intent.ACTION_WEB_SEARCH.equals(action)
419 || activateVoiceSearch) {
Leon Scroggins3b18ce32010-02-08 17:35:59 -0500420 if (current.isInVoiceSearchMode()) {
421 String title = current.getVoiceDisplayTitle();
422 if (title != null && title.equals(intent.getStringExtra(
423 SearchManager.QUERY))) {
424 // The user submitted the same search as the last voice
425 // search, so do nothing.
426 return;
427 }
Leon Scroggins1fe13a52010-02-09 15:31:26 -0500428 if (Intent.ACTION_SEARCH.equals(action)
429 && current.voiceSearchSourceIsGoogle()) {
430 Intent logIntent = new Intent(
431 LoggingEvents.ACTION_LOG_EVENT);
432 logIntent.putExtra(LoggingEvents.EXTRA_EVENT,
433 LoggingEvents.VoiceSearch.QUERY_UPDATED);
434 logIntent.putExtra(
435 LoggingEvents.VoiceSearch.EXTRA_QUERY_UPDATED_VALUE,
436 intent.getDataString());
437 sendBroadcast(logIntent);
438 // Note, onPageStarted will revert the voice title bar
439 // When http://b/issue?id=2379215 is fixed, we should update
440 // the title bar here.
441 }
Leon Scroggins3b18ce32010-02-08 17:35:59 -0500442 }
Satish Sampath565505b2009-05-29 15:37:27 +0100443 // If this was a search request (e.g. search query directly typed into the address bar),
444 // pass it on to the default web search provider.
445 if (handleWebSearchIntent(intent)) {
446 return;
447 }
448
Mitsuru Oshima25ad8ab2009-06-10 16:26:07 -0700449 UrlData urlData = getUrlDataFromIntent(intent);
450 if (urlData.isEmpty()) {
451 urlData = new UrlData(mSettings.getHomePage());
The Android Open Source Project0c908882009-03-03 19:32:16 -0800452 }
Mitsuru Oshima25ad8ab2009-06-10 16:26:07 -0700453
Grace Klobacc634032009-07-28 15:58:19 -0700454 final String appId = intent
455 .getStringExtra(Browser.EXTRA_APPLICATION_ID);
Leon Scroggins47208682010-04-07 17:59:48 -0400456 if ((Intent.ACTION_VIEW.equals(action)
457 // If a voice search has no appId, it means that it came
458 // from the browser. In that case, reuse the current tab.
459 || (activateVoiceSearch && appId != null))
Grace Klobacc634032009-07-28 15:58:19 -0700460 && !getPackageName().equals(appId)
461 && (flags & Intent.FLAG_ACTIVITY_BROUGHT_TO_FRONT) != 0) {
Grace Kloba22ac16e2009-10-07 18:00:23 -0700462 Tab appTab = mTabControl.getTabFromId(appId);
The Android Open Source Projectf59ec872009-03-13 13:04:24 -0700463 if (appTab != null) {
464 Log.i(LOGTAG, "Reusing tab for " + appId);
465 // Dismiss the subwindow if applicable.
466 dismissSubWindow(appTab);
467 // Since we might kill the WebView, remove it from the
468 // content view first.
469 removeTabFromContentView(appTab);
470 // Recreate the main WebView after destroying the old one.
471 // If the WebView has the same original url and is on that
472 // page, it can be reused.
473 boolean needsLoad =
Leon Scroggins6eac63e2010-03-15 18:19:14 -0400474 mTabControl.recreateWebView(appTab, urlData);
Ben Murdochbff2d602009-07-01 20:19:05 +0100475
The Android Open Source Projectf59ec872009-03-13 13:04:24 -0700476 if (current != appTab) {
Leon Scroggins1f005d32009-08-10 17:36:42 -0400477 switchToTab(mTabControl.getTabIndex(appTab));
478 if (needsLoad) {
Patrick Scott9d53da02010-02-19 10:19:01 -0500479 loadUrlDataIn(appTab, urlData);
Leon Scroggins1f005d32009-08-10 17:36:42 -0400480 }
The Android Open Source Projectf59ec872009-03-13 13:04:24 -0700481 } else {
Leon Scroggins1f005d32009-08-10 17:36:42 -0400482 // If the tab was the current tab, we have to attach
483 // it to the view system again.
484 attachTabToContentView(appTab);
485 if (needsLoad) {
Patrick Scott9d53da02010-02-19 10:19:01 -0500486 loadUrlDataIn(appTab, urlData);
The Android Open Source Projectf59ec872009-03-13 13:04:24 -0700487 }
488 }
489 return;
Patrick Scottcd115892009-07-16 09:42:58 -0400490 } else {
491 // No matching application tab, try to find a regular tab
492 // with a matching url.
493 appTab = mTabControl.findUnusedTabWithUrl(urlData.mUrl);
Leon Scroggins25515f82009-08-19 15:31:58 -0400494 if (appTab != null) {
495 if (current != appTab) {
496 switchToTab(mTabControl.getTabIndex(appTab));
497 }
498 // Otherwise, we are already viewing the correct tab.
Patrick Scottcd115892009-07-16 09:42:58 -0400499 } else {
500 // if FLAG_ACTIVITY_BROUGHT_TO_FRONT flag is on, the url
501 // will be opened in a new tab unless we have reached
502 // MAX_TABS. Then the url will be opened in the current
503 // tab. If a new tab is created, it will have "true" for
504 // exit on close.
Leon Scroggins1f005d32009-08-10 17:36:42 -0400505 openTabAndShow(urlData, true, appId);
Patrick Scottcd115892009-07-16 09:42:58 -0400506 }
The Android Open Source Projectf59ec872009-03-13 13:04:24 -0700507 }
The Android Open Source Project0c908882009-03-03 19:32:16 -0800508 } else {
Grace Kloba638d3f42009-11-23 10:35:04 -0800509 if (!urlData.isEmpty()
510 && urlData.mUrl.startsWith("about:debug")) {
511 if ("about:debug.dom".equals(urlData.mUrl)) {
512 current.getWebView().dumpDomTree(false);
513 } else if ("about:debug.dom.file".equals(urlData.mUrl)) {
514 current.getWebView().dumpDomTree(true);
515 } else if ("about:debug.render".equals(urlData.mUrl)) {
516 current.getWebView().dumpRenderTree(false);
517 } else if ("about:debug.render.file".equals(urlData.mUrl)) {
518 current.getWebView().dumpRenderTree(true);
519 } else if ("about:debug.display".equals(urlData.mUrl)) {
520 current.getWebView().dumpDisplayTree();
521 } else {
522 mSettings.toggleDebugSettings();
523 }
The Android Open Source Project0c908882009-03-03 19:32:16 -0800524 return;
525 }
Leon Scroggins1f005d32009-08-10 17:36:42 -0400526 // Get rid of the subwindow if it exists
527 dismissSubWindow(current);
Leon Scroggins8588d152010-04-15 11:01:53 -0400528 // If the current Tab is being used as an application tab,
529 // remove the association, since the new Intent means that it is
530 // no longer associated with that application.
531 current.setAppId(null);
Patrick Scott9d53da02010-02-19 10:19:01 -0500532 loadUrlDataIn(current, urlData);
The Android Open Source Project0c908882009-03-03 19:32:16 -0800533 }
534 }
535 }
536
Satish Sampath565505b2009-05-29 15:37:27 +0100537 /**
538 * Launches the default web search activity with the query parameters if the given intent's data
539 * are identified as plain search terms and not URLs/shortcuts.
540 * @return true if the intent was handled and web search activity was launched, false if not.
541 */
542 private boolean handleWebSearchIntent(Intent intent) {
543 if (intent == null) return false;
544
545 String url = null;
546 final String action = intent.getAction();
Leon Scrogginsa1cc3fd2010-02-01 16:14:11 -0500547 if (RecognizerResultsIntent.ACTION_VOICE_SEARCH_RESULTS.equals(
548 action)) {
Leon Scroggins58d56c62010-01-28 15:12:40 -0500549 return false;
550 }
Satish Sampath565505b2009-05-29 15:37:27 +0100551 if (Intent.ACTION_VIEW.equals(action)) {
Grace Kloba1e705052009-09-29 13:13:36 -0700552 Uri data = intent.getData();
553 if (data != null) url = data.toString();
Satish Sampath565505b2009-05-29 15:37:27 +0100554 } else if (Intent.ACTION_SEARCH.equals(action)
555 || MediaStore.INTENT_ACTION_MEDIA_SEARCH.equals(action)
556 || Intent.ACTION_WEB_SEARCH.equals(action)) {
557 url = intent.getStringExtra(SearchManager.QUERY);
558 }
Bjorn Bringert04851702009-09-22 10:36:01 +0100559 return handleWebSearchRequest(url, intent.getBundleExtra(SearchManager.APP_DATA),
560 intent.getStringExtra(SearchManager.EXTRA_DATA_KEY));
Satish Sampath565505b2009-05-29 15:37:27 +0100561 }
562
563 /**
564 * Launches the default web search activity with the query parameters if the given url string
565 * was identified as plain search terms and not URL/shortcut.
566 * @return true if the request was handled and web search activity was launched, false if not.
567 */
Bjorn Bringert04851702009-09-22 10:36:01 +0100568 private boolean handleWebSearchRequest(String inUrl, Bundle appData, String extraData) {
Satish Sampath565505b2009-05-29 15:37:27 +0100569 if (inUrl == null) return false;
570
571 // In general, we shouldn't modify URL from Intent.
572 // But currently, we get the user-typed URL from search box as well.
573 String url = fixUrl(inUrl).trim();
574
Leon Scroggins956cf012010-10-07 13:51:57 -0400575 // URLs are handled by the regular flow of control, so
Satish Sampath565505b2009-05-29 15:37:27 +0100576 // return early.
Dan Egnor5ee906c2009-11-18 12:11:49 -0800577 if (Patterns.WEB_URL.matcher(url).matches()
Leon Scroggins956cf012010-10-07 13:51:57 -0400578 || ACCEPTED_URI_SCHEMA.matcher(url).matches()) {
Satish Sampath565505b2009-05-29 15:37:27 +0100579 return false;
580 }
581
Leon Scroggins8d06e362010-03-24 14:45:57 -0400582 final ContentResolver cr = mResolver;
583 final String newUrl = url;
Elliott Slaughter627d96f2010-08-18 16:35:30 -0700584 if (mTabControl == null || !mTabControl.getCurrentWebView().isPrivateBrowsingEnabled()) {
Elliott Slaughterf0f03952010-07-14 18:10:36 -0700585 new AsyncTask<Void, Void, Void>() {
586 @Override
587 protected Void doInBackground(Void... unused) {
588 Browser.updateVisitedHistory(cr, newUrl, false);
589 Browser.addSearchUrl(cr, newUrl);
590 return null;
591 }
592 }.execute();
593 }
Satish Sampath565505b2009-05-29 15:37:27 +0100594
Bjorn Bringertd69f51d2010-09-13 14:06:41 +0100595 SearchEngine searchEngine = mSettings.getSearchEngine();
596 if (searchEngine == null) return false;
597 searchEngine.startSearch(this, url, appData, extraData);
Satish Sampath565505b2009-05-29 15:37:27 +0100598
599 return true;
600 }
601
Mitsuru Oshima25ad8ab2009-06-10 16:26:07 -0700602 private UrlData getUrlDataFromIntent(Intent intent) {
Leon Scroggins58d56c62010-01-28 15:12:40 -0500603 String url = "";
Grace Kloba068e48b2010-01-26 18:11:27 -0800604 Map<String, String> headers = null;
The Android Open Source Project0c908882009-03-03 19:32:16 -0800605 if (intent != null) {
606 final String action = intent.getAction();
607 if (Intent.ACTION_VIEW.equals(action)) {
608 url = smartUrlFilter(intent.getData());
609 if (url != null && url.startsWith("content:")) {
610 /* Append mimetype so webview knows how to display */
611 String mimeType = intent.resolveType(getContentResolver());
612 if (mimeType != null) {
613 url += "?" + mimeType;
614 }
615 }
Grace Kloba068e48b2010-01-26 18:11:27 -0800616 if (url != null && url.startsWith("http")) {
Grace Kloba00f54c52010-01-27 14:53:51 -0800617 final Bundle pairs = intent
618 .getBundleExtra(Browser.EXTRA_HEADERS);
Grace Kloba2d508ed2010-01-28 11:39:15 -0800619 if (pairs != null && !pairs.isEmpty()) {
Grace Kloba00f54c52010-01-27 14:53:51 -0800620 Iterator<String> iter = pairs.keySet().iterator();
Grace Kloba068e48b2010-01-26 18:11:27 -0800621 headers = new HashMap<String, String>();
Grace Kloba00f54c52010-01-27 14:53:51 -0800622 while (iter.hasNext()) {
623 String key = iter.next();
624 headers.put(key, pairs.getString(key));
Grace Kloba068e48b2010-01-26 18:11:27 -0800625 }
626 }
Mitsuru Oshima25ad8ab2009-06-10 16:26:07 -0700627 }
The Android Open Source Project0c908882009-03-03 19:32:16 -0800628 } else if (Intent.ACTION_SEARCH.equals(action)
629 || MediaStore.INTENT_ACTION_MEDIA_SEARCH.equals(action)
630 || Intent.ACTION_WEB_SEARCH.equals(action)) {
631 url = intent.getStringExtra(SearchManager.QUERY);
632 if (url != null) {
633 mLastEnteredUrl = url;
The Android Open Source Project0c908882009-03-03 19:32:16 -0800634 // In general, we shouldn't modify URL from Intent.
635 // But currently, we get the user-typed URL from search box as well.
636 url = fixUrl(url);
637 url = smartUrlFilter(url);
Leon Scroggins8d06e362010-03-24 14:45:57 -0400638 final ContentResolver cr = mResolver;
639 final String newUrl = url;
Elliott Slaughter8389e992010-08-20 15:44:08 -0700640 if (mTabControl == null
641 || mTabControl.getCurrentWebView() == null
642 || !mTabControl.getCurrentWebView().isPrivateBrowsingEnabled()) {
643 new AsyncTask<Void, Void, Void>() {
644 @Override
645 protected Void doInBackground(Void... unused) {
646 Browser.updateVisitedHistory(cr, newUrl, false);
647 return null;
648 }
649 }.execute();
650 }
The Android Open Source Project0c908882009-03-03 19:32:16 -0800651 String searchSource = "&source=android-" + GOOGLE_SEARCH_SOURCE_SUGGEST + "&";
652 if (url.contains(searchSource)) {
653 String source = null;
654 final Bundle appData = intent.getBundleExtra(SearchManager.APP_DATA);
655 if (appData != null) {
Bjorn Bringert10d1cca2010-02-10 14:22:12 +0000656 source = appData.getString(Search.SOURCE);
The Android Open Source Project0c908882009-03-03 19:32:16 -0800657 }
658 if (TextUtils.isEmpty(source)) {
659 source = GOOGLE_SEARCH_SOURCE_UNKNOWN;
660 }
661 url = url.replace(searchSource, "&source=android-"+source+"&");
662 }
663 }
664 }
665 }
Leon Scroggins58d56c62010-01-28 15:12:40 -0500666 return new UrlData(url, headers, intent);
The Android Open Source Project0c908882009-03-03 19:32:16 -0800667 }
Leon Scroggins58d56c62010-01-28 15:12:40 -0500668 /* package */ void showVoiceTitleBar(String title) {
669 mTitleBar.setInVoiceMode(true);
Leon Scroggins58d56c62010-01-28 15:12:40 -0500670 mTitleBar.setDisplayTitle(title);
Michael Kolba2b2ba82010-08-04 17:54:03 -0700671 mFakeTitleBar.setInVoiceMode(true);
672 mFakeTitleBar.setDisplayTitle(title);
Leon Scroggins58d56c62010-01-28 15:12:40 -0500673 }
674 /* package */ void revertVoiceTitleBar() {
675 mTitleBar.setInVoiceMode(false);
Leon Scroggins003a5dd2010-03-10 12:13:14 -0500676 mTitleBar.setDisplayTitle(mUrl);
Michael Kolba2b2ba82010-08-04 17:54:03 -0700677 mFakeTitleBar.setInVoiceMode(false);
678 mFakeTitleBar.setDisplayTitle(mUrl);
Leon Scroggins58d56c62010-01-28 15:12:40 -0500679 }
The Android Open Source Project0c908882009-03-03 19:32:16 -0800680 /* package */ static String fixUrl(String inUrl) {
Cary Clark652ff872009-09-10 13:34:44 -0400681 // FIXME: Converting the url to lower case
682 // duplicates functionality in smartUrlFilter().
683 // However, changing all current callers of fixUrl to
684 // call smartUrlFilter in addition may have unwanted
685 // consequences, and is deferred for now.
686 int colon = inUrl.indexOf(':');
687 boolean allLower = true;
688 for (int index = 0; index < colon; index++) {
689 char ch = inUrl.charAt(index);
690 if (!Character.isLetter(ch)) {
691 break;
692 }
693 allLower &= Character.isLowerCase(ch);
694 if (index == colon - 1 && !allLower) {
695 inUrl = inUrl.substring(0, colon).toLowerCase()
696 + inUrl.substring(colon);
697 }
698 }
The Android Open Source Project0c908882009-03-03 19:32:16 -0800699 if (inUrl.startsWith("http://") || inUrl.startsWith("https://"))
700 return inUrl;
701 if (inUrl.startsWith("http:") ||
702 inUrl.startsWith("https:")) {
703 if (inUrl.startsWith("http:/") || inUrl.startsWith("https:/")) {
704 inUrl = inUrl.replaceFirst("/", "//");
705 } else inUrl = inUrl.replaceFirst(":", "://");
706 }
707 return inUrl;
708 }
709
Grace Kloba22ac16e2009-10-07 18:00:23 -0700710 @Override
711 protected void onResume() {
The Android Open Source Project0c908882009-03-03 19:32:16 -0800712 super.onResume();
Dave Bort31a6d1c2009-04-13 15:56:49 -0700713 if (LOGV_ENABLED) {
The Android Open Source Project0c908882009-03-03 19:32:16 -0800714 Log.v(LOGTAG, "BrowserActivity.onResume: this=" + this);
715 }
716
717 if (!mActivityInPause) {
718 Log.e(LOGTAG, "BrowserActivity is already resumed.");
719 return;
720 }
721
Mike Reed7bfa63b2009-05-28 11:08:32 -0400722 mTabControl.resumeCurrentTab();
The Android Open Source Project0c908882009-03-03 19:32:16 -0800723 mActivityInPause = false;
Mike Reed7bfa63b2009-05-28 11:08:32 -0400724 resumeWebViewTimers();
The Android Open Source Project0c908882009-03-03 19:32:16 -0800725
726 if (mWakeLock.isHeld()) {
727 mHandler.removeMessages(RELEASE_WAKELOCK);
728 mWakeLock.release();
729 }
730
The Android Open Source Project0c908882009-03-03 19:32:16 -0800731 registerReceiver(mNetworkStateIntentReceiver,
732 mNetworkStateChangedFilter);
733 WebView.enablePlatformNotifications();
The Android Open Source Project0c908882009-03-03 19:32:16 -0800734 }
735
Leon Scroggins3bbb6ca2009-09-09 12:51:10 -0400736 /**
737 * Since the actual title bar is embedded in the WebView, and removing it
Leon Scrogginsfe87bd32009-10-06 10:10:00 -0400738 * would change its appearance, use a different TitleBar to show overlayed
739 * at the top of the screen, when the menu is open or the page is loading.
Leon Scroggins3bbb6ca2009-09-09 12:51:10 -0400740 */
Michael Kolba2b2ba82010-08-04 17:54:03 -0700741 private TitleBarBase mFakeTitleBar;
Leon Scroggins3bbb6ca2009-09-09 12:51:10 -0400742
743 /**
744 * Keeps track of whether the options menu is open. This is important in
745 * determining whether to show or hide the title bar overlay.
746 */
747 private boolean mOptionsMenuOpen;
748
749 /**
750 * Only meaningful when mOptionsMenuOpen is true. This variable keeps track
751 * of whether the configuration has changed. The first onMenuOpened call
752 * after a configuration change is simply a reopening of the same menu
753 * (i.e. mIconView did not change).
754 */
755 private boolean mConfigChanged;
756
757 /**
758 * Whether or not the options menu is in its smaller, icon menu form. When
759 * true, we want the title bar overlay to be up. When false, we do not.
760 * Only meaningful if mOptionsMenuOpen is true.
761 */
762 private boolean mIconView;
763
Leon Scrogginsa81a7642009-08-31 17:05:41 -0400764 @Override
765 public boolean onMenuOpened(int featureId, Menu menu) {
Leon Scroggins3bbb6ca2009-09-09 12:51:10 -0400766 if (Window.FEATURE_OPTIONS_PANEL == featureId) {
767 if (mOptionsMenuOpen) {
768 if (mConfigChanged) {
769 // We do not need to make any changes to the state of the
770 // title bar, since the only thing that happened was a
771 // change in orientation
772 mConfigChanged = false;
773 } else {
774 if (mIconView) {
775 // Switching the menu to expanded view, so hide the
776 // title bar.
777 hideFakeTitleBar();
778 mIconView = false;
779 } else {
780 // Switching the menu back to icon view, so show the
781 // title bar once again.
782 showFakeTitleBar();
783 mIconView = true;
784 }
785 }
786 } else {
787 // The options menu is closed, so open it, and show the title
788 showFakeTitleBar();
789 mOptionsMenuOpen = true;
790 mConfigChanged = false;
791 mIconView = true;
792 }
793 }
Leon Scrogginsa81a7642009-08-31 17:05:41 -0400794 return true;
795 }
796
Michael Kolba2b2ba82010-08-04 17:54:03 -0700797 void showFakeTitleBar() {
798 if (!isFakeTitleBarShowing() && mActiveTabsPage == null && !mActivityInPause) {
Grace Kloba847c25b2010-03-30 16:00:26 -0700799 WebView mainView = mTabControl.getCurrentWebView();
800 // if there is no current WebView, don't show the faked title bar;
Grace Kloba65190702010-04-02 23:37:26 -0700801 if (mainView == null) {
Cary Clarka0464552009-09-29 13:00:45 -0400802 return;
803 }
Leon Scroggins79e36d92010-04-29 16:01:46 +0100804 // Do not need to check for null, since the current tab will have
805 // at least a main WebView, or we would have returned above.
Leon Scroggins III8e4fbf12010-08-17 16:58:15 -0400806 if (isInCustomActionMode()) {
807 // Do not show the fake title bar, while a custom ActionMode
808 // (i.e. find or select) is showing.
Leon Scroggins79e36d92010-04-29 16:01:46 +0100809 return;
810 }
Michael Kolba2b2ba82010-08-04 17:54:03 -0700811 if (mXLargeScreenSize) {
812 mContentView.addView(mFakeTitleBar);
813 mTabBar.onShowTitleBar();
814 } else {
815 WindowManager manager = (WindowManager) getSystemService(Context.WINDOW_SERVICE);
Leon Scroggins3bbb6ca2009-09-09 12:51:10 -0400816
Michael Kolba2b2ba82010-08-04 17:54:03 -0700817 // Add the title bar to the window manager so it can receive
818 // touches
819 // while the menu is up
820 WindowManager.LayoutParams params =
821 new WindowManager.LayoutParams(ViewGroup.LayoutParams.MATCH_PARENT,
822 ViewGroup.LayoutParams.WRAP_CONTENT,
823 WindowManager.LayoutParams.TYPE_APPLICATION,
824 WindowManager.LayoutParams.FLAG_NOT_FOCUSABLE,
825 PixelFormat.TRANSLUCENT);
826 params.gravity = Gravity.TOP;
827 boolean atTop = mainView.getScrollY() == 0;
828 params.windowAnimations = atTop ? 0 : R.style.TitleBar;
829 manager.addView(mFakeTitleBar, params);
830 }
Leon Scroggins3bbb6ca2009-09-09 12:51:10 -0400831 }
832 }
833
834 @Override
835 public void onOptionsMenuClosed(Menu menu) {
836 mOptionsMenuOpen = false;
Leon Scrogginsa27ff192009-09-14 12:58:04 -0400837 if (!mInLoad) {
838 hideFakeTitleBar();
839 } else if (!mIconView) {
840 // The page is currently loading, and we are in expanded mode, so
841 // we were not showing the menu. Show it once again. It will be
842 // removed when the page finishes.
843 showFakeTitleBar();
844 }
Leon Scroggins3bbb6ca2009-09-09 12:51:10 -0400845 }
Grace Kloba22ac16e2009-10-07 18:00:23 -0700846
Michael Kolba2b2ba82010-08-04 17:54:03 -0700847 void stopScrolling() {
848 ((ScrollWebView) mTabControl.getCurrentWebView()).stopScroll();
849 }
850
851 void hideFakeTitleBar() {
852 if (!isFakeTitleBarShowing()) return;
853 if (mXLargeScreenSize) {
854 mContentView.removeView(mFakeTitleBar);
855 mTabBar.onHideTitleBar();
856 } else {
857 WindowManager.LayoutParams params =
858 (WindowManager.LayoutParams) mFakeTitleBar.getLayoutParams();
859 WebView mainView = mTabControl.getCurrentWebView();
860 // Although we decided whether or not to animate based on the
861 // current
862 // scroll position, the scroll position may have changed since the
863 // fake title bar was displayed. Make sure it has the appropriate
864 // animation/lack thereof before removing.
865 params.windowAnimations =
866 mainView != null && mainView.getScrollY() == 0 ? 0 : R.style.TitleBar;
867 WindowManager manager = (WindowManager) getSystemService(Context.WINDOW_SERVICE);
868 manager.updateViewLayout(mFakeTitleBar, params);
869 manager.removeView(mFakeTitleBar);
870 }
871 }
872
873 boolean isFakeTitleBarShowing() {
874 return (mFakeTitleBar.getParent() != null);
Leon Scroggins3bbb6ca2009-09-09 12:51:10 -0400875 }
876
The Android Open Source Project0c908882009-03-03 19:32:16 -0800877 /**
Leon Scrogginsc6fa1102009-09-21 10:40:01 -0400878 * Special method for the fake title bar to call when displaying its context
879 * menu, since it is in its own Window, and its parent does not show a
880 * context menu.
881 */
882 /* package */ void showTitleBarContextMenu() {
Cary Clark65f4a3c2009-09-28 17:05:06 -0400883 if (null == mTitleBar.getParent()) {
884 return;
885 }
Leon Scrogginsc6fa1102009-09-21 10:40:01 -0400886 openContextMenu(mTitleBar);
887 }
888
Leon Scrogginsb2b19f52009-10-09 16:10:00 -0400889 @Override
890 public void onContextMenuClosed(Menu menu) {
891 super.onContextMenuClosed(menu);
892 if (mInLoad) {
893 showFakeTitleBar();
894 }
895 }
896
Leon Scrogginsc6fa1102009-09-21 10:40:01 -0400897 /**
The Android Open Source Project0c908882009-03-03 19:32:16 -0800898 * onSaveInstanceState(Bundle map)
899 * onSaveInstanceState is called right before onStop(). The map contains
900 * the saved state.
901 */
Grace Kloba22ac16e2009-10-07 18:00:23 -0700902 @Override
903 protected void onSaveInstanceState(Bundle outState) {
Dave Bort31a6d1c2009-04-13 15:56:49 -0700904 if (LOGV_ENABLED) {
The Android Open Source Project0c908882009-03-03 19:32:16 -0800905 Log.v(LOGTAG, "BrowserActivity.onSaveInstanceState: this=" + this);
906 }
907 // the default implementation requires each view to have an id. As the
908 // browser handles the state itself and it doesn't use id for the views,
909 // don't call the default implementation. Otherwise it will trigger the
910 // warning like this, "couldn't save which view has focus because the
911 // focused view XXX has no id".
912
913 // Save all the tabs
914 mTabControl.saveState(outState);
Elliott Slaughter3d6df162010-08-25 13:17:44 -0700915
916 // Save time so that we know how old incognito tabs (if any) are.
917 outState.putSerializable("lastActiveDate", Calendar.getInstance());
The Android Open Source Project0c908882009-03-03 19:32:16 -0800918 }
919
Grace Kloba22ac16e2009-10-07 18:00:23 -0700920 @Override
921 protected void onPause() {
The Android Open Source Project0c908882009-03-03 19:32:16 -0800922 super.onPause();
923
924 if (mActivityInPause) {
925 Log.e(LOGTAG, "BrowserActivity is already paused.");
926 return;
927 }
928
Mike Reed7bfa63b2009-05-28 11:08:32 -0400929 mTabControl.pauseCurrentTab();
The Android Open Source Project0c908882009-03-03 19:32:16 -0800930 mActivityInPause = true;
Mike Reed7bfa63b2009-05-28 11:08:32 -0400931 if (mTabControl.getCurrentIndex() >= 0 && !pauseWebViewTimers()) {
The Android Open Source Project0c908882009-03-03 19:32:16 -0800932 mWakeLock.acquire();
933 mHandler.sendMessageDelayed(mHandler
934 .obtainMessage(RELEASE_WAKELOCK), WAKELOCK_TIMEOUT);
935 }
936
Leon Scrogginsa2ab6a72009-09-11 11:49:52 -0400937 // FIXME: This removes the active tabs page and resets the menu to
938 // MAIN_MENU. A better solution might be to do this work in onNewIntent
939 // but then we would need to save it in onSaveInstanceState and restore
940 // it in onCreate/onRestoreInstanceState
941 if (mActiveTabsPage != null) {
942 removeActiveTabPage(true);
943 }
944
The Android Open Source Project0c908882009-03-03 19:32:16 -0800945 cancelStopToast();
946
947 // unregister network state listener
948 unregisterReceiver(mNetworkStateIntentReceiver);
949 WebView.disablePlatformNotifications();
The Android Open Source Project0c908882009-03-03 19:32:16 -0800950 }
951
Grace Kloba22ac16e2009-10-07 18:00:23 -0700952 @Override
953 protected void onDestroy() {
Dave Bort31a6d1c2009-04-13 15:56:49 -0700954 if (LOGV_ENABLED) {
The Android Open Source Project0c908882009-03-03 19:32:16 -0800955 Log.v(LOGTAG, "BrowserActivity.onDestroy: this=" + this);
956 }
957 super.onDestroy();
Grace Kloba0923d692009-09-23 21:37:25 -0700958
Leon Scroggins8d5fa432009-10-02 15:55:59 -0400959 if (mUploadMessage != null) {
960 mUploadMessage.onReceiveValue(null);
961 mUploadMessage = null;
962 }
963
Grace Kloba0923d692009-09-23 21:37:25 -0700964 if (mTabControl == null) return;
965
Grace Kloba1fc98a32009-10-21 13:23:08 -0700966 // Remove the fake title bar if it is there
967 hideFakeTitleBar();
968
The Android Open Source Project0c908882009-03-03 19:32:16 -0800969 // Remove the current tab and sub window
Grace Kloba22ac16e2009-10-07 18:00:23 -0700970 Tab t = mTabControl.getCurrentTab();
Patrick Scottfb5e77f2009-04-08 19:17:37 -0700971 if (t != null) {
972 dismissSubWindow(t);
973 removeTabFromContentView(t);
974 }
The Android Open Source Project0c908882009-03-03 19:32:16 -0800975 // Destroy all the tabs
976 mTabControl.destroy();
977 WebIconDatabase.getInstance().close();
The Android Open Source Project0c908882009-03-03 19:32:16 -0800978
Bjorn Bringerta7611812010-03-24 11:12:02 +0000979 // Stop watching the default geolocation permissions
980 mSystemAllowGeolocationOrigins.stop();
981 mSystemAllowGeolocationOrigins = null;
The Android Open Source Project0c908882009-03-03 19:32:16 -0800982 }
983
984 @Override
985 public void onConfigurationChanged(Configuration newConfig) {
Leon Scroggins3bbb6ca2009-09-09 12:51:10 -0400986 mConfigChanged = true;
The Android Open Source Project0c908882009-03-03 19:32:16 -0800987 super.onConfigurationChanged(newConfig);
988
989 if (mPageInfoDialog != null) {
990 mPageInfoDialog.dismiss();
991 showPageInfo(
992 mPageInfoView,
Leon Scrogginsc7b92f82010-01-11 18:17:31 -0500993 mPageInfoFromShowSSLCertificateOnError);
The Android Open Source Project0c908882009-03-03 19:32:16 -0800994 }
995 if (mSSLCertificateDialog != null) {
996 mSSLCertificateDialog.dismiss();
997 showSSLCertificate(
998 mSSLCertificateView);
999 }
1000 if (mSSLCertificateOnErrorDialog != null) {
1001 mSSLCertificateOnErrorDialog.dismiss();
1002 showSSLCertificateOnError(
1003 mSSLCertificateOnErrorView,
1004 mSSLCertificateOnErrorHandler,
1005 mSSLCertificateOnErrorError);
1006 }
1007 if (mHttpAuthenticationDialog != null) {
Bjorn Bringert25738922010-10-12 10:56:20 +01001008 mHttpAuthenticationDialog.reshow();
The Android Open Source Project0c908882009-03-03 19:32:16 -08001009 }
The Android Open Source Project0c908882009-03-03 19:32:16 -08001010 }
1011
Grace Kloba22ac16e2009-10-07 18:00:23 -07001012 @Override
1013 public void onLowMemory() {
The Android Open Source Project0c908882009-03-03 19:32:16 -08001014 super.onLowMemory();
1015 mTabControl.freeMemory();
1016 }
1017
Cary Clarkff4d92c2010-03-25 11:17:03 -04001018 private void resumeWebViewTimers() {
Grace Kloba22ac16e2009-10-07 18:00:23 -07001019 Tab tab = mTabControl.getCurrentTab();
Cary Clarkff4d92c2010-03-25 11:17:03 -04001020 if (tab == null) return; // monkey can trigger this
Grace Kloba22ac16e2009-10-07 18:00:23 -07001021 boolean inLoad = tab.inLoad();
1022 if ((!mActivityInPause && !inLoad) || (mActivityInPause && inLoad)) {
The Android Open Source Project0c908882009-03-03 19:32:16 -08001023 CookieSyncManager.getInstance().startSync();
Grace Kloba22ac16e2009-10-07 18:00:23 -07001024 WebView w = tab.getWebView();
The Android Open Source Project0c908882009-03-03 19:32:16 -08001025 if (w != null) {
1026 w.resumeTimers();
1027 }
The Android Open Source Project0c908882009-03-03 19:32:16 -08001028 }
1029 }
1030
Mike Reed7bfa63b2009-05-28 11:08:32 -04001031 private boolean pauseWebViewTimers() {
Grace Kloba22ac16e2009-10-07 18:00:23 -07001032 Tab tab = mTabControl.getCurrentTab();
1033 boolean inLoad = tab.inLoad();
1034 if (mActivityInPause && !inLoad) {
The Android Open Source Project0c908882009-03-03 19:32:16 -08001035 CookieSyncManager.getInstance().stopSync();
1036 WebView w = mTabControl.getCurrentWebView();
1037 if (w != null) {
1038 w.pauseTimers();
1039 }
1040 return true;
1041 } else {
1042 return false;
1043 }
1044 }
1045
The Android Open Source Project0c908882009-03-03 19:32:16 -08001046 // Open the icon database and retain all the icons for visited sites.
1047 private void retainIconsOnStartup() {
1048 final WebIconDatabase db = WebIconDatabase.getInstance();
1049 db.open(getDir("icons", 0).getPath());
Leon Scroggins2c0f6112010-03-12 18:09:39 -05001050 Cursor c = null;
The Android Open Source Project0c908882009-03-03 19:32:16 -08001051 try {
Leon Scroggins2c0f6112010-03-12 18:09:39 -05001052 c = Browser.getAllBookmarks(mResolver);
1053 if (c.moveToFirst()) {
1054 int urlIndex = c.getColumnIndex(Browser.BookmarkColumns.URL);
1055 do {
1056 String url = c.getString(urlIndex);
1057 db.retainIconForPageUrl(url);
1058 } while (c.moveToNext());
The Android Open Source Project0c908882009-03-03 19:32:16 -08001059 }
The Android Open Source Project0c908882009-03-03 19:32:16 -08001060 } catch (IllegalStateException e) {
1061 Log.e(LOGTAG, "retainIconsOnStartup", e);
Leon Scroggins2c0f6112010-03-12 18:09:39 -05001062 } finally {
1063 if (c!= null) c.close();
The Android Open Source Project0c908882009-03-03 19:32:16 -08001064 }
1065 }
1066
1067 // Helper method for getting the top window.
1068 WebView getTopWindow() {
1069 return mTabControl.getCurrentTopWebView();
1070 }
1071
Grace Kloba22ac16e2009-10-07 18:00:23 -07001072 TabControl getTabControl() {
1073 return mTabControl;
1074 }
1075
The Android Open Source Project0c908882009-03-03 19:32:16 -08001076 @Override
1077 public boolean onCreateOptionsMenu(Menu menu) {
1078 super.onCreateOptionsMenu(menu);
1079
1080 MenuInflater inflater = getMenuInflater();
1081 inflater.inflate(R.menu.browser, menu);
1082 mMenu = menu;
1083 updateInLoadMenuItems();
1084 return true;
1085 }
1086
1087 /**
1088 * As the menu can be open when loading state changes
1089 * we must manually update the state of the stop/reload menu
1090 * item
1091 */
1092 private void updateInLoadMenuItems() {
1093 if (mMenu == null) {
1094 return;
1095 }
Michael Kolbe0a36662010-06-29 10:37:12 -07001096 MenuItem dest = mMenu.findItem(R.id.stop_reload_menu_id);
The Android Open Source Project0c908882009-03-03 19:32:16 -08001097 MenuItem src = mInLoad ?
1098 mMenu.findItem(R.id.stop_menu_id):
Michael Kolbe0a36662010-06-29 10:37:12 -07001099 mMenu.findItem(R.id.reload_menu_id);
1100 if (src != null) {
1101 dest.setIcon(src.getIcon());
1102 dest.setTitle(src.getTitle());
1103 }
The Android Open Source Project0c908882009-03-03 19:32:16 -08001104 }
1105
1106 @Override
1107 public boolean onContextItemSelected(MenuItem item) {
1108 // chording is not an issue with context menus, but we use the same
1109 // options selector, so set mCanChord to true so we can access them.
1110 mCanChord = true;
1111 int id = item.getItemId();
Leon Scroggins96afcb12009-12-10 12:35:56 -05001112 boolean result = true;
The Android Open Source Project0c908882009-03-03 19:32:16 -08001113 switch (id) {
Leon Scrogginsc6fa1102009-09-21 10:40:01 -04001114 // For the context menu from the title bar
Leon Scrogginsc6fa1102009-09-21 10:40:01 -04001115 case R.id.title_bar_copy_page_url:
Leon Scroggins96afcb12009-12-10 12:35:56 -05001116 Tab currentTab = mTabControl.getCurrentTab();
1117 if (null == currentTab) {
1118 result = false;
1119 break;
1120 }
1121 WebView mainView = currentTab.getWebView();
Leon Scrogginsc6fa1102009-09-21 10:40:01 -04001122 if (null == mainView) {
Leon Scroggins96afcb12009-12-10 12:35:56 -05001123 result = false;
1124 break;
Leon Scrogginsc6fa1102009-09-21 10:40:01 -04001125 }
Leon Scroggins96afcb12009-12-10 12:35:56 -05001126 copy(mainView.getUrl());
Leon Scrogginsc6fa1102009-09-21 10:40:01 -04001127 break;
The Android Open Source Project0c908882009-03-03 19:32:16 -08001128 // -- Browser context menu
1129 case R.id.open_context_menu_id:
The Android Open Source Project0c908882009-03-03 19:32:16 -08001130 case R.id.bookmark_context_menu_id:
1131 case R.id.save_link_context_menu_id:
1132 case R.id.share_link_context_menu_id:
1133 case R.id.copy_link_context_menu_id:
Leon Scrogginsc6fa1102009-09-21 10:40:01 -04001134 final WebView webView = getTopWindow();
1135 if (null == webView) {
Leon Scroggins96afcb12009-12-10 12:35:56 -05001136 result = false;
1137 break;
Leon Scrogginsc6fa1102009-09-21 10:40:01 -04001138 }
1139 final HashMap hrefMap = new HashMap();
1140 hrefMap.put("webview", webView);
1141 final Message msg = mHandler.obtainMessage(
1142 FOCUS_NODE_HREF, id, 0, hrefMap);
The Android Open Source Project0c908882009-03-03 19:32:16 -08001143 webView.requestFocusNodeHref(msg);
1144 break;
1145
1146 default:
1147 // For other context menus
Leon Scroggins96afcb12009-12-10 12:35:56 -05001148 result = onOptionsItemSelected(item);
The Android Open Source Project0c908882009-03-03 19:32:16 -08001149 }
1150 mCanChord = false;
Leon Scroggins96afcb12009-12-10 12:35:56 -05001151 return result;
The Android Open Source Project0c908882009-03-03 19:32:16 -08001152 }
1153
1154 private Bundle createGoogleSearchSourceBundle(String source) {
1155 Bundle bundle = new Bundle();
Bjorn Bringert10d1cca2010-02-10 14:22:12 +00001156 bundle.putString(Search.SOURCE, source);
The Android Open Source Project0c908882009-03-03 19:32:16 -08001157 return bundle;
1158 }
1159
Leon Scroggins8ad29922010-02-16 12:33:55 -05001160 /* package */ void editUrl() {
Leon Scroggins68579392009-09-15 15:31:54 -04001161 if (mOptionsMenuOpen) closeOptionsMenu();
Leon Scroggins5bbe9802009-07-31 13:10:55 -04001162 String url = (getTopWindow() == null) ? null : getTopWindow().getUrl();
Grace Kloba83f47342009-07-20 10:44:31 -07001163 startSearch(mSettings.getHomePage().equals(url) ? null : url, true,
Leon Scroggins8ad29922010-02-16 12:33:55 -05001164 null, false);
The Android Open Source Project0c908882009-03-03 19:32:16 -08001165 }
1166
Leon Scroggins8ad29922010-02-16 12:33:55 -05001167 /**
1168 * Overriding this to insert a local information bundle
1169 */
The Android Open Source Project0c908882009-03-03 19:32:16 -08001170 @Override
1171 public void startSearch(String initialQuery, boolean selectInitialQuery,
1172 Bundle appSearchData, boolean globalSearch) {
1173 if (appSearchData == null) {
1174 appSearchData = createGoogleSearchSourceBundle(GOOGLE_SEARCH_SOURCE_TYPE);
1175 }
Leon Scroggins III430057d2010-09-14 10:57:37 -04001176
1177 SearchEngine searchEngine = mSettings.getSearchEngine();
1178 if (searchEngine != null && !searchEngine.supportsVoiceSearch()) {
1179 appSearchData.putBoolean(SearchManager.DISABLE_VOICE_SEARCH, true);
1180 }
1181
The Android Open Source Project0c908882009-03-03 19:32:16 -08001182 super.startSearch(initialQuery, selectInitialQuery, appSearchData, globalSearch);
1183 }
1184
Leon Scroggins1f005d32009-08-10 17:36:42 -04001185 /**
1186 * Switch tabs. Called by the TitleBarSet when sliding the title bar
1187 * results in changing tabs.
Leon Scroggins160a7e72009-08-14 18:28:01 -04001188 * @param index Index of the tab to change to, as defined by
1189 * mTabControl.getTabIndex(Tab t).
1190 * @return boolean True if we successfully switched to a different tab. If
1191 * the indexth tab is null, or if that tab is the same as
1192 * the current one, return false.
Leon Scroggins1f005d32009-08-10 17:36:42 -04001193 */
Leon Scroggins160a7e72009-08-14 18:28:01 -04001194 /* package */ boolean switchToTab(int index) {
Grace Kloba22ac16e2009-10-07 18:00:23 -07001195 Tab tab = mTabControl.getTab(index);
1196 Tab currentTab = mTabControl.getCurrentTab();
Leon Scroggins1f005d32009-08-10 17:36:42 -04001197 if (tab == null || tab == currentTab) {
Leon Scroggins160a7e72009-08-14 18:28:01 -04001198 return false;
Leon Scroggins1f005d32009-08-10 17:36:42 -04001199 }
1200 if (currentTab != null) {
1201 // currentTab may be null if it was just removed. In that case,
1202 // we do not need to remove it
1203 removeTabFromContentView(currentTab);
1204 }
Leon Scroggins1f005d32009-08-10 17:36:42 -04001205 mTabControl.setCurrentTab(tab);
1206 attachTabToContentView(tab);
Grace Klobaeb6eef42009-09-15 17:56:32 -07001207 resetTitleIconAndProgress();
1208 updateLockIconToLatest();
Leon Scroggins160a7e72009-08-14 18:28:01 -04001209 return true;
Leon Scroggins1f005d32009-08-10 17:36:42 -04001210 }
1211
Grace Kloba22ac16e2009-10-07 18:00:23 -07001212 /* package */ Tab openTabToHomePage() {
Leon Scroggins0a64ba52009-09-08 15:35:33 -04001213 return openTabAndShow(mSettings.getHomePage(), false, null);
1214 }
1215
Leon Scroggins1f005d32009-08-10 17:36:42 -04001216 /* package */ void closeCurrentWindow() {
Grace Kloba22ac16e2009-10-07 18:00:23 -07001217 final Tab current = mTabControl.getCurrentTab();
Leon Scroggins160a7e72009-08-14 18:28:01 -04001218 if (mTabControl.getTabCount() == 1) {
Leon Scroggins30444232009-09-04 18:36:20 -04001219 // This is the last tab. Open a new one, with the home
1220 // page and close the current one.
Grace Kloba22ac16e2009-10-07 18:00:23 -07001221 openTabToHomePage();
Leon Scroggins160a7e72009-08-14 18:28:01 -04001222 closeTab(current);
Leon Scroggins160a7e72009-08-14 18:28:01 -04001223 return;
1224 }
Grace Kloba22ac16e2009-10-07 18:00:23 -07001225 final Tab parent = current.getParentTab();
Leon Scroggins1f005d32009-08-10 17:36:42 -04001226 int indexToShow = -1;
1227 if (parent != null) {
1228 indexToShow = mTabControl.getTabIndex(parent);
1229 } else {
Leon Scroggins160a7e72009-08-14 18:28:01 -04001230 final int currentIndex = mTabControl.getCurrentIndex();
1231 // Try to move to the tab to the right
1232 indexToShow = currentIndex + 1;
1233 if (indexToShow > mTabControl.getTabCount() - 1) {
1234 // Try to move to the tab to the left
1235 indexToShow = currentIndex - 1;
Leon Scroggins1f005d32009-08-10 17:36:42 -04001236 }
1237 }
Leon Scroggins160a7e72009-08-14 18:28:01 -04001238 if (switchToTab(indexToShow)) {
1239 // Close window
1240 closeTab(current);
1241 }
Leon Scroggins1f005d32009-08-10 17:36:42 -04001242 }
1243
Leon Scroggins0a64ba52009-09-08 15:35:33 -04001244 private ActiveTabsPage mActiveTabsPage;
1245
1246 /**
1247 * Remove the active tabs page.
1248 * @param needToAttach If true, the active tabs page did not attach a tab
1249 * to the content view, so we need to do that here.
1250 */
1251 /* package */ void removeActiveTabPage(boolean needToAttach) {
1252 mContentView.removeView(mActiveTabsPage);
Leon Scrogginsd746a942010-05-19 13:21:44 -04001253 mTitleBar.setVisibility(View.VISIBLE);
Leon Scroggins0a64ba52009-09-08 15:35:33 -04001254 mActiveTabsPage = null;
1255 mMenuState = R.id.MAIN_MENU;
1256 if (needToAttach) {
1257 attachTabToContentView(mTabControl.getCurrentTab());
1258 }
1259 getTopWindow().requestFocus();
1260 }
1261
Leon Scroggins III8e4fbf12010-08-17 16:58:15 -04001262 @Override
1263 public ActionMode onStartActionMode(ActionMode.Callback callback) {
Leon Scroggins4fc12cb2010-08-24 14:24:05 -04001264 mActionMode = super.onStartActionMode(callback);
1265 hideFakeTitleBar();
1266 // Would like to change the MENU, but onEndActionMode may not be called
1267 return mActionMode;
Cary Clark01cfcdd2010-06-04 16:36:45 -04001268 }
1269
The Android Open Source Project0c908882009-03-03 19:32:16 -08001270 @Override
1271 public boolean onOptionsItemSelected(MenuItem item) {
Michael Kolb370a4f32010-10-06 10:45:32 -07001272 if (item.getGroupId() != R.id.CONTEXT_MENU) {
1273 // menu remains active, so ensure comboview is dismissed
1274 // if main menu option is selected
1275 removeComboView();
1276 }
Michael Kolbed217742010-08-10 17:52:34 -07001277 // check the action bar button before mCanChord check, as the prepare call
1278 // doesn't come for action bar buttons
1279 if (item.getItemId() == R.id.newtab) {
Michael Kolb300b7f02010-08-25 13:47:24 -07001280 openTabToHomePage();
Michael Kolbed217742010-08-10 17:52:34 -07001281 return true;
1282 }
The Android Open Source Project0c908882009-03-03 19:32:16 -08001283 if (!mCanChord) {
1284 // The user has already fired a shortcut with this hold down of the
1285 // menu key.
1286 return false;
1287 }
Leon Scroggins1f005d32009-08-10 17:36:42 -04001288 if (null == getTopWindow()) {
Leon Scroggins0d7ae0e2009-06-05 11:04:45 -04001289 return false;
1290 }
Grace Kloba6ee9c492009-07-13 10:04:34 -07001291 if (mMenuIsDown) {
1292 // The shortcut action consumes the MENU. Even if it is still down,
1293 // it won't trigger the next shortcut action. In the case of the
1294 // shortcut action triggering a new activity, like Bookmarks, we
1295 // won't get onKeyUp for MENU. So it is important to reset it here.
1296 mMenuIsDown = false;
1297 }
The Android Open Source Project0c908882009-03-03 19:32:16 -08001298 switch (item.getItemId()) {
1299 // -- Main menu
Leon Scrogginsa81a7642009-08-31 17:05:41 -04001300 case R.id.new_tab_menu_id:
Leon Scroggins0a64ba52009-09-08 15:35:33 -04001301 openTabToHomePage();
Leon Scrogginsa81a7642009-08-31 17:05:41 -04001302 break;
1303
Michael Kolbae62fd42010-08-18 16:33:28 -07001304 case R.id.incognito_menu_id:
1305 openIncognitoTab();
1306 break;
1307
Leon Scroggins64b80f32009-08-07 12:03:34 -04001308 case R.id.goto_menu_id:
Leon Scroggins8ad29922010-02-16 12:33:55 -05001309 editUrl();
Leon Scrogginsb3a5bed2009-09-28 11:21:56 -04001310 break;
1311
1312 case R.id.bookmarks_menu_id:
Michael Kolbe421c242010-10-04 19:29:01 -07001313 bookmarksOrHistoryPicker(false);
The Android Open Source Project0c908882009-03-03 19:32:16 -08001314 break;
1315
Leon Scroggins0a64ba52009-09-08 15:35:33 -04001316 case R.id.active_tabs_menu_id:
1317 mActiveTabsPage = new ActiveTabsPage(this, mTabControl);
1318 removeTabFromContentView(mTabControl.getCurrentTab());
Leon Scrogginsd746a942010-05-19 13:21:44 -04001319 mTitleBar.setVisibility(View.GONE);
Leon Scroggins43de6162009-09-14 19:59:58 -04001320 hideFakeTitleBar();
Leon Scroggins0a64ba52009-09-08 15:35:33 -04001321 mContentView.addView(mActiveTabsPage, COVER_SCREEN_PARAMS);
1322 mActiveTabsPage.requestFocus();
1323 mMenuState = EMPTY_MENU;
1324 break;
1325
Leon Scroggins1f005d32009-08-10 17:36:42 -04001326 case R.id.add_bookmark_menu_id:
Michael Kolb370a4f32010-10-06 10:45:32 -07001327 bookmarkCurrentPage(AddBookmarkPage.DEFAULT_FOLDER_ID);
The Android Open Source Project0c908882009-03-03 19:32:16 -08001328 break;
1329
1330 case R.id.stop_reload_menu_id:
1331 if (mInLoad) {
1332 stopLoading();
1333 } else {
1334 getTopWindow().reload();
1335 }
1336 break;
1337
1338 case R.id.back_menu_id:
1339 getTopWindow().goBack();
1340 break;
1341
1342 case R.id.forward_menu_id:
1343 getTopWindow().goForward();
1344 break;
1345
1346 case R.id.close_menu_id:
1347 // Close the subwindow if it exists.
1348 if (mTabControl.getCurrentSubWindow() != null) {
1349 dismissSubWindow(mTabControl.getCurrentTab());
1350 break;
1351 }
Leon Scroggins1f005d32009-08-10 17:36:42 -04001352 closeCurrentWindow();
The Android Open Source Project0c908882009-03-03 19:32:16 -08001353 break;
1354
1355 case R.id.homepage_menu_id:
Grace Kloba22ac16e2009-10-07 18:00:23 -07001356 Tab current = mTabControl.getCurrentTab();
The Android Open Source Project0c908882009-03-03 19:32:16 -08001357 if (current != null) {
1358 dismissSubWindow(current);
Leon Scroggins92472e82010-02-17 16:32:28 -05001359 loadUrl(current.getWebView(), mSettings.getHomePage());
The Android Open Source Project0c908882009-03-03 19:32:16 -08001360 }
1361 break;
1362
1363 case R.id.preferences_menu_id:
1364 Intent intent = new Intent(this,
1365 BrowserPreferencesPage.class);
Leon Scrogginsd5304942009-12-10 16:11:39 -05001366 intent.putExtra(BrowserPreferencesPage.CURRENT_PAGE,
1367 getTopWindow().getUrl());
The Android Open Source Project0c908882009-03-03 19:32:16 -08001368 startActivityForResult(intent, PREFERENCES_PAGE);
1369 break;
1370
1371 case R.id.find_menu_id:
Leon Scroggins4fc12cb2010-08-24 14:24:05 -04001372 getTopWindow().showFindDialog(null);
The Android Open Source Project0c908882009-03-03 19:32:16 -08001373 break;
1374
The Android Open Source Project0c908882009-03-03 19:32:16 -08001375 case R.id.page_info_menu_id:
1376 showPageInfo(mTabControl.getCurrentTab(), false);
1377 break;
1378
1379 case R.id.classic_history_menu_id:
Michael Kolbe421c242010-10-04 19:29:01 -07001380 bookmarksOrHistoryPicker(true);
The Android Open Source Project0c908882009-03-03 19:32:16 -08001381 break;
1382
Leon Scroggins96afcb12009-12-10 12:35:56 -05001383 case R.id.title_bar_share_page_url:
The Android Open Source Project0c908882009-03-03 19:32:16 -08001384 case R.id.share_page_menu_id:
Leon Scroggins96afcb12009-12-10 12:35:56 -05001385 Tab currentTab = mTabControl.getCurrentTab();
1386 if (null == currentTab) {
1387 mCanChord = false;
1388 return false;
1389 }
1390 currentTab.populatePickerData();
1391 sharePage(this, currentTab.getTitle(),
1392 currentTab.getUrl(), currentTab.getFavicon(),
Ben Murdoch87cc65d2010-06-29 20:34:10 +01001393 createScreenshot(currentTab.getWebView(), getDesiredThumbnailWidth(this),
1394 getDesiredThumbnailHeight(this)));
The Android Open Source Project0c908882009-03-03 19:32:16 -08001395 break;
1396
1397 case R.id.dump_nav_menu_id:
1398 getTopWindow().debugDump();
1399 break;
1400
Andrei Popescu7a8b88b2010-02-02 00:30:38 +00001401 case R.id.dump_counters_menu_id:
1402 getTopWindow().dumpV8Counters();
1403 break;
1404
The Android Open Source Project0c908882009-03-03 19:32:16 -08001405 case R.id.zoom_in_menu_id:
1406 getTopWindow().zoomIn();
1407 break;
1408
1409 case R.id.zoom_out_menu_id:
1410 getTopWindow().zoomOut();
1411 break;
1412
1413 case R.id.view_downloads_menu_id:
Leon Scroggins IIIa682a3c2010-09-27 12:32:40 -04001414 viewDownloads();
The Android Open Source Project0c908882009-03-03 19:32:16 -08001415 break;
1416
The Android Open Source Project0c908882009-03-03 19:32:16 -08001417 case R.id.window_one_menu_id:
1418 case R.id.window_two_menu_id:
1419 case R.id.window_three_menu_id:
1420 case R.id.window_four_menu_id:
1421 case R.id.window_five_menu_id:
1422 case R.id.window_six_menu_id:
1423 case R.id.window_seven_menu_id:
1424 case R.id.window_eight_menu_id:
1425 {
1426 int menuid = item.getItemId();
1427 for (int id = 0; id < WINDOW_SHORTCUT_ID_ARRAY.length; id++) {
1428 if (WINDOW_SHORTCUT_ID_ARRAY[id] == menuid) {
Grace Kloba22ac16e2009-10-07 18:00:23 -07001429 Tab desiredTab = mTabControl.getTab(id);
The Android Open Source Project0c908882009-03-03 19:32:16 -08001430 if (desiredTab != null &&
1431 desiredTab != mTabControl.getCurrentTab()) {
Leon Scroggins1f005d32009-08-10 17:36:42 -04001432 switchToTab(id);
The Android Open Source Project0c908882009-03-03 19:32:16 -08001433 }
1434 break;
1435 }
1436 }
1437 }
1438 break;
1439
1440 default:
1441 if (!super.onOptionsItemSelected(item)) {
1442 return false;
1443 }
1444 // Otherwise fall through.
1445 }
1446 mCanChord = false;
1447 return true;
1448 }
1449
Michael Kolb370a4f32010-10-06 10:45:32 -07001450 /**
1451 * add the current page as a bookmark to the given folder id
1452 * @param folderId use -1 for the default folder
1453 */
1454 /* package */ void bookmarkCurrentPage(long folderId) {
Leon Scroggins571b3762010-05-26 10:25:01 -04001455 Intent i = new Intent(BrowserActivity.this,
1456 AddBookmarkPage.class);
1457 WebView w = getTopWindow();
Leon Scrogginsbc922852010-10-22 12:15:27 -04001458 i.putExtra(BrowserContract.Bookmarks.URL, w.getUrl());
1459 i.putExtra(BrowserContract.Bookmarks.TITLE, w.getTitle());
Leon Scroggins88d08032010-10-21 15:17:10 -04001460 String touchIconUrl = w.getTouchIconUrl();
1461 if (touchIconUrl != null) {
Leon Scrogginsbc922852010-10-22 12:15:27 -04001462 i.putExtra(AddBookmarkPage.TOUCH_ICON_URL, touchIconUrl);
Leon Scroggins88d08032010-10-21 15:17:10 -04001463 WebSettings settings = w.getSettings();
1464 if (settings != null) {
Leon Scrogginsbc922852010-10-22 12:15:27 -04001465 i.putExtra(AddBookmarkPage.USER_AGENT,
1466 settings.getUserAgentString());
Leon Scroggins88d08032010-10-21 15:17:10 -04001467 }
1468 }
Leon Scrogginsbc922852010-10-22 12:15:27 -04001469 i.putExtra(BrowserContract.Bookmarks.THUMBNAIL,
1470 createScreenshot(w, getDesiredThumbnailWidth(this),
Ben Murdoch87cc65d2010-06-29 20:34:10 +01001471 getDesiredThumbnailHeight(this)));
Leon Scrogginsbc922852010-10-22 12:15:27 -04001472 i.putExtra(BrowserContract.Bookmarks.FAVICON, w.getFavicon());
Michael Kolb370a4f32010-10-06 10:45:32 -07001473 i.putExtra(BrowserContract.Bookmarks.PARENT,
1474 folderId);
Leon Scroggins III76a0e9c2010-10-05 16:10:01 -04001475 // Put the dialog at the upper right of the screen, covering the
1476 // star on the title bar.
1477 i.putExtra("gravity", Gravity.RIGHT | Gravity.TOP);
Leon Scroggins571b3762010-05-26 10:25:01 -04001478 startActivity(i);
1479 }
1480
Leon Scroggins III8e4fbf12010-08-17 16:58:15 -04001481 /*
1482 * True if a custom ActionMode (i.e. find or select) is in use.
1483 */
1484 private boolean isInCustomActionMode() {
1485 return mActionMode != null;
Cary Clark01cfcdd2010-06-04 16:36:45 -04001486 }
1487
1488 /*
Leon Scroggins4fc12cb2010-08-24 14:24:05 -04001489 * End the current ActionMode.
Cary Clark01cfcdd2010-06-04 16:36:45 -04001490 */
Leon Scroggins III8e4fbf12010-08-17 16:58:15 -04001491 void endActionMode() {
1492 if (mActionMode != null) {
Leon Scroggins4fc12cb2010-08-24 14:24:05 -04001493 ActionMode mode = mActionMode;
1494 onEndActionMode();
1495 mode.finish();
Leon Scroggins III8e4fbf12010-08-17 16:58:15 -04001496 }
1497 }
1498
1499 /*
1500 * Called by find and select when they are finished. Replace title bars
1501 * as necessary.
1502 */
1503 public void onEndActionMode() {
1504 if (!isInCustomActionMode()) return;
Leon Scroggins79e36d92010-04-29 16:01:46 +01001505 if (mInLoad) {
1506 // The title bar was hidden, because otherwise it would cover up the
Michael Kolba2b2ba82010-08-04 17:54:03 -07001507 // find or select dialog. Now that the dialog has been removed,
Cary Clark01cfcdd2010-06-04 16:36:45 -04001508 // show the fake title bar once again.
Leon Scroggins79e36d92010-04-29 16:01:46 +01001509 showFakeTitleBar();
1510 }
Leon Scroggins4fc12cb2010-08-24 14:24:05 -04001511 // Would like to return the menu state to normal, but this does not
1512 // necessarily get called.
Leon Scroggins III8e4fbf12010-08-17 16:58:15 -04001513 mActionMode = null;
The Android Open Source Project0c908882009-03-03 19:32:16 -08001514 }
1515
Leon Scroggins III8e4fbf12010-08-17 16:58:15 -04001516 // For select and find, we keep track of the ActionMode so that
1517 // finish() can be called as desired.
1518 private ActionMode mActionMode;
1519
Grace Kloba22ac16e2009-10-07 18:00:23 -07001520 @Override
1521 public boolean onPrepareOptionsMenu(Menu menu) {
The Android Open Source Project0c908882009-03-03 19:32:16 -08001522 // This happens when the user begins to hold down the menu key, so
1523 // allow them to chord to get a shortcut.
1524 mCanChord = true;
1525 // Note: setVisible will decide whether an item is visible; while
1526 // setEnabled() will decide whether an item is enabled, which also means
1527 // whether the matching shortcut key will function.
1528 super.onPrepareOptionsMenu(menu);
1529 switch (mMenuState) {
The Android Open Source Project0c908882009-03-03 19:32:16 -08001530 case EMPTY_MENU:
1531 if (mCurrentMenuState != mMenuState) {
1532 menu.setGroupVisible(R.id.MAIN_MENU, false);
1533 menu.setGroupEnabled(R.id.MAIN_MENU, false);
1534 menu.setGroupEnabled(R.id.MAIN_SHORTCUT_MENU, false);
The Android Open Source Project0c908882009-03-03 19:32:16 -08001535 }
1536 break;
1537 default:
1538 if (mCurrentMenuState != mMenuState) {
1539 menu.setGroupVisible(R.id.MAIN_MENU, true);
1540 menu.setGroupEnabled(R.id.MAIN_MENU, true);
1541 menu.setGroupEnabled(R.id.MAIN_SHORTCUT_MENU, true);
The Android Open Source Project0c908882009-03-03 19:32:16 -08001542 }
1543 final WebView w = getTopWindow();
1544 boolean canGoBack = false;
1545 boolean canGoForward = false;
1546 boolean isHome = false;
1547 if (w != null) {
1548 canGoBack = w.canGoBack();
1549 canGoForward = w.canGoForward();
1550 isHome = mSettings.getHomePage().equals(w.getUrl());
1551 }
1552 final MenuItem back = menu.findItem(R.id.back_menu_id);
1553 back.setEnabled(canGoBack);
1554
1555 final MenuItem home = menu.findItem(R.id.homepage_menu_id);
1556 home.setEnabled(!isHome);
1557
Michael Kolbe0a36662010-06-29 10:37:12 -07001558 final MenuItem forward = menu.findItem(R.id.forward_menu_id);
1559 forward.setEnabled(canGoForward);
The Android Open Source Project0c908882009-03-03 19:32:16 -08001560
Michael Kolbed217742010-08-10 17:52:34 -07001561 if (!mXLargeScreenSize) {
1562 final MenuItem newtab = menu.findItem(R.id.new_tab_menu_id);
1563 newtab.setEnabled(mTabControl.canCreateNewTab());
1564 }
The Android Open Source Project0c908882009-03-03 19:32:16 -08001565 // decide whether to show the share link option
1566 PackageManager pm = getPackageManager();
1567 Intent send = new Intent(Intent.ACTION_SEND);
1568 send.setType("text/plain");
1569 ResolveInfo ri = pm.resolveActivity(send, PackageManager.MATCH_DEFAULT_ONLY);
1570 menu.findItem(R.id.share_page_menu_id).setVisible(ri != null);
1571
The Android Open Source Project0c908882009-03-03 19:32:16 -08001572 boolean isNavDump = mSettings.isNavDump();
1573 final MenuItem nav = menu.findItem(R.id.dump_nav_menu_id);
1574 nav.setVisible(isNavDump);
1575 nav.setEnabled(isNavDump);
Andrei Popescu7a8b88b2010-02-02 00:30:38 +00001576
1577 boolean showDebugSettings = mSettings.showDebugSettings();
1578 final MenuItem counter = menu.findItem(R.id.dump_counters_menu_id);
1579 counter.setVisible(showDebugSettings);
1580 counter.setEnabled(showDebugSettings);
1581
The Android Open Source Project0c908882009-03-03 19:32:16 -08001582 break;
1583 }
1584 mCurrentMenuState = mMenuState;
1585 return true;
1586 }
1587
1588 @Override
1589 public void onCreateContextMenu(ContextMenu menu, View v,
1590 ContextMenuInfo menuInfo) {
Leon Scroggins571b3762010-05-26 10:25:01 -04001591 if (v instanceof TitleBarBase) {
Leon Scroggins4e9f89b2010-02-22 16:54:14 -05001592 return;
1593 }
Michael Kolb772927a2010-10-13 19:23:42 -07001594 if (!(v instanceof WebView)) {
1595 return;
1596 }
The Android Open Source Project0c908882009-03-03 19:32:16 -08001597 WebView webview = (WebView) v;
1598 WebView.HitTestResult result = webview.getHitTestResult();
1599 if (result == null) {
1600 return;
1601 }
1602
1603 int type = result.getType();
1604 if (type == WebView.HitTestResult.UNKNOWN_TYPE) {
1605 Log.w(LOGTAG,
1606 "We should not show context menu when nothing is touched");
1607 return;
1608 }
1609 if (type == WebView.HitTestResult.EDIT_TEXT_TYPE) {
1610 // let TextView handles context menu
1611 return;
1612 }
1613
1614 // Note, http://b/issue?id=1106666 is requesting that
1615 // an inflated menu can be used again. This is not available
1616 // yet, so inflate each time (yuk!)
1617 MenuInflater inflater = getMenuInflater();
1618 inflater.inflate(R.menu.browsercontext, menu);
1619
1620 // Show the correct menu group
Leon Scroggins III9e997c72010-05-26 13:25:16 -04001621 final String extra = result.getExtra();
The Android Open Source Project0c908882009-03-03 19:32:16 -08001622 menu.setGroupVisible(R.id.PHONE_MENU,
1623 type == WebView.HitTestResult.PHONE_TYPE);
1624 menu.setGroupVisible(R.id.EMAIL_MENU,
1625 type == WebView.HitTestResult.EMAIL_TYPE);
1626 menu.setGroupVisible(R.id.GEO_MENU,
1627 type == WebView.HitTestResult.GEO_TYPE);
1628 menu.setGroupVisible(R.id.IMAGE_MENU,
1629 type == WebView.HitTestResult.IMAGE_TYPE
1630 || type == WebView.HitTestResult.SRC_IMAGE_ANCHOR_TYPE);
1631 menu.setGroupVisible(R.id.ANCHOR_MENU,
1632 type == WebView.HitTestResult.SRC_ANCHOR_TYPE
1633 || type == WebView.HitTestResult.SRC_IMAGE_ANCHOR_TYPE);
1634
1635 // Setup custom handling depending on the type
1636 switch (type) {
1637 case WebView.HitTestResult.PHONE_TYPE:
1638 menu.setHeaderTitle(Uri.decode(extra));
1639 menu.findItem(R.id.dial_context_menu_id).setIntent(
1640 new Intent(Intent.ACTION_VIEW, Uri
1641 .parse(WebView.SCHEME_TEL + extra)));
1642 Intent addIntent = new Intent(Intent.ACTION_INSERT_OR_EDIT);
1643 addIntent.putExtra(Insert.PHONE, Uri.decode(extra));
Cary Clark5e335a32009-09-22 14:53:11 -04001644 addIntent.setType(ContactsContract.Contacts.CONTENT_ITEM_TYPE);
The Android Open Source Project0c908882009-03-03 19:32:16 -08001645 menu.findItem(R.id.add_contact_context_menu_id).setIntent(
1646 addIntent);
1647 menu.findItem(R.id.copy_phone_context_menu_id).setOnMenuItemClickListener(
1648 new Copy(extra));
1649 break;
1650
1651 case WebView.HitTestResult.EMAIL_TYPE:
1652 menu.setHeaderTitle(extra);
1653 menu.findItem(R.id.email_context_menu_id).setIntent(
1654 new Intent(Intent.ACTION_VIEW, Uri
1655 .parse(WebView.SCHEME_MAILTO + extra)));
1656 menu.findItem(R.id.copy_mail_context_menu_id).setOnMenuItemClickListener(
1657 new Copy(extra));
1658 break;
1659
1660 case WebView.HitTestResult.GEO_TYPE:
1661 menu.setHeaderTitle(extra);
1662 menu.findItem(R.id.map_context_menu_id).setIntent(
1663 new Intent(Intent.ACTION_VIEW, Uri
1664 .parse(WebView.SCHEME_GEO
1665 + URLEncoder.encode(extra))));
1666 menu.findItem(R.id.copy_geo_context_menu_id).setOnMenuItemClickListener(
1667 new Copy(extra));
1668 break;
1669
1670 case WebView.HitTestResult.SRC_ANCHOR_TYPE:
1671 case WebView.HitTestResult.SRC_IMAGE_ANCHOR_TYPE:
1672 TextView titleView = (TextView) LayoutInflater.from(this)
1673 .inflate(android.R.layout.browser_link_context_header,
1674 null);
1675 titleView.setText(extra);
1676 menu.setHeaderView(titleView);
1677 // decide whether to show the open link in new tab option
Leon Scroggins III9e997c72010-05-26 13:25:16 -04001678 boolean showNewTab = mTabControl.canCreateNewTab();
1679 MenuItem newTabItem
1680 = menu.findItem(R.id.open_newtab_context_menu_id);
1681 newTabItem.setVisible(showNewTab);
1682 if (showNewTab) {
1683 newTabItem.setOnMenuItemClickListener(
1684 new MenuItem.OnMenuItemClickListener() {
1685 public boolean onMenuItemClick(MenuItem item) {
1686 final Tab parent = mTabControl.getCurrentTab();
Michael Kolb68792c82010-08-09 16:39:18 -07001687 final Tab newTab = openTab(extra, false);
Leon Scroggins III9e997c72010-05-26 13:25:16 -04001688 if (newTab != parent) {
1689 parent.addChildTab(newTab);
1690 }
1691 return true;
1692 }
1693 });
1694 }
Ben Murdochde353622009-10-12 10:29:00 +01001695 menu.findItem(R.id.bookmark_context_menu_id).setVisible(
1696 Bookmarks.urlHasAcceptableScheme(extra));
The Android Open Source Project0c908882009-03-03 19:32:16 -08001697 PackageManager pm = getPackageManager();
1698 Intent send = new Intent(Intent.ACTION_SEND);
1699 send.setType("text/plain");
1700 ResolveInfo ri = pm.resolveActivity(send, PackageManager.MATCH_DEFAULT_ONLY);
1701 menu.findItem(R.id.share_link_context_menu_id).setVisible(ri != null);
1702 if (type == WebView.HitTestResult.SRC_ANCHOR_TYPE) {
1703 break;
1704 }
1705 // otherwise fall through to handle image part
1706 case WebView.HitTestResult.IMAGE_TYPE:
1707 if (type == WebView.HitTestResult.IMAGE_TYPE) {
1708 menu.setHeaderTitle(extra);
1709 }
1710 menu.findItem(R.id.view_image_context_menu_id).setIntent(
1711 new Intent(Intent.ACTION_VIEW, Uri.parse(extra)));
1712 menu.findItem(R.id.download_context_menu_id).
1713 setOnMenuItemClickListener(new Download(extra));
Ben Murdoch4f75ba22009-10-27 11:48:28 +00001714 menu.findItem(R.id.set_wallpaper_context_menu_id).
1715 setOnMenuItemClickListener(new SetAsWallpaper(extra));
The Android Open Source Project0c908882009-03-03 19:32:16 -08001716 break;
1717
1718 default:
1719 Log.w(LOGTAG, "We should not get here.");
1720 break;
1721 }
Leon Scrogginsb2b19f52009-10-09 16:10:00 -04001722 hideFakeTitleBar();
The Android Open Source Project0c908882009-03-03 19:32:16 -08001723 }
1724
The Android Open Source Project0c908882009-03-03 19:32:16 -08001725 // Attach the given tab to the content view.
Grace Klobac928c302009-09-17 11:51:21 -07001726 // this should only be called for the current tab.
Grace Kloba22ac16e2009-10-07 18:00:23 -07001727 private void attachTabToContentView(Tab t) {
Steve Block2bc69912009-07-30 14:45:13 +01001728 // Attach the container that contains the main WebView and any other UI
1729 // associated with the tab.
Patrick Scottd0119532009-09-17 08:00:31 -04001730 t.attachTabToContentView(mContentView);
Ben Murdochbff2d602009-07-01 20:19:05 +01001731
1732 if (mShouldShowErrorConsole) {
Grace Kloba22ac16e2009-10-07 18:00:23 -07001733 ErrorConsoleView errorConsole = t.getErrorConsole(true);
Ben Murdochbff2d602009-07-01 20:19:05 +01001734 if (errorConsole.numberOfErrors() == 0) {
1735 errorConsole.showConsole(ErrorConsoleView.SHOW_NONE);
1736 } else {
1737 errorConsole.showConsole(ErrorConsoleView.SHOW_MINIMIZED);
1738 }
1739
1740 mErrorConsoleContainer.addView(errorConsole,
Romain Guy15b8ec62010-01-08 15:06:43 -08001741 new LinearLayout.LayoutParams(ViewGroup.LayoutParams.MATCH_PARENT,
Ben Murdochbff2d602009-07-01 20:19:05 +01001742 ViewGroup.LayoutParams.WRAP_CONTENT));
1743 }
1744
Michael Kolba2b2ba82010-08-04 17:54:03 -07001745 WebView view = t.getWebView();
1746 view.setEmbeddedTitleBar(mTitleBar);
Leon Scroggins58d56c62010-01-28 15:12:40 -05001747 if (t.isInVoiceSearchMode()) {
1748 showVoiceTitleBar(t.getVoiceDisplayTitle());
1749 } else {
1750 revertVoiceTitleBar();
1751 }
The Android Open Source Project0c908882009-03-03 19:32:16 -08001752 // Request focus on the top window.
1753 t.getTopWindow().requestFocus();
Michael Kolba2b2ba82010-08-04 17:54:03 -07001754 if (mTabControl.getTabChangeListener() != null) {
1755 mTabControl.getTabChangeListener().onCurrentTab(t);
1756 }
The Android Open Source Project0c908882009-03-03 19:32:16 -08001757 }
1758
1759 // Attach a sub window to the main WebView of the given tab.
Grace Kloba22ac16e2009-10-07 18:00:23 -07001760 void attachSubWindow(Tab t) {
Patrick Scottd0119532009-09-17 08:00:31 -04001761 t.attachSubWindow(mContentView);
1762 getTopWindow().requestFocus();
The Android Open Source Project0c908882009-03-03 19:32:16 -08001763 }
1764
1765 // Remove the given tab from the content view.
Grace Kloba22ac16e2009-10-07 18:00:23 -07001766 private void removeTabFromContentView(Tab t) {
Steve Block2bc69912009-07-30 14:45:13 +01001767 // Remove the container that contains the main WebView.
Patrick Scottd0119532009-09-17 08:00:31 -04001768 t.removeTabFromContentView(mContentView);
Ben Murdochbff2d602009-07-01 20:19:05 +01001769
Grace Kloba22ac16e2009-10-07 18:00:23 -07001770 ErrorConsoleView errorConsole = t.getErrorConsole(false);
1771 if (errorConsole != null) {
1772 mErrorConsoleContainer.removeView(errorConsole);
Ben Murdochbff2d602009-07-01 20:19:05 +01001773 }
1774
Michael Kolba2b2ba82010-08-04 17:54:03 -07001775 WebView view = t.getWebView();
1776 if (view != null) {
1777 view.setEmbeddedTitleBar(null);
Leon Scrogginsbb85b902009-09-14 19:27:20 -04001778 }
The Android Open Source Project0c908882009-03-03 19:32:16 -08001779 }
1780
1781 // Remove the sub window if it exists. Also called by TabControl when the
1782 // user clicks the 'X' to dismiss a sub window.
Grace Kloba22ac16e2009-10-07 18:00:23 -07001783 /* package */ void dismissSubWindow(Tab t) {
Patrick Scottd0119532009-09-17 08:00:31 -04001784 t.removeSubWindow(mContentView);
Grace Kloba22ac16e2009-10-07 18:00:23 -07001785 // dismiss the subwindow. This will destroy the WebView.
1786 t.dismissSubWindow();
Patrick Scottd0119532009-09-17 08:00:31 -04001787 getTopWindow().requestFocus();
The Android Open Source Project0c908882009-03-03 19:32:16 -08001788 }
1789
Leon Scroggins1f005d32009-08-10 17:36:42 -04001790 // A wrapper function of {@link #openTabAndShow(UrlData, boolean, String)}
Mitsuru Oshima25ad8ab2009-06-10 16:26:07 -07001791 // that accepts url as string.
Grace Kloba22ac16e2009-10-07 18:00:23 -07001792 private Tab openTabAndShow(String url, boolean closeOnExit, String appId) {
Leon Scroggins1f005d32009-08-10 17:36:42 -04001793 return openTabAndShow(new UrlData(url), closeOnExit, appId);
The Android Open Source Project0c908882009-03-03 19:32:16 -08001794 }
1795
1796 // This method does a ton of stuff. It will attempt to create a new tab
1797 // if we haven't reached MAX_TABS. Otherwise it uses the current tab. If
Leon Scroggins1f005d32009-08-10 17:36:42 -04001798 // url isn't null, it will load the given url.
Grace Kloba22ac16e2009-10-07 18:00:23 -07001799 /* package */Tab openTabAndShow(UrlData urlData, boolean closeOnExit,
1800 String appId) {
1801 final Tab currentTab = mTabControl.getCurrentTab();
1802 if (mTabControl.canCreateNewTab()) {
1803 final Tab tab = mTabControl.createNewTab(closeOnExit, appId,
Elliott Slaughterf0f03952010-07-14 18:10:36 -07001804 urlData.mUrl, false);
Leon Scroggins1f005d32009-08-10 17:36:42 -04001805 WebView webview = tab.getWebView();
Leon Scroggins0a64ba52009-09-08 15:35:33 -04001806 // If the last tab was removed from the active tabs page, currentTab
1807 // will be null.
1808 if (currentTab != null) {
1809 removeTabFromContentView(currentTab);
1810 }
Patrick Scott8bbd69f2009-08-14 13:35:53 -04001811 // We must set the new tab as the current tab to reflect the old
1812 // animation behavior.
1813 mTabControl.setCurrentTab(tab);
Grace Klobaeb6eef42009-09-15 17:56:32 -07001814 attachTabToContentView(tab);
Leon Scroggins160a7e72009-08-14 18:28:01 -04001815 if (!urlData.isEmpty()) {
Patrick Scott9d53da02010-02-19 10:19:01 -05001816 loadUrlDataIn(tab, urlData);
Leon Scroggins1f005d32009-08-10 17:36:42 -04001817 }
1818 return tab;
1819 } else {
1820 // Get rid of the subwindow if it exists
1821 dismissSubWindow(currentTab);
1822 if (!urlData.isEmpty()) {
1823 // Load the given url.
Patrick Scott9d53da02010-02-19 10:19:01 -05001824 loadUrlDataIn(currentTab, urlData);
The Android Open Source Project0c908882009-03-03 19:32:16 -08001825 }
Leon Scroggins58d56c62010-01-28 15:12:40 -05001826 return currentTab;
The Android Open Source Project0c908882009-03-03 19:32:16 -08001827 }
1828 }
1829
Michael Kolb68792c82010-08-09 16:39:18 -07001830 private Tab openTab(String url, boolean forceForeground) {
1831 if (mSettings.openInBackground() && !forceForeground) {
Grace Kloba22ac16e2009-10-07 18:00:23 -07001832 Tab t = mTabControl.createNewTab();
The Android Open Source Project0c908882009-03-03 19:32:16 -08001833 if (t != null) {
Leon Scroggins1f005d32009-08-10 17:36:42 -04001834 WebView view = t.getWebView();
Leon Scroggins92472e82010-02-17 16:32:28 -05001835 loadUrl(view, url);
The Android Open Source Project0c908882009-03-03 19:32:16 -08001836 }
Grace Klobac9181842009-04-14 08:53:22 -07001837 return t;
The Android Open Source Project0c908882009-03-03 19:32:16 -08001838 } else {
Leon Scroggins1f005d32009-08-10 17:36:42 -04001839 return openTabAndShow(url, false, null);
The Android Open Source Project0c908882009-03-03 19:32:16 -08001840 }
1841 }
1842
Elliott Slaughterf0f03952010-07-14 18:10:36 -07001843 /* package */ Tab openIncognitoTab() {
1844 if (mTabControl.canCreateNewTab()) {
1845 Tab currentTab = mTabControl.getCurrentTab();
1846 Tab tab = mTabControl.createNewTab(false, null, null, true);
1847 if (currentTab != null) {
1848 removeTabFromContentView(currentTab);
1849 }
1850 mTabControl.setCurrentTab(tab);
1851 attachTabToContentView(tab);
1852 return tab;
1853 }
1854 return null;
1855 }
1856
The Android Open Source Project0c908882009-03-03 19:32:16 -08001857 private class Copy implements OnMenuItemClickListener {
1858 private CharSequence mText;
1859
1860 public boolean onMenuItemClick(MenuItem item) {
1861 copy(mText);
1862 return true;
1863 }
1864
1865 public Copy(CharSequence toCopy) {
1866 mText = toCopy;
1867 }
1868 }
1869
1870 private class Download implements OnMenuItemClickListener {
1871 private String mText;
1872
1873 public boolean onMenuItemClick(MenuItem item) {
1874 onDownloadStartNoStream(mText, null, null, null, -1);
1875 return true;
1876 }
1877
1878 public Download(String toDownload) {
1879 mText = toDownload;
1880 }
1881 }
1882
Ben Murdoch4f75ba22009-10-27 11:48:28 +00001883 private class SetAsWallpaper extends Thread implements
1884 OnMenuItemClickListener, DialogInterface.OnCancelListener {
1885 private URL mUrl;
1886 private ProgressDialog mWallpaperProgress;
1887 private boolean mCanceled = false;
1888
1889 public SetAsWallpaper(String url) {
1890 try {
1891 mUrl = new URL(url);
1892 } catch (MalformedURLException e) {
1893 mUrl = null;
1894 }
1895 }
1896
1897 public void onCancel(DialogInterface dialog) {
1898 mCanceled = true;
1899 }
1900
1901 public boolean onMenuItemClick(MenuItem item) {
1902 if (mUrl != null) {
1903 // The user may have tried to set a image with a large file size as their
1904 // background so it may take a few moments to perform the operation. Display
1905 // a progress spinner while it is working.
1906 mWallpaperProgress = new ProgressDialog(BrowserActivity.this);
1907 mWallpaperProgress.setIndeterminate(true);
1908 mWallpaperProgress.setMessage(getText(R.string.progress_dialog_setting_wallpaper));
1909 mWallpaperProgress.setCancelable(true);
1910 mWallpaperProgress.setOnCancelListener(this);
1911 mWallpaperProgress.show();
1912 start();
1913 }
1914 return true;
1915 }
1916
Michael Kolbe0a36662010-06-29 10:37:12 -07001917 @Override
Ben Murdoch4f75ba22009-10-27 11:48:28 +00001918 public void run() {
1919 Drawable oldWallpaper = BrowserActivity.this.getWallpaper();
1920 try {
1921 // TODO: This will cause the resource to be downloaded again, when we
1922 // should in most cases be able to grab it from the cache. To fix this
1923 // we should query WebCore to see if we can access a cached version and
1924 // instead open an input stream on that. This pattern could also be used
1925 // in the download manager where the same problem exists.
1926 InputStream inputstream = mUrl.openStream();
1927 if (inputstream != null) {
1928 setWallpaper(inputstream);
1929 }
1930 } catch (IOException e) {
1931 Log.e(LOGTAG, "Unable to set new wallpaper");
1932 // Act as though the user canceled the operation so we try to
1933 // restore the old wallpaper.
1934 mCanceled = true;
1935 }
1936
1937 if (mCanceled) {
1938 // Restore the old wallpaper if the user cancelled whilst we were setting
1939 // the new wallpaper.
1940 int width = oldWallpaper.getIntrinsicWidth();
1941 int height = oldWallpaper.getIntrinsicHeight();
1942 Bitmap bm = Bitmap.createBitmap(width, height, Bitmap.Config.RGB_565);
1943 Canvas canvas = new Canvas(bm);
1944 oldWallpaper.setBounds(0, 0, width, height);
1945 oldWallpaper.draw(canvas);
1946 try {
1947 setWallpaper(bm);
1948 } catch (IOException e) {
1949 Log.e(LOGTAG, "Unable to restore old wallpaper.");
1950 }
1951 mCanceled = false;
1952 }
1953
1954 if (mWallpaperProgress.isShowing()) {
1955 mWallpaperProgress.dismiss();
1956 }
1957 }
1958 }
1959
The Android Open Source Project0c908882009-03-03 19:32:16 -08001960 private void copy(CharSequence text) {
Dianne Hackborn80f32622010-08-05 14:17:53 -07001961 ClipboardManager cm = (ClipboardManager)getSystemService(Context.CLIPBOARD_SERVICE);
1962 cm.setText(text);
The Android Open Source Project0c908882009-03-03 19:32:16 -08001963 }
1964
1965 /**
The Android Open Source Project0c908882009-03-03 19:32:16 -08001966 * Resets the browser title-view to whatever it must be
1967 * (for example, if we had a loading error)
1968 * When we have a new page, we call resetTitle, when we
1969 * have to reset the titlebar to whatever it used to be
1970 * (for example, if the user chose to stop loading), we
1971 * call resetTitleAndRevertLockIcon.
1972 */
1973 /* package */ void resetTitleAndRevertLockIcon() {
Grace Kloba22ac16e2009-10-07 18:00:23 -07001974 mTabControl.getCurrentTab().revertLockIcon();
1975 updateLockIconToLatest();
The Android Open Source Project0c908882009-03-03 19:32:16 -08001976 resetTitleIconAndProgress();
1977 }
1978
1979 /**
1980 * Reset the title, favicon, and progress.
1981 */
1982 private void resetTitleIconAndProgress() {
1983 WebView current = mTabControl.getCurrentWebView();
1984 if (current == null) {
1985 return;
1986 }
1987 resetTitleAndIcon(current);
1988 int progress = current.getProgress();
Grace Kloba22ac16e2009-10-07 18:00:23 -07001989 current.getWebChromeClient().onProgressChanged(current, progress);
The Android Open Source Project0c908882009-03-03 19:32:16 -08001990 }
1991
1992 // Reset the title and the icon based on the given item.
1993 private void resetTitleAndIcon(WebView view) {
1994 WebHistoryItem item = view.copyBackForwardList().getCurrentItem();
1995 if (item != null) {
Leon Scroggins68579392009-09-15 15:31:54 -04001996 setUrlTitle(item.getUrl(), item.getTitle());
The Android Open Source Project0c908882009-03-03 19:32:16 -08001997 setFavicon(item.getFavicon());
1998 } else {
Leon Scroggins68579392009-09-15 15:31:54 -04001999 setUrlTitle(null, null);
The Android Open Source Project0c908882009-03-03 19:32:16 -08002000 setFavicon(null);
2001 }
2002 }
2003
2004 /**
2005 * Sets a title composed of the URL and the title string.
2006 * @param url The URL of the site being loaded.
2007 * @param title The title of the site being loaded.
2008 */
Grace Kloba22ac16e2009-10-07 18:00:23 -07002009 void setUrlTitle(String url, String title) {
The Android Open Source Project0c908882009-03-03 19:32:16 -08002010 mUrl = url;
2011 mTitle = title;
2012
Leon Scroggins58d56c62010-01-28 15:12:40 -05002013 // If we are in voice search mode, the title has already been set.
2014 if (mTabControl.getCurrentTab().isInVoiceSearchMode()) return;
2015 mTitleBar.setDisplayTitle(url);
Michael Kolba2b2ba82010-08-04 17:54:03 -07002016 mFakeTitleBar.setDisplayTitle(url);
The Android Open Source Project0c908882009-03-03 19:32:16 -08002017 }
2018
2019 /**
The Android Open Source Project0c908882009-03-03 19:32:16 -08002020 * @param url The URL to build a title version of the URL from.
2021 * @return The title version of the URL or null if fails.
2022 * The title version of the URL can be either the URL hostname,
2023 * or the hostname with an "https://" prefix (for secure URLs),
2024 * or an empty string if, for example, the URL in question is a
2025 * file:// URL with no hostname.
2026 */
Leon Scroggins32e14a62009-06-11 10:26:34 -04002027 /* package */ static String buildTitleUrl(String url) {
The Android Open Source Project0c908882009-03-03 19:32:16 -08002028 String titleUrl = null;
2029
2030 if (url != null) {
2031 try {
2032 // parse the url string
2033 URL urlObj = new URL(url);
2034 if (urlObj != null) {
2035 titleUrl = "";
2036
2037 String protocol = urlObj.getProtocol();
2038 String host = urlObj.getHost();
2039
2040 if (host != null && 0 < host.length()) {
2041 titleUrl = host;
2042 if (protocol != null) {
2043 // if a secure site, add an "https://" prefix!
2044 if (protocol.equalsIgnoreCase("https")) {
2045 titleUrl = protocol + "://" + host;
2046 }
2047 }
2048 }
2049 }
2050 } catch (MalformedURLException e) {}
2051 }
2052
2053 return titleUrl;
2054 }
2055
2056 // Set the favicon in the title bar.
Grace Kloba22ac16e2009-10-07 18:00:23 -07002057 void setFavicon(Bitmap icon) {
Leon Scroggins68579392009-09-15 15:31:54 -04002058 mTitleBar.setFavicon(icon);
Michael Kolba2b2ba82010-08-04 17:54:03 -07002059 mFakeTitleBar.setFavicon(icon);
The Android Open Source Project0c908882009-03-03 19:32:16 -08002060 }
2061
2062 /**
Leon Scroggins0a64ba52009-09-08 15:35:33 -04002063 * Close the tab, remove its associated title bar, and adjust mTabControl's
2064 * current tab to a valid value.
Leon Scroggins1f005d32009-08-10 17:36:42 -04002065 */
Grace Kloba22ac16e2009-10-07 18:00:23 -07002066 /* package */ void closeTab(Tab t) {
Leon Scroggins0a64ba52009-09-08 15:35:33 -04002067 int currentIndex = mTabControl.getCurrentIndex();
2068 int removeIndex = mTabControl.getTabIndex(t);
Leon Scroggins1f005d32009-08-10 17:36:42 -04002069 mTabControl.removeTab(t);
Leon Scroggins0a64ba52009-09-08 15:35:33 -04002070 if (currentIndex >= removeIndex && currentIndex != 0) {
2071 currentIndex--;
2072 }
2073 mTabControl.setCurrentTab(mTabControl.getTab(currentIndex));
Andrei Popescua5bf1de2009-09-23 16:39:23 +01002074 resetTitleIconAndProgress();
Leon Scroggins654899b2010-06-25 16:25:23 -04002075 updateLockIconToLatest();
Elliott Slaughtere440a882010-08-20 13:54:45 -07002076
2077 if (!mTabControl.hasAnyOpenIncognitoTabs()) {
2078 WebView.cleanupPrivateBrowsingFiles(this);
2079 }
The Android Open Source Project0c908882009-03-03 19:32:16 -08002080 }
2081
Leon Scrogginsdcc5eeb2010-02-23 17:26:37 -05002082 /* package */ void goBackOnePageOrQuit() {
Grace Kloba22ac16e2009-10-07 18:00:23 -07002083 Tab current = mTabControl.getCurrentTab();
The Android Open Source Project0c908882009-03-03 19:32:16 -08002084 if (current == null) {
2085 /*
2086 * Instead of finishing the activity, simply push this to the back
2087 * of the stack and let ActivityManager to choose the foreground
2088 * activity. As BrowserActivity is singleTask, it will be always the
2089 * root of the task. So we can use either true or false for
2090 * moveTaskToBack().
2091 */
2092 moveTaskToBack(true);
Grace Kloba00d85e72009-09-23 18:50:05 -07002093 return;
The Android Open Source Project0c908882009-03-03 19:32:16 -08002094 }
2095 WebView w = current.getWebView();
2096 if (w.canGoBack()) {
2097 w.goBack();
2098 } else {
2099 // Check to see if we are closing a window that was created by
2100 // another window. If so, we switch back to that window.
Grace Kloba22ac16e2009-10-07 18:00:23 -07002101 Tab parent = current.getParentTab();
The Android Open Source Project0c908882009-03-03 19:32:16 -08002102 if (parent != null) {
Leon Scroggins1f005d32009-08-10 17:36:42 -04002103 switchToTab(mTabControl.getTabIndex(parent));
2104 // Now we close the other tab
2105 closeTab(current);
The Android Open Source Project0c908882009-03-03 19:32:16 -08002106 } else {
2107 if (current.closeOnExit()) {
Grace Kloba22ac16e2009-10-07 18:00:23 -07002108 // force the tab's inLoad() to be false as we are going to
2109 // either finish the activity or remove the tab. This will
2110 // ensure pauseWebViewTimers() taking action.
2111 mTabControl.getCurrentTab().clearInLoad();
The Android Open Source Project0c908882009-03-03 19:32:16 -08002112 if (mTabControl.getTabCount() == 1) {
2113 finish();
2114 return;
2115 }
Mike Reed7bfa63b2009-05-28 11:08:32 -04002116 // call pauseWebViewTimers() now, we won't be able to call
2117 // it in onPause() as the WebView won't be valid.
Grace Klobaec1b5ad2009-08-18 08:42:32 -07002118 // Temporarily change mActivityInPause to be true as
2119 // pauseWebViewTimers() will do nothing if mActivityInPause
2120 // is false.
Grace Kloba918e1d72009-08-13 14:55:06 -07002121 boolean savedState = mActivityInPause;
2122 if (savedState) {
Grace Klobaec1b5ad2009-08-18 08:42:32 -07002123 Log.e(LOGTAG, "BrowserActivity is already paused "
2124 + "while handing goBackOnePageOrQuit.");
Grace Kloba918e1d72009-08-13 14:55:06 -07002125 }
2126 mActivityInPause = true;
Mike Reed7bfa63b2009-05-28 11:08:32 -04002127 pauseWebViewTimers();
Grace Kloba918e1d72009-08-13 14:55:06 -07002128 mActivityInPause = savedState;
The Android Open Source Project0c908882009-03-03 19:32:16 -08002129 removeTabFromContentView(current);
2130 mTabControl.removeTab(current);
2131 }
2132 /*
2133 * Instead of finishing the activity, simply push this to the back
2134 * of the stack and let ActivityManager to choose the foreground
2135 * activity. As BrowserActivity is singleTask, it will be always the
2136 * root of the task. So we can use either true or false for
2137 * moveTaskToBack().
2138 */
2139 moveTaskToBack(true);
2140 }
2141 }
2142 }
2143
Grace Kloba22ac16e2009-10-07 18:00:23 -07002144 boolean isMenuDown() {
2145 return mMenuIsDown;
2146 }
2147
Grace Kloba5942df02009-09-18 11:48:29 -07002148 @Override
2149 public boolean onKeyDown(int keyCode, KeyEvent event) {
Leon Scrogginsf65b50d2009-12-08 10:44:28 -05002150 // Even if MENU is already held down, we need to call to super to open
2151 // the IME on long press.
2152 if (KeyEvent.KEYCODE_MENU == keyCode) {
2153 mMenuIsDown = true;
2154 return super.onKeyDown(keyCode, event);
2155 }
Grace Kloba5942df02009-09-18 11:48:29 -07002156 // The default key mode is DEFAULT_KEYS_SEARCH_LOCAL. As the MENU is
2157 // still down, we don't want to trigger the search. Pretend to consume
2158 // the key and do nothing.
2159 if (mMenuIsDown) return true;
The Android Open Source Project0c908882009-03-03 19:32:16 -08002160
Grace Kloba5942df02009-09-18 11:48:29 -07002161 switch(keyCode) {
Grace Kloba5942df02009-09-18 11:48:29 -07002162 case KeyEvent.KEYCODE_SPACE:
Grace Klobada0fe552009-09-22 18:17:24 -07002163 // WebView/WebTextView handle the keys in the KeyDown. As
2164 // the Activity's shortcut keys are only handled when WebView
2165 // doesn't, have to do it in onKeyDown instead of onKeyUp.
2166 if (event.isShiftPressed()) {
2167 getTopWindow().pageUp(false);
2168 } else {
2169 getTopWindow().pageDown(false);
2170 }
Grace Kloba5942df02009-09-18 11:48:29 -07002171 return true;
2172 case KeyEvent.KEYCODE_BACK:
2173 if (event.getRepeatCount() == 0) {
2174 event.startTracking();
2175 return true;
2176 } else if (mCustomView == null && mActiveTabsPage == null
Michael Kolbe421c242010-10-04 19:29:01 -07002177 && mComboView == null
Grace Kloba5942df02009-09-18 11:48:29 -07002178 && event.isLongPress()) {
Michael Kolbe421c242010-10-04 19:29:01 -07002179 bookmarksOrHistoryPicker(true);
Grace Kloba5942df02009-09-18 11:48:29 -07002180 return true;
The Android Open Source Project0c908882009-03-03 19:32:16 -08002181 }
Grace Kloba5942df02009-09-18 11:48:29 -07002182 break;
The Android Open Source Project0c908882009-03-03 19:32:16 -08002183 }
Grace Kloba5942df02009-09-18 11:48:29 -07002184 return super.onKeyDown(keyCode, event);
The Android Open Source Project0c908882009-03-03 19:32:16 -08002185 }
2186
Grace Kloba5942df02009-09-18 11:48:29 -07002187 @Override
2188 public boolean onKeyUp(int keyCode, KeyEvent event) {
2189 switch(keyCode) {
2190 case KeyEvent.KEYCODE_MENU:
2191 mMenuIsDown = false;
2192 break;
Grace Kloba5942df02009-09-18 11:48:29 -07002193 case KeyEvent.KEYCODE_BACK:
2194 if (event.isTracking() && !event.isCanceled()) {
2195 if (mCustomView != null) {
2196 // if a custom view is showing, hide it
Grace Kloba22ac16e2009-10-07 18:00:23 -07002197 mTabControl.getCurrentWebView().getWebChromeClient()
2198 .onHideCustomView();
Grace Kloba5942df02009-09-18 11:48:29 -07002199 } else if (mActiveTabsPage != null) {
2200 // if tab page is showing, hide it
2201 removeActiveTabPage(true);
Michael Kolbe421c242010-10-04 19:29:01 -07002202 } else if (mComboView != null) {
Michael Kolb370a4f32010-10-06 10:45:32 -07002203 if (!mComboView.onBackPressed()) {
2204 removeComboView();
2205 }
The Android Open Source Project0c908882009-03-03 19:32:16 -08002206 } else {
Grace Kloba5942df02009-09-18 11:48:29 -07002207 WebView subwindow = mTabControl.getCurrentSubWindow();
2208 if (subwindow != null) {
2209 if (subwindow.canGoBack()) {
2210 subwindow.goBack();
2211 } else {
2212 dismissSubWindow(mTabControl.getCurrentTab());
2213 }
2214 } else {
2215 goBackOnePageOrQuit();
2216 }
The Android Open Source Project0c908882009-03-03 19:32:16 -08002217 }
Grace Kloba5942df02009-09-18 11:48:29 -07002218 return true;
2219 }
2220 break;
The Android Open Source Project0c908882009-03-03 19:32:16 -08002221 }
Grace Kloba5942df02009-09-18 11:48:29 -07002222 return super.onKeyUp(keyCode, event);
The Android Open Source Project0c908882009-03-03 19:32:16 -08002223 }
2224
Leon Scroggins68579392009-09-15 15:31:54 -04002225 /* package */ void stopLoading() {
Ben Murdochb7cc8b42009-09-28 10:59:09 +01002226 mDidStopLoad = true;
The Android Open Source Project0c908882009-03-03 19:32:16 -08002227 resetTitleAndRevertLockIcon();
2228 WebView w = getTopWindow();
2229 w.stopLoading();
Grace Kloba22ac16e2009-10-07 18:00:23 -07002230 // FIXME: before refactor, it is using mWebViewClient. So I keep the
2231 // same logic here. But for subwindow case, should we call into the main
2232 // WebView's onPageFinished as we never call its onPageStarted and if
2233 // the page finishes itself, we don't call onPageFinished.
2234 mTabControl.getCurrentWebView().getWebViewClient().onPageFinished(w,
2235 w.getUrl());
The Android Open Source Project0c908882009-03-03 19:32:16 -08002236
2237 cancelStopToast();
2238 mStopToast = Toast
2239 .makeText(this, R.string.stopping, Toast.LENGTH_SHORT);
2240 mStopToast.show();
2241 }
2242
Grace Kloba22ac16e2009-10-07 18:00:23 -07002243 boolean didUserStopLoading() {
2244 return mDidStopLoad;
2245 }
2246
The Android Open Source Project0c908882009-03-03 19:32:16 -08002247 private void cancelStopToast() {
2248 if (mStopToast != null) {
2249 mStopToast.cancel();
2250 mStopToast = null;
2251 }
2252 }
2253
Grace Kloba22ac16e2009-10-07 18:00:23 -07002254 // called by a UI or non-UI thread to post the message
2255 public void postMessage(int what, int arg1, int arg2, Object obj,
2256 long delayMillis) {
2257 mHandler.sendMessageDelayed(mHandler.obtainMessage(what, arg1, arg2,
2258 obj), delayMillis);
2259 }
2260
2261 // called by a UI or non-UI thread to remove the message
2262 void removeMessages(int what, Object object) {
2263 mHandler.removeMessages(what, object);
The Android Open Source Project0c908882009-03-03 19:32:16 -08002264 }
2265
2266 // public message ids
2267 public final static int LOAD_URL = 1001;
2268 public final static int STOP_LOAD = 1002;
2269
2270 // Message Ids
2271 private static final int FOCUS_NODE_HREF = 102;
Grace Kloba92c18a52009-07-31 23:48:32 -07002272 private static final int RELEASE_WAKELOCK = 107;
The Android Open Source Project0c908882009-03-03 19:32:16 -08002273
Grace Kloba22ac16e2009-10-07 18:00:23 -07002274 static final int UPDATE_BOOKMARK_THUMBNAIL = 108;
Ben Murdoch2694e232009-09-29 09:41:11 +01002275
Michael Kolb300b7f02010-08-25 13:47:24 -07002276 private static final int OPEN_BOOKMARKS = 201;
2277
The Android Open Source Project0c908882009-03-03 19:32:16 -08002278 // Private handler for handling javascript and saving passwords
2279 private Handler mHandler = new Handler() {
2280
Michael Kolbe0a36662010-06-29 10:37:12 -07002281 @Override
The Android Open Source Project0c908882009-03-03 19:32:16 -08002282 public void handleMessage(Message msg) {
2283 switch (msg.what) {
Michael Kolb300b7f02010-08-25 13:47:24 -07002284 case OPEN_BOOKMARKS:
Michael Kolbe421c242010-10-04 19:29:01 -07002285 bookmarksOrHistoryPicker(false);
Michael Kolb300b7f02010-08-25 13:47:24 -07002286 break;
The Android Open Source Project0c908882009-03-03 19:32:16 -08002287 case FOCUS_NODE_HREF:
Ben Murdoch2694e232009-09-29 09:41:11 +01002288 {
The Android Open Source Project0c908882009-03-03 19:32:16 -08002289 String url = (String) msg.getData().get("url");
Ben Murdoch90d088c2009-11-17 18:14:04 +00002290 String title = (String) msg.getData().get("title");
The Android Open Source Project0c908882009-03-03 19:32:16 -08002291 if (url == null || url.length() == 0) {
2292 break;
2293 }
2294 HashMap focusNodeMap = (HashMap) msg.obj;
2295 WebView view = (WebView) focusNodeMap.get("webview");
2296 // Only apply the action if the top window did not change.
2297 if (getTopWindow() != view) {
2298 break;
2299 }
2300 switch (msg.arg1) {
2301 case R.id.open_context_menu_id:
2302 case R.id.view_image_context_menu_id:
Leon Scroggins92472e82010-02-17 16:32:28 -05002303 loadUrlFromContext(getTopWindow(), url);
The Android Open Source Project0c908882009-03-03 19:32:16 -08002304 break;
The Android Open Source Project0c908882009-03-03 19:32:16 -08002305 case R.id.bookmark_context_menu_id:
2306 Intent intent = new Intent(BrowserActivity.this,
2307 AddBookmarkPage.class);
Leon Scrogginsbc922852010-10-22 12:15:27 -04002308 intent.putExtra(BrowserContract.Bookmarks.URL, url);
2309 intent.putExtra(BrowserContract.Bookmarks.TITLE,
2310 title);
The Android Open Source Project0c908882009-03-03 19:32:16 -08002311 startActivity(intent);
2312 break;
2313 case R.id.share_link_context_menu_id:
Leon Scroggins3e204452010-05-10 11:06:03 -04002314 sharePage(BrowserActivity.this, title, url, null,
Leon Scroggins96afcb12009-12-10 12:35:56 -05002315 null);
The Android Open Source Project0c908882009-03-03 19:32:16 -08002316 break;
2317 case R.id.copy_link_context_menu_id:
2318 copy(url);
2319 break;
2320 case R.id.save_link_context_menu_id:
2321 case R.id.download_context_menu_id:
2322 onDownloadStartNoStream(url, null, null, null, -1);
2323 break;
2324 }
2325 break;
Ben Murdoch2694e232009-09-29 09:41:11 +01002326 }
The Android Open Source Project0c908882009-03-03 19:32:16 -08002327
2328 case LOAD_URL:
Leon Scroggins92472e82010-02-17 16:32:28 -05002329 loadUrlFromContext(getTopWindow(), (String) msg.obj);
The Android Open Source Project0c908882009-03-03 19:32:16 -08002330 break;
2331
2332 case STOP_LOAD:
2333 stopLoading();
2334 break;
2335
The Android Open Source Project0c908882009-03-03 19:32:16 -08002336 case RELEASE_WAKELOCK:
2337 if (mWakeLock.isHeld()) {
2338 mWakeLock.release();
Grace Kloba5d0e02e2009-10-05 15:15:36 -07002339 // if we reach here, Browser should be still in the
2340 // background loading after WAKELOCK_TIMEOUT (5-min).
2341 // To avoid burning the battery, stop loading.
2342 mTabControl.stopAllLoading();
The Android Open Source Project0c908882009-03-03 19:32:16 -08002343 }
2344 break;
Ben Murdoch2694e232009-09-29 09:41:11 +01002345
2346 case UPDATE_BOOKMARK_THUMBNAIL:
2347 WebView view = (WebView) msg.obj;
2348 if (view != null) {
2349 updateScreenshot(view);
2350 }
2351 break;
The Android Open Source Project0c908882009-03-03 19:32:16 -08002352 }
2353 }
2354 };
2355
Leon Scroggins96afcb12009-12-10 12:35:56 -05002356 /**
2357 * Share a page, providing the title, url, favicon, and a screenshot. Uses
2358 * an {@link Intent} to launch the Activity chooser.
2359 * @param c Context used to launch a new Activity.
2360 * @param title Title of the page. Stored in the Intent with
Paul Westbrook03e6d392010-02-12 10:33:29 -08002361 * {@link Intent#EXTRA_SUBJECT}
Leon Scroggins96afcb12009-12-10 12:35:56 -05002362 * @param url URL of the page. Stored in the Intent with
2363 * {@link Intent#EXTRA_TEXT}
2364 * @param favicon Bitmap of the favicon for the page. Stored in the Intent
2365 * with {@link Browser#EXTRA_SHARE_FAVICON}
2366 * @param screenshot Bitmap of a screenshot of the page. Stored in the
2367 * Intent with {@link Browser#EXTRA_SHARE_SCREENSHOT}
2368 */
2369 public static final void sharePage(Context c, String title, String url,
2370 Bitmap favicon, Bitmap screenshot) {
2371 Intent send = new Intent(Intent.ACTION_SEND);
2372 send.setType("text/plain");
2373 send.putExtra(Intent.EXTRA_TEXT, url);
Paul Westbrook03e6d392010-02-12 10:33:29 -08002374 send.putExtra(Intent.EXTRA_SUBJECT, title);
Leon Scroggins96afcb12009-12-10 12:35:56 -05002375 send.putExtra(Browser.EXTRA_SHARE_FAVICON, favicon);
2376 send.putExtra(Browser.EXTRA_SHARE_SCREENSHOT, screenshot);
2377 try {
2378 c.startActivity(Intent.createChooser(send, c.getString(
2379 R.string.choosertitle_sharevia)));
2380 } catch(android.content.ActivityNotFoundException ex) {
2381 // if no app handles it, do nothing
2382 }
2383 }
2384
Leon Scroggins89c6d362009-07-15 16:54:37 -04002385 private void updateScreenshot(WebView view) {
2386 // If this is a bookmarked site, add a screenshot to the database.
2387 // FIXME: When should we update? Every time?
2388 // FIXME: Would like to make sure there is actually something to
2389 // draw, but the API for that (WebViewCore.pictureReady()) is not
2390 // currently accessible here.
Ben Murdochaac7aa62009-09-17 16:57:40 +01002391
Ben Murdoch87cc65d2010-06-29 20:34:10 +01002392 final Bitmap bm = createScreenshot(view, getDesiredThumbnailWidth(this),
2393 getDesiredThumbnailHeight(this));
Patrick Scottcb192b52010-04-14 14:38:55 -04002394 if (bm == null) {
2395 return;
Leon Scroggins89c6d362009-07-15 16:54:37 -04002396 }
Patrick Scottcb192b52010-04-14 14:38:55 -04002397
2398 final ContentResolver cr = getContentResolver();
2399 final String url = view.getUrl();
2400 final String originalUrl = view.getOriginalUrl();
2401
2402 new AsyncTask<Void, Void, Void>() {
2403 @Override
2404 protected Void doInBackground(Void... unused) {
Jeff Hamilton1a805652010-09-07 12:36:30 -07002405 Cursor cursor = null;
Patrick Scottcb192b52010-04-14 14:38:55 -04002406 try {
Jeff Hamilton1a805652010-09-07 12:36:30 -07002407 cursor = Bookmarks.queryCombinedForUrl(cr, originalUrl, url);
2408 if (cursor != null && cursor.moveToFirst()) {
2409 final ByteArrayOutputStream os = new ByteArrayOutputStream();
2410 bm.compress(Bitmap.CompressFormat.PNG, 100, os);
2411
2412 ContentValues values = new ContentValues();
2413 values.put(Images.THUMBNAIL, os.toByteArray());
2414 values.put(Images.URL, cursor.getString(0));
2415
2416 do {
2417 cr.update(Images.CONTENT_URI, values, null, null);
2418 } while (cursor.moveToNext());
Patrick Scottcb192b52010-04-14 14:38:55 -04002419 }
2420 } catch (IllegalStateException e) {
2421 // Ignore
2422 } finally {
Jeff Hamilton1a805652010-09-07 12:36:30 -07002423 if (cursor != null) cursor.close();
Patrick Scottcb192b52010-04-14 14:38:55 -04002424 }
2425 return null;
2426 }
2427 }.execute();
Leon Scroggins89c6d362009-07-15 16:54:37 -04002428 }
2429
Leon Scroggins06ec5f22009-09-17 12:46:04 -04002430 /**
Leon Scrogginsf8551612009-09-24 16:06:02 -04002431 * Return the desired width for thumbnail screenshots, which are stored in
2432 * the database, and used on the bookmarks screen.
2433 * @param context Context for finding out the density of the screen.
Jeff Hamiltonf3026372010-08-19 00:12:27 -05002434 * @return desired width for thumbnail screenshot.
Leon Scrogginsf8551612009-09-24 16:06:02 -04002435 */
2436 /* package */ static int getDesiredThumbnailWidth(Context context) {
Jeff Hamiltonf3026372010-08-19 00:12:27 -05002437 return context.getResources().getDimensionPixelOffset(R.dimen.bookmarkThumbnailWidth);
Leon Scrogginsf8551612009-09-24 16:06:02 -04002438 }
2439
2440 /**
2441 * Return the desired height for thumbnail screenshots, which are stored in
2442 * the database, and used on the bookmarks screen.
2443 * @param context Context for finding out the density of the screen.
Jeff Hamiltonf3026372010-08-19 00:12:27 -05002444 * @return desired height for thumbnail screenshot.
Leon Scrogginsf8551612009-09-24 16:06:02 -04002445 */
2446 /* package */ static int getDesiredThumbnailHeight(Context context) {
Jeff Hamiltonf3026372010-08-19 00:12:27 -05002447 return context.getResources().getDimensionPixelOffset(R.dimen.bookmarkThumbnailHeight);
Leon Scrogginsf8551612009-09-24 16:06:02 -04002448 }
Leon Scroggins06ec5f22009-09-17 12:46:04 -04002449
Ben Murdoch87cc65d2010-06-29 20:34:10 +01002450 private Bitmap createScreenshot(WebView view, int width, int height) {
Ben Murdochdcc2b6f2009-09-21 14:29:20 +01002451 Picture thumbnail = view.capturePicture();
Leon Scroggins45800572009-09-29 16:38:47 -04002452 if (thumbnail == null) {
2453 return null;
2454 }
Ben Murdoch87cc65d2010-06-29 20:34:10 +01002455 Bitmap bm = Bitmap.createBitmap(width, height, Bitmap.Config.RGB_565);
Ben Murdochdcc2b6f2009-09-21 14:29:20 +01002456 Canvas canvas = new Canvas(bm);
2457 // May need to tweak these values to determine what is the
2458 // best scale factor
Ben Murdoch2694e232009-09-29 09:41:11 +01002459 int thumbnailWidth = thumbnail.getWidth();
Ben Murdochae59c3f2009-10-20 18:30:28 +01002460 int thumbnailHeight = thumbnail.getHeight();
2461 float scaleFactorX = 1.0f;
2462 float scaleFactorY = 1.0f;
Ben Murdoch2694e232009-09-29 09:41:11 +01002463 if (thumbnailWidth > 0) {
Ben Murdoch87cc65d2010-06-29 20:34:10 +01002464 scaleFactorX = (float) width / (float)thumbnailWidth;
Ben Murdochae59c3f2009-10-20 18:30:28 +01002465 } else {
2466 return null;
Leon Scroggins06ec5f22009-09-17 12:46:04 -04002467 }
Ben Murdochae59c3f2009-10-20 18:30:28 +01002468
2469 if (view.getWidth() > view.getHeight() &&
2470 thumbnailHeight < view.getHeight() && thumbnailHeight > 0) {
2471 // If the device is in landscape and the page is shorter
2472 // than the height of the view, stretch the thumbnail to fill the
2473 // space.
Ben Murdoch87cc65d2010-06-29 20:34:10 +01002474 scaleFactorY = (float) height / (float)thumbnailHeight;
Ben Murdochae59c3f2009-10-20 18:30:28 +01002475 } else {
2476 // In the portrait case, this looks nice.
2477 scaleFactorY = scaleFactorX;
2478 }
2479
2480 canvas.scale(scaleFactorX, scaleFactorY);
2481
Ben Murdochdcc2b6f2009-09-21 14:29:20 +01002482 thumbnail.draw(canvas);
2483 return bm;
2484 }
2485
The Android Open Source Project0c908882009-03-03 19:32:16 -08002486 // -------------------------------------------------------------------------
Grace Kloba22ac16e2009-10-07 18:00:23 -07002487 // Helper function for WebViewClient.
The Android Open Source Project0c908882009-03-03 19:32:16 -08002488 //-------------------------------------------------------------------------
2489
2490 // Use in overrideUrlLoading
2491 /* package */ final static String SCHEME_WTAI = "wtai://wp/";
2492 /* package */ final static String SCHEME_WTAI_MC = "wtai://wp/mc;";
2493 /* package */ final static String SCHEME_WTAI_SD = "wtai://wp/sd;";
2494 /* package */ final static String SCHEME_WTAI_AP = "wtai://wp/ap;";
2495
Leon Scroggins92472e82010-02-17 16:32:28 -05002496 // Keep this initial progress in sync with initialProgressValue (* 100)
2497 // in ProgressTracker.cpp
2498 private final static int INITIAL_PROGRESS = 10;
2499
Grace Kloba22ac16e2009-10-07 18:00:23 -07002500 void onPageStarted(WebView view, String url, Bitmap favicon) {
2501 // when BrowserActivity just starts, onPageStarted may be called before
2502 // onResume as it is triggered from onCreate. Call resumeWebViewTimers
2503 // to start the timer. As we won't switch tabs while an activity is in
2504 // pause state, we can ensure calling resume and pause in pair.
2505 if (mActivityInPause) resumeWebViewTimers();
The Android Open Source Project0c908882009-03-03 19:32:16 -08002506
Grace Kloba22ac16e2009-10-07 18:00:23 -07002507 resetLockIcon(url);
2508 setUrlTitle(url, null);
2509 setFavicon(favicon);
Leon Scroggins8cf8f682009-11-04 11:13:50 -08002510 // Show some progress so that the user knows the page is beginning to
2511 // load
Leon Scroggins92472e82010-02-17 16:32:28 -05002512 onProgressChanged(view, INITIAL_PROGRESS);
Grace Kloba22ac16e2009-10-07 18:00:23 -07002513 mDidStopLoad = false;
Grace Kloba22ac16e2009-10-07 18:00:23 -07002514 if (!mIsNetworkUp) createAndShowNetworkDialog();
Leon Scroggins III8e4fbf12010-08-17 16:58:15 -04002515 endActionMode();
Grace Kloba22ac16e2009-10-07 18:00:23 -07002516 if (mSettings.isTracing()) {
2517 String host;
The Android Open Source Project0c908882009-03-03 19:32:16 -08002518 try {
Grace Kloba22ac16e2009-10-07 18:00:23 -07002519 WebAddress uri = new WebAddress(url);
Bjorn Bringert131ab512010-10-12 16:25:47 +01002520 host = uri.getHost();
Grace Kloba22ac16e2009-10-07 18:00:23 -07002521 } catch (android.net.ParseException ex) {
2522 host = "browser";
The Android Open Source Project0c908882009-03-03 19:32:16 -08002523 }
Grace Kloba22ac16e2009-10-07 18:00:23 -07002524 host = host.replace('.', '_');
2525 host += ".trace";
2526 mInTrace = true;
2527 Debug.startMethodTracing(host, 20 * 1024 * 1024);
2528 }
The Android Open Source Project0c908882009-03-03 19:32:16 -08002529
Grace Kloba22ac16e2009-10-07 18:00:23 -07002530 // Performance probe
2531 if (false) {
2532 mStart = SystemClock.uptimeMillis();
2533 mProcessStart = Process.getElapsedCpuTime();
2534 long[] sysCpu = new long[7];
2535 if (Process.readProcFile("/proc/stat", SYSTEM_CPU_FORMAT, null,
2536 sysCpu, null)) {
2537 mUserStart = sysCpu[0] + sysCpu[1];
2538 mSystemStart = sysCpu[2];
2539 mIdleStart = sysCpu[3];
2540 mIrqStart = sysCpu[4] + sysCpu[5] + sysCpu[6];
2541 }
2542 mUiStart = SystemClock.currentThreadTimeMillis();
2543 }
2544 }
2545
2546 void onPageFinished(WebView view, String url) {
2547 // Reset the title and icon in case we stopped a provisional load.
2548 resetTitleAndIcon(view);
2549 // Update the lock icon image only once we are done loading
2550 updateLockIconToLatest();
2551 // pause the WebView timer and release the wake lock if it is finished
2552 // while BrowserActivity is in pause state.
2553 if (mActivityInPause && pauseWebViewTimers()) {
2554 if (mWakeLock.isHeld()) {
2555 mHandler.removeMessages(RELEASE_WAKELOCK);
2556 mWakeLock.release();
2557 }
2558 }
2559
2560 // Performance probe
2561 if (false) {
2562 long[] sysCpu = new long[7];
2563 if (Process.readProcFile("/proc/stat", SYSTEM_CPU_FORMAT, null,
2564 sysCpu, null)) {
2565 String uiInfo = "UI thread used "
2566 + (SystemClock.currentThreadTimeMillis() - mUiStart)
2567 + " ms";
2568 if (LOGD_ENABLED) {
2569 Log.d(LOGTAG, uiInfo);
2570 }
2571 //The string that gets written to the log
2572 String performanceString = "It took total "
2573 + (SystemClock.uptimeMillis() - mStart)
2574 + " ms clock time to load the page."
2575 + "\nbrowser process used "
2576 + (Process.getElapsedCpuTime() - mProcessStart)
2577 + " ms, user processes used "
2578 + (sysCpu[0] + sysCpu[1] - mUserStart) * 10
2579 + " ms, kernel used "
2580 + (sysCpu[2] - mSystemStart) * 10
2581 + " ms, idle took " + (sysCpu[3] - mIdleStart) * 10
2582 + " ms and irq took "
2583 + (sysCpu[4] + sysCpu[5] + sysCpu[6] - mIrqStart)
2584 * 10 + " ms, " + uiInfo;
2585 if (LOGD_ENABLED) {
2586 Log.d(LOGTAG, performanceString + "\nWebpage: " + url);
2587 }
2588 if (url != null) {
2589 // strip the url to maintain consistency
2590 String newUrl = new String(url);
2591 if (newUrl.startsWith("http://www.")) {
2592 newUrl = newUrl.substring(11);
2593 } else if (newUrl.startsWith("http://")) {
2594 newUrl = newUrl.substring(7);
2595 } else if (newUrl.startsWith("https://www.")) {
2596 newUrl = newUrl.substring(12);
2597 } else if (newUrl.startsWith("https://")) {
2598 newUrl = newUrl.substring(8);
2599 }
2600 if (LOGD_ENABLED) {
2601 Log.d(LOGTAG, newUrl + " loaded");
2602 }
Grace Kloba5b078b52009-06-24 20:23:41 -07002603 }
2604 }
Grace Kloba22ac16e2009-10-07 18:00:23 -07002605 }
Grace Kloba5b078b52009-06-24 20:23:41 -07002606
Grace Kloba22ac16e2009-10-07 18:00:23 -07002607 if (mInTrace) {
2608 mInTrace = false;
2609 Debug.stopMethodTracing();
2610 }
2611 }
The Android Open Source Project0c908882009-03-03 19:32:16 -08002612
Grace Klobae7fe26b2010-06-28 16:23:33 -07002613 private void closeEmptyChildTab() {
2614 Tab current = mTabControl.getCurrentTab();
2615 if (current != null
2616 && current.getWebView().copyBackForwardList().getSize() == 0) {
2617 Tab parent = current.getParentTab();
2618 if (parent != null) {
2619 switchToTab(mTabControl.getTabIndex(parent));
2620 closeTab(current);
2621 }
2622 }
2623 }
2624
Grace Kloba22ac16e2009-10-07 18:00:23 -07002625 boolean shouldOverrideUrlLoading(WebView view, String url) {
Jeff Hamilton47654f42010-09-07 09:57:51 -05002626 if (view.isPrivateBrowsingEnabled()) {
2627 // Don't allow urls to leave the browser app when in private browsing mode
2628 loadUrl(view, url);
2629 return true;
2630 }
2631
Grace Kloba22ac16e2009-10-07 18:00:23 -07002632 if (url.startsWith(SCHEME_WTAI)) {
2633 // wtai://wp/mc;number
2634 // number=string(phone-number)
2635 if (url.startsWith(SCHEME_WTAI_MC)) {
2636 Intent intent = new Intent(Intent.ACTION_VIEW,
2637 Uri.parse(WebView.SCHEME_TEL +
2638 url.substring(SCHEME_WTAI_MC.length())));
2639 startActivity(intent);
Grace Klobae7fe26b2010-06-28 16:23:33 -07002640 // before leaving BrowserActivity, close the empty child tab.
2641 // If a new tab is created through JavaScript open to load this
2642 // url, we would like to close it as we will load this url in a
2643 // different Activity.
2644 closeEmptyChildTab();
The Android Open Source Project0c908882009-03-03 19:32:16 -08002645 return true;
2646 }
Grace Kloba22ac16e2009-10-07 18:00:23 -07002647 // wtai://wp/sd;dtmf
2648 // dtmf=string(dialstring)
2649 if (url.startsWith(SCHEME_WTAI_SD)) {
2650 // TODO: only send when there is active voice connection
2651 return false;
2652 }
2653 // wtai://wp/ap;number;name
2654 // number=string(phone-number)
2655 // name=string
2656 if (url.startsWith(SCHEME_WTAI_AP)) {
2657 // TODO
2658 return false;
2659 }
2660 }
The Android Open Source Project0c908882009-03-03 19:32:16 -08002661
Grace Kloba22ac16e2009-10-07 18:00:23 -07002662 // The "about:" schemes are internal to the browser; don't want these to
2663 // be dispatched to other apps.
2664 if (url.startsWith("about:")) {
The Android Open Source Project0c908882009-03-03 19:32:16 -08002665 return false;
2666 }
2667
Jeff Davidson43610292010-07-16 16:03:58 -07002668 // If this is a Google search, attempt to add an RLZ string (if one isn't already present).
2669 if (rlzProviderPresent()) {
2670 Uri siteUri = Uri.parse(url);
2671 if (needsRlzString(siteUri)) {
2672 String rlz = null;
2673 Cursor cur = null;
2674 try {
2675 cur = getContentResolver().query(getRlzUri(), null, null, null, null);
2676 if (cur != null && cur.moveToFirst() && !cur.isNull(0)) {
2677 url = siteUri.buildUpon()
2678 .appendQueryParameter("rlz", cur.getString(0))
2679 .build().toString();
2680 }
2681 } finally {
2682 if (cur != null) {
2683 cur.close();
2684 }
2685 }
2686 loadUrl(view, url);
2687 return true;
2688 }
2689 }
2690
Grace Kloba22ac16e2009-10-07 18:00:23 -07002691 Intent intent;
2692 // perform generic parsing of the URI to turn it into an Intent.
2693 try {
2694 intent = Intent.parseUri(url, Intent.URI_INTENT_SCHEME);
2695 } catch (URISyntaxException ex) {
2696 Log.w("Browser", "Bad URI " + url + ": " + ex.getMessage());
2697 return false;
The Android Open Source Project0c908882009-03-03 19:32:16 -08002698 }
2699
Grace Kloba22ac16e2009-10-07 18:00:23 -07002700 // check whether the intent can be resolved. If not, we will see
2701 // whether we can download it from the Market.
2702 if (getPackageManager().resolveActivity(intent, 0) == null) {
2703 String packagename = intent.getPackage();
2704 if (packagename != null) {
2705 intent = new Intent(Intent.ACTION_VIEW, Uri
2706 .parse("market://search?q=pname:" + packagename));
2707 intent.addCategory(Intent.CATEGORY_BROWSABLE);
2708 startActivity(intent);
Grace Klobae7fe26b2010-06-28 16:23:33 -07002709 // before leaving BrowserActivity, close the empty child tab.
2710 // If a new tab is created through JavaScript open to load this
2711 // url, we would like to close it as we will load this url in a
2712 // different Activity.
2713 closeEmptyChildTab();
Grace Kloba22ac16e2009-10-07 18:00:23 -07002714 return true;
The Android Open Source Project0c908882009-03-03 19:32:16 -08002715 } else {
2716 return false;
2717 }
2718 }
2719
Grace Kloba22ac16e2009-10-07 18:00:23 -07002720 // sanitize the Intent, ensuring web pages can not bypass browser
2721 // security (only access to BROWSABLE activities).
2722 intent.addCategory(Intent.CATEGORY_BROWSABLE);
2723 intent.setComponent(null);
2724 try {
2725 if (startActivityIfNeeded(intent, -1)) {
Grace Klobae7fe26b2010-06-28 16:23:33 -07002726 // before leaving BrowserActivity, close the empty child tab.
2727 // If a new tab is created through JavaScript open to load this
2728 // url, we would like to close it as we will load this url in a
2729 // different Activity.
2730 closeEmptyChildTab();
The Android Open Source Project0c908882009-03-03 19:32:16 -08002731 return true;
2732 }
Grace Kloba22ac16e2009-10-07 18:00:23 -07002733 } catch (ActivityNotFoundException ex) {
2734 // ignore the error. If no application can handle the URL,
2735 // eg about:blank, assume the browser can handle it.
2736 }
The Android Open Source Project0c908882009-03-03 19:32:16 -08002737
Grace Kloba22ac16e2009-10-07 18:00:23 -07002738 if (mMenuIsDown) {
Michael Kolb68792c82010-08-09 16:39:18 -07002739 openTab(url, false);
Grace Kloba22ac16e2009-10-07 18:00:23 -07002740 closeOptionsMenu();
The Android Open Source Project0c908882009-03-03 19:32:16 -08002741 return true;
2742 }
Grace Kloba22ac16e2009-10-07 18:00:23 -07002743 return false;
2744 }
The Android Open Source Project0c908882009-03-03 19:32:16 -08002745
Jeff Davidson43610292010-07-16 16:03:58 -07002746 // Determine whether the RLZ provider is present on the system.
2747 private boolean rlzProviderPresent() {
2748 if (mIsProviderPresent == null) {
2749 PackageManager pm = getPackageManager();
2750 mIsProviderPresent = pm.resolveContentProvider(BrowserSettings.RLZ_PROVIDER, 0) != null;
2751 }
2752 return mIsProviderPresent;
2753 }
2754
2755 // Retrieve the RLZ access point string and cache the URI used to retrieve RLZ values.
2756 private Uri getRlzUri() {
2757 if (mRlzUri == null) {
2758 String ap = getResources().getString(R.string.rlz_access_point);
2759 mRlzUri = Uri.withAppendedPath(BrowserSettings.RLZ_PROVIDER_URI, ap);
2760 }
2761 return mRlzUri;
2762 }
2763
2764 // Determine if this URI appears to be for a Google search and does not have an RLZ parameter.
2765 // Taken largely from Chrome source, src/chrome/browser/google_url_tracker.cc
2766 private static boolean needsRlzString(Uri uri) {
Bill Napierc50e71a2010-08-27 14:03:03 -07002767 String scheme = uri.getScheme();
2768 if (("http".equals(scheme) || "https".equals(scheme)) &&
2769 (uri.getQueryParameter("q") != null) && (uri.getQueryParameter("rlz") == null)) {
Jeff Davidson43610292010-07-16 16:03:58 -07002770 String host = uri.getHost();
2771 if (host == null) {
2772 return false;
2773 }
2774 String[] hostComponents = host.split("\\.");
2775
2776 if (hostComponents.length < 2) {
2777 return false;
2778 }
2779 int googleComponent = hostComponents.length - 2;
2780 String component = hostComponents[googleComponent];
2781 if (!"google".equals(component)) {
2782 if (hostComponents.length < 3 ||
2783 (!"co".equals(component) && !"com".equals(component))) {
2784 return false;
2785 }
2786 googleComponent = hostComponents.length - 3;
2787 if (!"google".equals(hostComponents[googleComponent])) {
2788 return false;
2789 }
2790 }
2791
2792 // Google corp network handling.
2793 if (googleComponent > 0 && "corp".equals(hostComponents[googleComponent - 1])) {
2794 return false;
2795 }
2796
2797 return true;
2798 }
2799 return false;
2800 }
2801
Grace Kloba22ac16e2009-10-07 18:00:23 -07002802 // -------------------------------------------------------------------------
2803 // Helper function for WebChromeClient
2804 // -------------------------------------------------------------------------
The Android Open Source Project0c908882009-03-03 19:32:16 -08002805
Grace Kloba22ac16e2009-10-07 18:00:23 -07002806 void onProgressChanged(WebView view, int newProgress) {
Michael Kolba2b2ba82010-08-04 17:54:03 -07002807
2808 // On the phone, the fake title bar will always cover up the
2809 // regular title bar (or the regular one is offscreen), so only the
2810 // fake title bar needs to change its progress
2811 mFakeTitleBar.setProgress(newProgress);
The Android Open Source Project0c908882009-03-03 19:32:16 -08002812
Grace Kloba22ac16e2009-10-07 18:00:23 -07002813 if (newProgress == 100) {
2814 // onProgressChanged() may continue to be called after the main
2815 // frame has finished loading, as any remaining sub frames continue
2816 // to load. We'll only get called once though with newProgress as
2817 // 100 when everything is loaded. (onPageFinished is called once
2818 // when the main frame completes loading regardless of the state of
2819 // any sub frames so calls to onProgressChanges may continue after
2820 // onPageFinished has executed)
2821 if (mInLoad) {
2822 mInLoad = false;
Leon Scrogginsa27ff192009-09-14 12:58:04 -04002823 updateInLoadMenuItems();
Grace Kloba22ac16e2009-10-07 18:00:23 -07002824 // If the options menu is open, leave the title bar
2825 if (!mOptionsMenuOpen || !mIconView) {
2826 hideFakeTitleBar();
The Android Open Source Projectcb9a0bb2009-03-11 12:11:58 -07002827 }
The Android Open Source Project0c908882009-03-03 19:32:16 -08002828 }
Leon Scrogginsaa37e7f2010-03-05 11:51:20 -05002829 } else {
2830 if (!mInLoad) {
2831 // onPageFinished may have already been called but a subframe is
2832 // still loading and updating the progress. Reset mInLoad and
2833 // update the menu items.
2834 mInLoad = true;
2835 updateInLoadMenuItems();
2836 }
2837 // When the page first begins to load, the Activity may still be
2838 // paused, in which case showFakeTitleBar will do nothing. Call
2839 // again as the page continues to load so that it will be shown.
2840 // (Calling it will the fake title bar is already showing will also
2841 // do nothing.
Grace Kloba22ac16e2009-10-07 18:00:23 -07002842 if (!mOptionsMenuOpen || mIconView) {
2843 // This page has begun to load, so show the title bar
2844 showFakeTitleBar();
The Android Open Source Project0c908882009-03-03 19:32:16 -08002845 }
2846 }
Grace Kloba22ac16e2009-10-07 18:00:23 -07002847 }
The Android Open Source Project0c908882009-03-03 19:32:16 -08002848
Grace Kloba22ac16e2009-10-07 18:00:23 -07002849 void onShowCustomView(View view, WebChromeClient.CustomViewCallback callback) {
Derek Sollenberger8ff57db2009-12-08 15:39:55 -05002850 // if a view already exists then immediately terminate the new one
2851 if (mCustomView != null) {
2852 callback.onCustomViewHidden();
Grace Kloba22ac16e2009-10-07 18:00:23 -07002853 return;
Derek Sollenberger8ff57db2009-12-08 15:39:55 -05002854 }
Grace Kloba22ac16e2009-10-07 18:00:23 -07002855
2856 // Add the custom view to its container.
2857 mCustomViewContainer.addView(view, COVER_SCREEN_GRAVITY_CENTER);
2858 mCustomView = view;
2859 mCustomViewCallback = callback;
2860 // Save the menu state and set it to empty while the custom
2861 // view is showing.
2862 mOldMenuState = mMenuState;
2863 mMenuState = EMPTY_MENU;
2864 // Hide the content view.
2865 mContentView.setVisibility(View.GONE);
2866 // Finally show the custom view container.
Andrei Popescu163ab742009-10-20 17:58:23 +01002867 setStatusBarVisibility(false);
Grace Kloba22ac16e2009-10-07 18:00:23 -07002868 mCustomViewContainer.setVisibility(View.VISIBLE);
2869 mCustomViewContainer.bringToFront();
2870 }
2871
2872 void onHideCustomView() {
2873 if (mCustomView == null)
2874 return;
2875
2876 // Hide the custom view.
2877 mCustomView.setVisibility(View.GONE);
2878 // Remove the custom view from its container.
2879 mCustomViewContainer.removeView(mCustomView);
2880 mCustomView = null;
2881 // Reset the old menu state.
2882 mMenuState = mOldMenuState;
2883 mOldMenuState = EMPTY_MENU;
2884 mCustomViewContainer.setVisibility(View.GONE);
2885 mCustomViewCallback.onCustomViewHidden();
2886 // Show the content view.
Andrei Popescu163ab742009-10-20 17:58:23 +01002887 setStatusBarVisibility(true);
Grace Kloba22ac16e2009-10-07 18:00:23 -07002888 mContentView.setVisibility(View.VISIBLE);
2889 }
2890
2891 Bitmap getDefaultVideoPoster() {
2892 if (mDefaultVideoPoster == null) {
2893 mDefaultVideoPoster = BitmapFactory.decodeResource(
2894 getResources(), R.drawable.default_video_poster);
Patrick Scott3918d442009-08-04 13:22:29 -04002895 }
Grace Kloba22ac16e2009-10-07 18:00:23 -07002896 return mDefaultVideoPoster;
2897 }
Patrick Scott3918d442009-08-04 13:22:29 -04002898
Grace Kloba22ac16e2009-10-07 18:00:23 -07002899 View getVideoLoadingProgressView() {
2900 if (mVideoProgressView == null) {
2901 LayoutInflater inflater = LayoutInflater.from(BrowserActivity.this);
2902 mVideoProgressView = inflater.inflate(
2903 R.layout.video_loading_progress, null);
The Android Open Source Project0c908882009-03-03 19:32:16 -08002904 }
Grace Kloba22ac16e2009-10-07 18:00:23 -07002905 return mVideoProgressView;
2906 }
The Android Open Source Project0c908882009-03-03 19:32:16 -08002907
Leon Scroggins8d5fa432009-10-02 15:55:59 -04002908 /*
2909 * The Object used to inform the WebView of the file to upload.
2910 */
2911 private ValueCallback<Uri> mUploadMessage;
Ben Murdoch62b1b7e2010-05-19 20:38:56 +01002912 private String mCameraFilePath;
Leon Scroggins8d5fa432009-10-02 15:55:59 -04002913
Ben Murdoch62b1b7e2010-05-19 20:38:56 +01002914 void openFileChooser(ValueCallback<Uri> uploadMsg, String acceptType) {
2915
2916 final String imageMimeType = "image/*";
Ben Murdoch6af492a2010-06-15 12:38:17 +01002917 final String videoMimeType = "video/*";
Ben Murdoch039bd472010-07-21 21:26:57 +01002918 final String audioMimeType = "audio/*";
Ben Murdochb50d7402010-07-16 12:42:22 +01002919 final String mediaSourceKey = "capture";
Ben Murdoch6af492a2010-06-15 12:38:17 +01002920 final String mediaSourceValueCamera = "camera";
Ben Murdochb50d7402010-07-16 12:42:22 +01002921 final String mediaSourceValueFileSystem = "filesystem";
Ben Murdoch6af492a2010-06-15 12:38:17 +01002922 final String mediaSourceValueCamcorder = "camcorder";
Ben Murdoch039bd472010-07-21 21:26:57 +01002923 final String mediaSourceValueMicrophone = "microphone";
Ben Murdoch62b1b7e2010-05-19 20:38:56 +01002924
Ben Murdoch039bd472010-07-21 21:26:57 +01002925 // media source can be 'filesystem' or 'camera' or 'camcorder' or 'microphone'.
Ben Murdoch6af492a2010-06-15 12:38:17 +01002926 String mediaSource = "";
Ben Murdoch62b1b7e2010-05-19 20:38:56 +01002927
Ben Murdoch6af492a2010-06-15 12:38:17 +01002928 // We add the camera intent if there was no accept type (or '*/*' or 'image/*').
Ben Murdoch62b1b7e2010-05-19 20:38:56 +01002929 boolean addCameraIntent = true;
Ben Murdoch6af492a2010-06-15 12:38:17 +01002930 // We add the camcorder intent if there was no accept type (or '*/*' or 'video/*').
2931 boolean addCamcorderIntent = true;
Ben Murdoch62b1b7e2010-05-19 20:38:56 +01002932
Ben Murdoch6af492a2010-06-15 12:38:17 +01002933 if (mUploadMessage != null) {
2934 // Already a file picker operation in progress.
2935 return;
2936 }
2937
Grace Kloba22ac16e2009-10-07 18:00:23 -07002938 mUploadMessage = uploadMsg;
Ben Murdoch62b1b7e2010-05-19 20:38:56 +01002939
2940 // Parse the accept type.
2941 String params[] = acceptType.split(";");
2942 String mimeType = params[0];
2943
2944 for (String p : params) {
2945 String[] keyValue = p.split("=");
2946 if (keyValue.length == 2) {
2947 // Process key=value parameters.
Ben Murdoch6af492a2010-06-15 12:38:17 +01002948 if (mediaSourceKey.equals(keyValue[0])) {
2949 mediaSource = keyValue[1];
Ben Murdoch62b1b7e2010-05-19 20:38:56 +01002950 }
2951 }
2952 }
2953
2954 // This intent will display the standard OPENABLE file picker.
Grace Kloba22ac16e2009-10-07 18:00:23 -07002955 Intent i = new Intent(Intent.ACTION_GET_CONTENT);
2956 i.addCategory(Intent.CATEGORY_OPENABLE);
Ben Murdoch62b1b7e2010-05-19 20:38:56 +01002957
2958 // Create an intent to add to the standard file picker that will
2959 // capture an image from the camera. We'll combine this intent with
2960 // the standard OPENABLE picker unless the web developer specifically
2961 // requested the camera or gallery be opened by passing a parameter
2962 // in the accept type.
2963 Intent cameraIntent = new Intent(MediaStore.ACTION_IMAGE_CAPTURE);
2964 File externalDataDir = Environment.getExternalStoragePublicDirectory(
2965 Environment.DIRECTORY_DCIM);
2966 File cameraDataDir = new File(externalDataDir.getAbsolutePath() +
2967 File.separator + "browser-photos");
2968 cameraDataDir.mkdirs();
2969 mCameraFilePath = cameraDataDir.getAbsolutePath() + File.separator +
2970 System.currentTimeMillis() + ".jpg";
2971 cameraIntent.putExtra(MediaStore.EXTRA_OUTPUT, Uri.fromFile(new File(mCameraFilePath)));
2972
Ben Murdoch6af492a2010-06-15 12:38:17 +01002973 Intent camcorderIntent = new Intent(MediaStore.ACTION_VIDEO_CAPTURE);
2974
Ben Murdoch039bd472010-07-21 21:26:57 +01002975 Intent soundRecIntent = new Intent(MediaStore.Audio.Media.RECORD_SOUND_ACTION);
2976
Ben Murdoch62b1b7e2010-05-19 20:38:56 +01002977 if (mimeType.equals(imageMimeType)) {
2978 i.setType(imageMimeType);
Ben Murdoch6af492a2010-06-15 12:38:17 +01002979 addCamcorderIntent = false;
2980 if (mediaSource.equals(mediaSourceValueCamera)) {
Ben Murdoch62b1b7e2010-05-19 20:38:56 +01002981 // Specified 'image/*' and requested the camera, so go ahead and launch the camera
2982 // directly.
2983 BrowserActivity.this.startActivityForResult(cameraIntent, FILE_SELECTED);
2984 return;
Ben Murdochb50d7402010-07-16 12:42:22 +01002985 } else if (mediaSource.equals(mediaSourceValueFileSystem)) {
2986 // Specified filesytem as the source, so don't want to consider the camera.
Ben Murdoch62b1b7e2010-05-19 20:38:56 +01002987 addCameraIntent = false;
2988 }
Ben Murdoch6af492a2010-06-15 12:38:17 +01002989 } else if (mimeType.equals(videoMimeType)) {
2990 i.setType(videoMimeType);
2991 addCameraIntent = false;
2992 // The camcorder saves it's own file and returns it to us in the intent, so
2993 // we don't need to generate one here.
2994 mCameraFilePath = null;
2995
2996 if (mediaSource.equals(mediaSourceValueCamcorder)) {
Ben Murdoch039bd472010-07-21 21:26:57 +01002997 // Specified 'video/*' and requested the camcorder, so go ahead and launch the
2998 // camcorder directly.
Ben Murdoch6af492a2010-06-15 12:38:17 +01002999 BrowserActivity.this.startActivityForResult(camcorderIntent, FILE_SELECTED);
3000 return;
Ben Murdochb50d7402010-07-16 12:42:22 +01003001 } else if (mediaSource.equals(mediaSourceValueFileSystem)) {
3002 // Specified filesystem as the source, so don't want to consider the camcorder.
Ben Murdoch6af492a2010-06-15 12:38:17 +01003003 addCamcorderIntent = false;
3004 }
Ben Murdoch039bd472010-07-21 21:26:57 +01003005 } else if (mimeType.equals(audioMimeType)) {
3006 i.setType(audioMimeType);
3007 addCameraIntent = false;
3008 addCamcorderIntent = false;
3009 if (mediaSource.equals(mediaSourceValueMicrophone)) {
3010 // Specified 'audio/*' and requested microphone, so go ahead and launch the sound
3011 // recorder.
3012 BrowserActivity.this.startActivityForResult(soundRecIntent, FILE_SELECTED);
3013 return;
3014 }
3015 // On a default system, there is no single option to open an audio "gallery". Both the
3016 // sound recorder and music browser respond to the OPENABLE/audio/* intent unlike the
3017 // image/* and video/* OPENABLE intents where the image / video gallery are the only
3018 // respondants (and so the user is not prompted by default).
Ben Murdoch62b1b7e2010-05-19 20:38:56 +01003019 } else {
3020 i.setType("*/*");
3021 }
3022
Ben Murdoch6af492a2010-06-15 12:38:17 +01003023 // Combine the chooser and the extra choices (like camera or camcorder)
Ben Murdoch62b1b7e2010-05-19 20:38:56 +01003024 Intent chooser = new Intent(Intent.ACTION_CHOOSER);
3025 chooser.putExtra(Intent.EXTRA_INTENT, i);
3026
Ben Murdoch6af492a2010-06-15 12:38:17 +01003027 Vector<Intent> extraInitialIntents = new Vector<Intent>(0);
3028
Ben Murdoch62b1b7e2010-05-19 20:38:56 +01003029 if (addCameraIntent) {
Ben Murdoch6af492a2010-06-15 12:38:17 +01003030 extraInitialIntents.add(cameraIntent);
3031 }
3032
3033 if (addCamcorderIntent) {
3034 extraInitialIntents.add(camcorderIntent);
3035 }
3036
3037 if (extraInitialIntents.size() > 0) {
3038 Intent[] extraIntents = new Intent[extraInitialIntents.size()];
3039 chooser.putExtra(Intent.EXTRA_INITIAL_INTENTS, extraInitialIntents.toArray(extraIntents));
Ben Murdoch62b1b7e2010-05-19 20:38:56 +01003040 }
3041
3042 chooser.putExtra(Intent.EXTRA_TITLE, getString(R.string.choose_upload));
3043 BrowserActivity.this.startActivityForResult(chooser, FILE_SELECTED);
Grace Kloba22ac16e2009-10-07 18:00:23 -07003044 }
3045
3046 // -------------------------------------------------------------------------
3047 // Implement functions for DownloadListener
3048 // -------------------------------------------------------------------------
3049
The Android Open Source Project0c908882009-03-03 19:32:16 -08003050 /**
3051 * Notify the host application a download should be done, or that
3052 * the data should be streamed if a streaming viewer is available.
3053 * @param url The full url to the content that should be downloaded
3054 * @param contentDisposition Content-disposition http header, if
3055 * present.
3056 * @param mimetype The mimetype of the content reported by the server
3057 * @param contentLength The file size reported by the server
3058 */
3059 public void onDownloadStart(String url, String userAgent,
3060 String contentDisposition, String mimetype, long contentLength) {
3061 // if we're dealing wih A/V content that's not explicitly marked
3062 // for download, check if it's streamable.
3063 if (contentDisposition == null
Patrick Scotte1fb9662009-08-31 14:31:52 -04003064 || !contentDisposition.regionMatches(
3065 true, 0, "attachment", 0, 10)) {
The Android Open Source Project0c908882009-03-03 19:32:16 -08003066 // query the package manager to see if there's a registered handler
3067 // that matches.
3068 Intent intent = new Intent(Intent.ACTION_VIEW);
3069 intent.setDataAndType(Uri.parse(url), mimetype);
Patrick Scotte1fb9662009-08-31 14:31:52 -04003070 ResolveInfo info = getPackageManager().resolveActivity(intent,
3071 PackageManager.MATCH_DEFAULT_ONLY);
3072 if (info != null) {
3073 ComponentName myName = getComponentName();
3074 // If we resolved to ourselves, we don't want to attempt to
3075 // load the url only to try and download it again.
3076 if (!myName.getPackageName().equals(
3077 info.activityInfo.packageName)
3078 || !myName.getClassName().equals(
3079 info.activityInfo.name)) {
3080 // someone (other than us) knows how to handle this mime
3081 // type with this scheme, don't download.
3082 try {
3083 startActivity(intent);
3084 return;
3085 } catch (ActivityNotFoundException ex) {
3086 if (LOGD_ENABLED) {
3087 Log.d(LOGTAG, "activity not found for " + mimetype
3088 + " over " + Uri.parse(url).getScheme(),
3089 ex);
3090 }
3091 // Best behavior is to fall back to a download in this
3092 // case
The Android Open Source Project0c908882009-03-03 19:32:16 -08003093 }
The Android Open Source Project0c908882009-03-03 19:32:16 -08003094 }
3095 }
3096 }
3097 onDownloadStartNoStream(url, userAgent, contentDisposition, mimetype, contentLength);
3098 }
3099
Kristian Monsenfa52d172010-03-25 18:29:21 +00003100 // This is to work around the fact that java.net.URI throws Exceptions
3101 // instead of just encoding URL's properly
3102 // Helper method for onDownloadStartNoStream
3103 private static String encodePath(String path) {
3104 char[] chars = path.toCharArray();
3105
3106 boolean needed = false;
3107 for (char c : chars) {
3108 if (c == '[' || c == ']') {
3109 needed = true;
3110 break;
3111 }
3112 }
3113 if (needed == false) {
3114 return path;
3115 }
3116
3117 StringBuilder sb = new StringBuilder("");
3118 for (char c : chars) {
3119 if (c == '[' || c == ']') {
3120 sb.append('%');
3121 sb.append(Integer.toHexString(c));
3122 } else {
3123 sb.append(c);
3124 }
3125 }
3126
3127 return sb.toString();
3128 }
3129
The Android Open Source Project0c908882009-03-03 19:32:16 -08003130 /**
3131 * Notify the host application a download should be done, even if there
3132 * is a streaming viewer available for thise type.
3133 * @param url The full url to the content that should be downloaded
3134 * @param contentDisposition Content-disposition http header, if
3135 * present.
3136 * @param mimetype The mimetype of the content reported by the server
3137 * @param contentLength The file size reported by the server
3138 */
3139 /*package */ void onDownloadStartNoStream(String url, String userAgent,
3140 String contentDisposition, String mimetype, long contentLength) {
3141
3142 String filename = URLUtil.guessFileName(url,
3143 contentDisposition, mimetype);
3144
3145 // Check to see if we have an SDCard
3146 String status = Environment.getExternalStorageState();
3147 if (!status.equals(Environment.MEDIA_MOUNTED)) {
3148 int title;
3149 String msg;
3150
3151 // Check to see if the SDCard is busy, same as the music app
3152 if (status.equals(Environment.MEDIA_SHARED)) {
3153 msg = getString(R.string.download_sdcard_busy_dlg_msg);
3154 title = R.string.download_sdcard_busy_dlg_title;
3155 } else {
3156 msg = getString(R.string.download_no_sdcard_dlg_msg, filename);
3157 title = R.string.download_no_sdcard_dlg_title;
3158 }
3159
3160 new AlertDialog.Builder(this)
3161 .setTitle(title)
3162 .setIcon(android.R.drawable.ic_dialog_alert)
3163 .setMessage(msg)
3164 .setPositiveButton(R.string.ok, null)
3165 .show();
3166 return;
3167 }
3168
Kristian Monsenfa52d172010-03-25 18:29:21 +00003169 // java.net.URI is a lot stricter than KURL so we have to encode some
3170 // extra characters. Fix for b 2538060 and b 1634719
3171 WebAddress webAddress;
The Android Open Source Project0c908882009-03-03 19:32:16 -08003172 try {
Kristian Monsenfa52d172010-03-25 18:29:21 +00003173 webAddress = new WebAddress(url);
Bjorn Bringert131ab512010-10-12 16:25:47 +01003174 webAddress.setPath(encodePath(webAddress.getPath()));
The Android Open Source Project0c908882009-03-03 19:32:16 -08003175 } catch (Exception e) {
Kristian Monsenfa52d172010-03-25 18:29:21 +00003176 // This only happens for very bad urls, we want to chatch the
3177 // exception here
3178 Log.e(LOGTAG, "Exception trying to parse url:" + url);
The Android Open Source Project0c908882009-03-03 19:32:16 -08003179 return;
3180 }
3181
Leon Scrogginsc6076532010-10-22 15:06:59 -04003182 String addressString = webAddress.toString();
3183 Uri uri = Uri.parse(addressString);
3184 DownloadManager.Request request = new DownloadManager.Request(uri);
3185 request.setMimeType(mimetype);
3186 request.setDestinationInExternalFilesDir(this, null, filename);
3187 request.setDescription(webAddress.getHost());
Vasu Noric54d3282010-10-29 13:31:09 -07003188 String cookies = CookieManager.getInstance().getCookie(url);
3189 request.addRequestHeader("cookie", cookies);
Leon Scroggins09ccfc72010-10-28 16:22:24 -04003190 request.setNotificationVisibility(
3191 DownloadManager.Request.VISIBILITY_VISIBLE_NOTIFY_COMPLETED);
The Android Open Source Project0c908882009-03-03 19:32:16 -08003192 if (mimetype == null) {
Leon Scrogginsc6076532010-10-22 15:06:59 -04003193 ContentValues values = new ContentValues();
3194 values.put(FetchUrlMimeType.URI, addressString);
3195 // XXX: Have to use the old url since the cookies were stored using the
3196 // old percent-encoded url.
Leon Scrogginsc6076532010-10-22 15:06:59 -04003197 values.put(FetchUrlMimeType.COOKIE_DATA, cookies);
3198 values.put(FetchUrlMimeType.USER_AGENT, userAgent);
3199
The Android Open Source Project0c908882009-03-03 19:32:16 -08003200 // We must have long pressed on a link or image to download it. We
3201 // are not sure of the mimetype in this case, so do a head request
Leon Scrogginsc6076532010-10-22 15:06:59 -04003202 new FetchUrlMimeType(this, request).execute(values);
The Android Open Source Project0c908882009-03-03 19:32:16 -08003203 } else {
Leon Scrogginsc6076532010-10-22 15:06:59 -04003204 DownloadManager manager
3205 = (DownloadManager) getSystemService(Context.DOWNLOAD_SERVICE);
3206 manager.enqueue(request);
The Android Open Source Project0c908882009-03-03 19:32:16 -08003207 }
Leon Scroggins9191a7f2010-03-18 14:44:44 -04003208 Toast.makeText(this, R.string.download_pending, Toast.LENGTH_SHORT)
3209 .show();
The Android Open Source Project0c908882009-03-03 19:32:16 -08003210 }
3211
Grace Kloba22ac16e2009-10-07 18:00:23 -07003212 // -------------------------------------------------------------------------
3213
The Android Open Source Project0c908882009-03-03 19:32:16 -08003214 /**
3215 * Resets the lock icon. This method is called when we start a new load and
3216 * know the url to be loaded.
3217 */
3218 private void resetLockIcon(String url) {
3219 // Save the lock-icon state (we revert to it if the load gets cancelled)
Grace Kloba22ac16e2009-10-07 18:00:23 -07003220 mTabControl.getCurrentTab().resetLockIcon(url);
The Android Open Source Project0c908882009-03-03 19:32:16 -08003221 updateLockIconImage(LOCK_ICON_UNSECURE);
3222 }
3223
The Android Open Source Project0c908882009-03-03 19:32:16 -08003224 /**
Leon Scroggins3bbb6ca2009-09-09 12:51:10 -04003225 * Update the lock icon to correspond to our latest state.
3226 */
Grace Kloba22ac16e2009-10-07 18:00:23 -07003227 private void updateLockIconToLatest() {
Leon Scroggins91f65fc2010-06-29 13:52:39 -04003228 Tab t = mTabControl.getCurrentTab();
3229 if (t != null) {
3230 updateLockIconImage(t.getLockIconType());
3231 }
Leon Scroggins3bbb6ca2009-09-09 12:51:10 -04003232 }
3233
3234 /**
The Android Open Source Project0c908882009-03-03 19:32:16 -08003235 * Updates the lock-icon image in the title-bar.
3236 */
3237 private void updateLockIconImage(int lockIconType) {
3238 Drawable d = null;
3239 if (lockIconType == LOCK_ICON_SECURE) {
3240 d = mSecLockIcon;
3241 } else if (lockIconType == LOCK_ICON_MIXED) {
3242 d = mMixLockIcon;
3243 }
Leon Scroggins68579392009-09-15 15:31:54 -04003244 mTitleBar.setLock(d);
Michael Kolba2b2ba82010-08-04 17:54:03 -07003245 mFakeTitleBar.setLock(d);
The Android Open Source Project0c908882009-03-03 19:32:16 -08003246 }
3247
3248 /**
3249 * Displays a page-info dialog.
3250 * @param tab The tab to show info about
3251 * @param fromShowSSLCertificateOnError The flag that indicates whether
3252 * this dialog was opened from the SSL-certificate-on-error dialog or
3253 * not. This is important, since we need to know whether to return to
3254 * the parent dialog or simply dismiss.
3255 */
Grace Kloba22ac16e2009-10-07 18:00:23 -07003256 private void showPageInfo(final Tab tab,
The Android Open Source Project0c908882009-03-03 19:32:16 -08003257 final boolean fromShowSSLCertificateOnError) {
3258 final LayoutInflater factory = LayoutInflater
3259 .from(this);
3260
3261 final View pageInfoView = factory.inflate(R.layout.page_info, null);
3262
3263 final WebView view = tab.getWebView();
3264
3265 String url = null;
3266 String title = null;
3267
3268 if (view == null) {
3269 url = tab.getUrl();
3270 title = tab.getTitle();
3271 } else if (view == mTabControl.getCurrentWebView()) {
3272 // Use the cached title and url if this is the current WebView
3273 url = mUrl;
3274 title = mTitle;
3275 } else {
3276 url = view.getUrl();
3277 title = view.getTitle();
3278 }
3279
3280 if (url == null) {
3281 url = "";
3282 }
3283 if (title == null) {
3284 title = "";
3285 }
3286
3287 ((TextView) pageInfoView.findViewById(R.id.address)).setText(url);
3288 ((TextView) pageInfoView.findViewById(R.id.title)).setText(title);
3289
3290 mPageInfoView = tab;
Leon Scrogginsc7b92f82010-01-11 18:17:31 -05003291 mPageInfoFromShowSSLCertificateOnError = fromShowSSLCertificateOnError;
The Android Open Source Project0c908882009-03-03 19:32:16 -08003292
3293 AlertDialog.Builder alertDialogBuilder =
3294 new AlertDialog.Builder(this)
3295 .setTitle(R.string.page_info).setIcon(android.R.drawable.ic_dialog_info)
3296 .setView(pageInfoView)
3297 .setPositiveButton(
3298 R.string.ok,
3299 new DialogInterface.OnClickListener() {
3300 public void onClick(DialogInterface dialog,
3301 int whichButton) {
3302 mPageInfoDialog = null;
3303 mPageInfoView = null;
The Android Open Source Project0c908882009-03-03 19:32:16 -08003304
3305 // if we came here from the SSL error dialog
3306 if (fromShowSSLCertificateOnError) {
3307 // go back to the SSL error dialog
3308 showSSLCertificateOnError(
3309 mSSLCertificateOnErrorView,
3310 mSSLCertificateOnErrorHandler,
3311 mSSLCertificateOnErrorError);
3312 }
3313 }
3314 })
3315 .setOnCancelListener(
3316 new DialogInterface.OnCancelListener() {
3317 public void onCancel(DialogInterface dialog) {
3318 mPageInfoDialog = null;
3319 mPageInfoView = null;
The Android Open Source Project0c908882009-03-03 19:32:16 -08003320
3321 // if we came here from the SSL error dialog
3322 if (fromShowSSLCertificateOnError) {
3323 // go back to the SSL error dialog
3324 showSSLCertificateOnError(
3325 mSSLCertificateOnErrorView,
3326 mSSLCertificateOnErrorHandler,
3327 mSSLCertificateOnErrorError);
3328 }
3329 }
3330 });
3331
3332 // if we have a main top-level page SSL certificate set or a certificate
3333 // error
3334 if (fromShowSSLCertificateOnError ||
3335 (view != null && view.getCertificate() != null)) {
3336 // add a 'View Certificate' button
3337 alertDialogBuilder.setNeutralButton(
3338 R.string.view_certificate,
3339 new DialogInterface.OnClickListener() {
3340 public void onClick(DialogInterface dialog,
3341 int whichButton) {
3342 mPageInfoDialog = null;
3343 mPageInfoView = null;
The Android Open Source Project0c908882009-03-03 19:32:16 -08003344
3345 // if we came here from the SSL error dialog
3346 if (fromShowSSLCertificateOnError) {
3347 // go back to the SSL error dialog
3348 showSSLCertificateOnError(
3349 mSSLCertificateOnErrorView,
3350 mSSLCertificateOnErrorHandler,
3351 mSSLCertificateOnErrorError);
3352 } else {
3353 // otherwise, display the top-most certificate from
3354 // the chain
3355 if (view.getCertificate() != null) {
3356 showSSLCertificate(tab);
3357 }
3358 }
3359 }
3360 });
3361 }
3362
3363 mPageInfoDialog = alertDialogBuilder.show();
3364 }
3365
3366 /**
3367 * Displays the main top-level page SSL certificate dialog
3368 * (accessible from the Page-Info dialog).
3369 * @param tab The tab to show certificate for.
3370 */
Grace Kloba22ac16e2009-10-07 18:00:23 -07003371 private void showSSLCertificate(final Tab tab) {
The Android Open Source Project0c908882009-03-03 19:32:16 -08003372 final View certificateView =
3373 inflateCertificateView(tab.getWebView().getCertificate());
3374 if (certificateView == null) {
3375 return;
3376 }
3377
3378 LayoutInflater factory = LayoutInflater.from(this);
3379
3380 final LinearLayout placeholder =
3381 (LinearLayout)certificateView.findViewById(R.id.placeholder);
3382
3383 LinearLayout ll = (LinearLayout) factory.inflate(
3384 R.layout.ssl_success, placeholder);
3385 ((TextView)ll.findViewById(R.id.success))
3386 .setText(R.string.ssl_certificate_is_valid);
3387
3388 mSSLCertificateView = tab;
3389 mSSLCertificateDialog =
3390 new AlertDialog.Builder(this)
3391 .setTitle(R.string.ssl_certificate).setIcon(
3392 R.drawable.ic_dialog_browser_certificate_secure)
3393 .setView(certificateView)
3394 .setPositiveButton(R.string.ok,
3395 new DialogInterface.OnClickListener() {
3396 public void onClick(DialogInterface dialog,
3397 int whichButton) {
3398 mSSLCertificateDialog = null;
3399 mSSLCertificateView = null;
3400
3401 showPageInfo(tab, false);
3402 }
3403 })
3404 .setOnCancelListener(
3405 new DialogInterface.OnCancelListener() {
3406 public void onCancel(DialogInterface dialog) {
3407 mSSLCertificateDialog = null;
3408 mSSLCertificateView = null;
3409
3410 showPageInfo(tab, false);
3411 }
3412 })
3413 .show();
3414 }
3415
3416 /**
3417 * Displays the SSL error certificate dialog.
3418 * @param view The target web-view.
3419 * @param handler The SSL error handler responsible for cancelling the
3420 * connection that resulted in an SSL error or proceeding per user request.
3421 * @param error The SSL error object.
3422 */
Grace Kloba22ac16e2009-10-07 18:00:23 -07003423 void showSSLCertificateOnError(
The Android Open Source Project0c908882009-03-03 19:32:16 -08003424 final WebView view, final SslErrorHandler handler, final SslError error) {
3425
3426 final View certificateView =
3427 inflateCertificateView(error.getCertificate());
3428 if (certificateView == null) {
3429 return;
3430 }
3431
3432 LayoutInflater factory = LayoutInflater.from(this);
3433
3434 final LinearLayout placeholder =
3435 (LinearLayout)certificateView.findViewById(R.id.placeholder);
3436
3437 if (error.hasError(SslError.SSL_UNTRUSTED)) {
3438 LinearLayout ll = (LinearLayout)factory
3439 .inflate(R.layout.ssl_warning, placeholder);
3440 ((TextView)ll.findViewById(R.id.warning))
3441 .setText(R.string.ssl_untrusted);
3442 }
3443
3444 if (error.hasError(SslError.SSL_IDMISMATCH)) {
3445 LinearLayout ll = (LinearLayout)factory
3446 .inflate(R.layout.ssl_warning, placeholder);
3447 ((TextView)ll.findViewById(R.id.warning))
3448 .setText(R.string.ssl_mismatch);
3449 }
3450
3451 if (error.hasError(SslError.SSL_EXPIRED)) {
3452 LinearLayout ll = (LinearLayout)factory
3453 .inflate(R.layout.ssl_warning, placeholder);
3454 ((TextView)ll.findViewById(R.id.warning))
3455 .setText(R.string.ssl_expired);
3456 }
3457
3458 if (error.hasError(SslError.SSL_NOTYETVALID)) {
3459 LinearLayout ll = (LinearLayout)factory
3460 .inflate(R.layout.ssl_warning, placeholder);
3461 ((TextView)ll.findViewById(R.id.warning))
3462 .setText(R.string.ssl_not_yet_valid);
3463 }
3464
3465 mSSLCertificateOnErrorHandler = handler;
3466 mSSLCertificateOnErrorView = view;
3467 mSSLCertificateOnErrorError = error;
3468 mSSLCertificateOnErrorDialog =
3469 new AlertDialog.Builder(this)
3470 .setTitle(R.string.ssl_certificate).setIcon(
3471 R.drawable.ic_dialog_browser_certificate_partially_secure)
3472 .setView(certificateView)
3473 .setPositiveButton(R.string.ok,
3474 new DialogInterface.OnClickListener() {
3475 public void onClick(DialogInterface dialog,
3476 int whichButton) {
3477 mSSLCertificateOnErrorDialog = null;
3478 mSSLCertificateOnErrorView = null;
3479 mSSLCertificateOnErrorHandler = null;
3480 mSSLCertificateOnErrorError = null;
3481
Grace Kloba22ac16e2009-10-07 18:00:23 -07003482 view.getWebViewClient().onReceivedSslError(
3483 view, handler, error);
The Android Open Source Project0c908882009-03-03 19:32:16 -08003484 }
3485 })
3486 .setNeutralButton(R.string.page_info_view,
3487 new DialogInterface.OnClickListener() {
3488 public void onClick(DialogInterface dialog,
3489 int whichButton) {
3490 mSSLCertificateOnErrorDialog = null;
3491
3492 // do not clear the dialog state: we will
3493 // need to show the dialog again once the
3494 // user is done exploring the page-info details
3495
3496 showPageInfo(mTabControl.getTabFromView(view),
3497 true);
3498 }
3499 })
3500 .setOnCancelListener(
3501 new DialogInterface.OnCancelListener() {
3502 public void onCancel(DialogInterface dialog) {
3503 mSSLCertificateOnErrorDialog = null;
3504 mSSLCertificateOnErrorView = null;
3505 mSSLCertificateOnErrorHandler = null;
3506 mSSLCertificateOnErrorError = null;
3507
Grace Kloba22ac16e2009-10-07 18:00:23 -07003508 view.getWebViewClient().onReceivedSslError(
3509 view, handler, error);
The Android Open Source Project0c908882009-03-03 19:32:16 -08003510 }
3511 })
3512 .show();
3513 }
3514
3515 /**
3516 * Inflates the SSL certificate view (helper method).
3517 * @param certificate The SSL certificate.
3518 * @return The resultant certificate view with issued-to, issued-by,
3519 * issued-on, expires-on, and possibly other fields set.
3520 * If the input certificate is null, returns null.
3521 */
3522 private View inflateCertificateView(SslCertificate certificate) {
3523 if (certificate == null) {
3524 return null;
3525 }
3526
3527 LayoutInflater factory = LayoutInflater.from(this);
3528
3529 View certificateView = factory.inflate(
3530 R.layout.ssl_certificate, null);
3531
3532 // issued to:
3533 SslCertificate.DName issuedTo = certificate.getIssuedTo();
3534 if (issuedTo != null) {
3535 ((TextView) certificateView.findViewById(R.id.to_common))
3536 .setText(issuedTo.getCName());
3537 ((TextView) certificateView.findViewById(R.id.to_org))
3538 .setText(issuedTo.getOName());
3539 ((TextView) certificateView.findViewById(R.id.to_org_unit))
3540 .setText(issuedTo.getUName());
3541 }
3542
3543 // issued by:
3544 SslCertificate.DName issuedBy = certificate.getIssuedBy();
3545 if (issuedBy != null) {
3546 ((TextView) certificateView.findViewById(R.id.by_common))
3547 .setText(issuedBy.getCName());
3548 ((TextView) certificateView.findViewById(R.id.by_org))
3549 .setText(issuedBy.getOName());
3550 ((TextView) certificateView.findViewById(R.id.by_org_unit))
3551 .setText(issuedBy.getUName());
3552 }
3553
3554 // issued on:
Brian Carlstrom95a2e4a2010-03-02 10:02:34 -08003555 String issuedOn = formatCertificateDate(
3556 certificate.getValidNotBeforeDate());
The Android Open Source Project0c908882009-03-03 19:32:16 -08003557 ((TextView) certificateView.findViewById(R.id.issued_on))
3558 .setText(issuedOn);
3559
3560 // expires on:
Brian Carlstrom95a2e4a2010-03-02 10:02:34 -08003561 String expiresOn = formatCertificateDate(
3562 certificate.getValidNotAfterDate());
The Android Open Source Project0c908882009-03-03 19:32:16 -08003563 ((TextView) certificateView.findViewById(R.id.expires_on))
3564 .setText(expiresOn);
3565
3566 return certificateView;
3567 }
3568
3569 /**
Brian Carlstrom95a2e4a2010-03-02 10:02:34 -08003570 * Formats the certificate date to a properly localized date string.
The Android Open Source Project0c908882009-03-03 19:32:16 -08003571 * @return Properly localized version of the certificate date string and
Brian Carlstrom95a2e4a2010-03-02 10:02:34 -08003572 * the "" if it fails to localize.
The Android Open Source Project0c908882009-03-03 19:32:16 -08003573 */
Brian Carlstrom95a2e4a2010-03-02 10:02:34 -08003574 private String formatCertificateDate(Date certificateDate) {
3575 if (certificateDate == null) {
3576 return "";
The Android Open Source Project0c908882009-03-03 19:32:16 -08003577 }
Brian Carlstrom95a2e4a2010-03-02 10:02:34 -08003578 String formattedDate = DateFormat.getDateFormat(this).format(certificateDate);
3579 if (formattedDate == null) {
3580 return "";
3581 }
3582 return formattedDate;
The Android Open Source Project0c908882009-03-03 19:32:16 -08003583 }
3584
3585 /**
3586 * Displays an http-authentication dialog.
3587 */
Bjorn Bringert25738922010-10-12 10:56:20 +01003588 void showHttpAuthentication(final HttpAuthHandler handler, String host, String realm) {
3589 mHttpAuthenticationDialog = new HttpAuthenticationDialog(this, host, realm);
3590 mHttpAuthenticationDialog.setOkListener(new HttpAuthenticationDialog.OkListener() {
3591 public void onOk(String host, String realm, String username, String password) {
3592 BrowserActivity.this.setHttpAuthUsernamePassword(host, realm, username, password);
3593 handler.proceed(username, password);
3594 mHttpAuthenticationDialog = null;
3595 }
3596 });
3597 mHttpAuthenticationDialog.setCancelListener(new HttpAuthenticationDialog.CancelListener() {
3598 public void onCancel() {
3599 handler.cancel();
3600 BrowserActivity.this.resetTitleAndRevertLockIcon();
3601 mHttpAuthenticationDialog = null;
3602 }
3603 });
3604 mHttpAuthenticationDialog.show();
The Android Open Source Project0c908882009-03-03 19:32:16 -08003605 }
3606
3607 public int getProgress() {
3608 WebView w = mTabControl.getCurrentWebView();
3609 if (w != null) {
3610 return w.getProgress();
3611 } else {
3612 return 100;
3613 }
3614 }
3615
3616 /**
3617 * Set HTTP authentication password.
3618 *
3619 * @param host The host for the password
3620 * @param realm The realm for the password
3621 * @param username The username for the password. If it is null, it means
3622 * password can't be saved.
3623 * @param password The password
3624 */
3625 public void setHttpAuthUsernamePassword(String host, String realm,
3626 String username,
3627 String password) {
Steve Block95a53b22010-03-25 17:24:58 +00003628 WebView w = getTopWindow();
The Android Open Source Project0c908882009-03-03 19:32:16 -08003629 if (w != null) {
3630 w.setHttpAuthUsernamePassword(host, realm, username, password);
3631 }
3632 }
3633
3634 /**
3635 * connectivity manager says net has come or gone... inform the user
3636 * @param up true if net has come up, false if net has gone down
3637 */
3638 public void onNetworkToggle(boolean up) {
3639 if (up == mIsNetworkUp) {
3640 return;
3641 } else if (up) {
3642 mIsNetworkUp = true;
3643 if (mAlertDialog != null) {
3644 mAlertDialog.cancel();
3645 mAlertDialog = null;
3646 }
3647 } else {
3648 mIsNetworkUp = false;
Patrick Scotteb6ab2a2009-09-16 10:00:17 -04003649 if (mInLoad) {
3650 createAndShowNetworkDialog();
3651 }
The Android Open Source Project0c908882009-03-03 19:32:16 -08003652 }
3653 WebView w = mTabControl.getCurrentWebView();
3654 if (w != null) {
3655 w.setNetworkAvailable(up);
3656 }
3657 }
3658
Grace Kloba22ac16e2009-10-07 18:00:23 -07003659 boolean isNetworkUp() {
3660 return mIsNetworkUp;
3661 }
3662
Patrick Scotteb6ab2a2009-09-16 10:00:17 -04003663 // This method shows the network dialog alerting the user that the net is
3664 // down. It will only show the dialog if mAlertDialog is null.
3665 private void createAndShowNetworkDialog() {
3666 if (mAlertDialog == null) {
3667 mAlertDialog = new AlertDialog.Builder(this)
3668 .setTitle(R.string.loadSuspendedTitle)
3669 .setMessage(R.string.loadSuspended)
3670 .setPositiveButton(R.string.ok, null)
3671 .show();
3672 }
3673 }
3674
Michael Kolbe421c242010-10-04 19:29:01 -07003675 /**
3676 * callback from ComboPage when bookmark/history selection
3677 */
3678 @Override
3679 public void onUrlSelected(String url, boolean newTab) {
3680 removeComboView();
3681 if (!TextUtils.isEmpty(url)) {
3682 if (newTab) {
3683 openTab(url, false);
3684 } else {
3685 final Tab currentTab = mTabControl.getCurrentTab();
3686 dismissSubWindow(currentTab);
3687 loadUrl(getTopWindow(), url);
3688 }
3689 }
3690 }
3691
3692 /**
3693 * callback from ComboPage when dismissed
3694 */
3695 @Override
3696 public void onComboCanceled() {
3697 removeComboView();
3698 }
3699
3700 /**
3701 * dismiss the ComboPage
3702 */
3703 /* package */ void removeComboView() {
3704 if (mComboView != null) {
3705 mContentView.removeView(mComboView);
3706 mTitleBar.setVisibility(View.VISIBLE);
3707 mMenuState = R.id.MAIN_MENU;
3708 attachTabToContentView(mTabControl.getCurrentTab());
3709 getTopWindow().requestFocus();
3710 mComboView = null;
3711 }
3712 }
3713
3714 /**
3715 * callback from ComboPage when clear history is requested
3716 */
3717 public void onRemoveParentChildRelationships() {
3718 mTabControl.removeParentChildRelationShips();
3719 }
3720
The Android Open Source Project0c908882009-03-03 19:32:16 -08003721 @Override
3722 protected void onActivityResult(int requestCode, int resultCode,
3723 Intent intent) {
Grace Klobabb394f32009-11-19 10:26:37 -08003724 if (getTopWindow() == null) return;
The Android Open Source Project0c908882009-03-03 19:32:16 -08003725 switch (requestCode) {
Leon Scrogginsfde97462010-01-11 13:06:21 -05003726 case PREFERENCES_PAGE:
3727 if (resultCode == RESULT_OK && intent != null) {
3728 String action = intent.getStringExtra(Intent.EXTRA_TEXT);
3729 if (BrowserSettings.PREF_CLEAR_HISTORY.equals(action)) {
3730 mTabControl.removeParentChildRelationShips();
3731 }
3732 }
The Android Open Source Project0c908882009-03-03 19:32:16 -08003733 break;
Leon Scroggins8d5fa432009-10-02 15:55:59 -04003734 // Choose a file from the file picker.
3735 case FILE_SELECTED:
3736 if (null == mUploadMessage) break;
3737 Uri result = intent == null || resultCode != RESULT_OK ? null
3738 : intent.getData();
Ben Murdoch62b1b7e2010-05-19 20:38:56 +01003739
3740 // As we ask the camera to save the result of the user taking
3741 // a picture, the camera application does not return anything other
3742 // than RESULT_OK. So we need to check whether the file we expected
3743 // was written to disk in the in the case that we
3744 // did not get an intent returned but did get a RESULT_OK. If it was,
3745 // we assume that this result has came back from the camera.
3746 if (result == null && intent == null && resultCode == RESULT_OK) {
3747 File cameraFile = new File(mCameraFilePath);
3748 if (cameraFile.exists()) {
3749 result = Uri.fromFile(cameraFile);
Ben Murdoch07d34732010-05-27 18:34:46 +01003750 // Broadcast to the media scanner that we have a new photo
3751 // so it will be added into the gallery for the user.
3752 sendBroadcast(new Intent(Intent.ACTION_MEDIA_SCANNER_SCAN_FILE, result));
Ben Murdoch62b1b7e2010-05-19 20:38:56 +01003753 }
3754 }
Leon Scroggins8d5fa432009-10-02 15:55:59 -04003755 mUploadMessage.onReceiveValue(result);
3756 mUploadMessage = null;
Ben Murdoch62b1b7e2010-05-19 20:38:56 +01003757 mCameraFilePath = null;
Leon Scroggins8d5fa432009-10-02 15:55:59 -04003758 break;
The Android Open Source Project0c908882009-03-03 19:32:16 -08003759 default:
3760 break;
3761 }
Leon Scroggins30444232009-09-04 18:36:20 -04003762 getTopWindow().requestFocus();
The Android Open Source Project0c908882009-03-03 19:32:16 -08003763 }
3764
3765 /*
3766 * This method is called as a result of the user selecting the options
Leon Scrogginsf08809b2010-01-21 09:27:46 -05003767 * menu to see the download window. It shows the download window on top of
3768 * the current window.
The Android Open Source Project0c908882009-03-03 19:32:16 -08003769 */
Leon Scroggins IIIa682a3c2010-09-27 12:32:40 -04003770 private void viewDownloads() {
3771 Intent intent = new Intent(DownloadManager.ACTION_VIEW_DOWNLOADS);
3772 startActivity(intent);
The Android Open Source Project0c908882009-03-03 19:32:16 -08003773 }
3774
Leon Scroggins160a7e72009-08-14 18:28:01 -04003775 /**
3776 * Open the Go page.
3777 * @param startWithHistory If true, open starting on the history tab.
3778 * Otherwise, start with the bookmarks tab.
Leon Scroggins160a7e72009-08-14 18:28:01 -04003779 */
Michael Kolbe421c242010-10-04 19:29:01 -07003780 /* package */ void bookmarksOrHistoryPicker(boolean startWithHistory) {
Leon Scrogginsbc922852010-10-22 12:15:27 -04003781 if (mTabControl.getCurrentWebView() == null) {
The Android Open Source Project0c908882009-03-03 19:32:16 -08003782 return;
3783 }
Michael Kolbe421c242010-10-04 19:29:01 -07003784 Bundle extras = new Bundle();
Leon Scroggins30444232009-09-04 18:36:20 -04003785 // Disable opening in a new window if we have maxed out the windows
Leon Scrogginsbc922852010-10-22 12:15:27 -04003786 extras.putBoolean(BrowserBookmarksPage.EXTRA_DISABLE_WINDOW,
3787 !mTabControl.canCreateNewTab());
Michael Kolbe421c242010-10-04 19:29:01 -07003788
3789 mComboView = new CombinedBookmarkHistoryView(this,
3790 startWithHistory ? CombinedBookmarkHistoryView.FRAGMENT_ID_HISTORY
3791 : CombinedBookmarkHistoryView.FRAGMENT_ID_BOOKMARKS,
3792 extras);
3793 removeTabFromContentView(mTabControl.getCurrentTab());
3794 mTitleBar.setVisibility(View.GONE);
3795 hideFakeTitleBar();
3796 mContentView.addView(mComboView, COVER_SCREEN_PARAMS);
The Android Open Source Project0c908882009-03-03 19:32:16 -08003797 }
3798
3799 // Called when loading from context menu or LOAD_URL message
Leon Scroggins92472e82010-02-17 16:32:28 -05003800 private void loadUrlFromContext(WebView view, String url) {
The Android Open Source Project0c908882009-03-03 19:32:16 -08003801 // In case the user enters nothing.
3802 if (url != null && url.length() != 0 && view != null) {
3803 url = smartUrlFilter(url);
Grace Kloba22ac16e2009-10-07 18:00:23 -07003804 if (!view.getWebViewClient().shouldOverrideUrlLoading(view, url)) {
Leon Scroggins92472e82010-02-17 16:32:28 -05003805 loadUrl(view, url);
The Android Open Source Project0c908882009-03-03 19:32:16 -08003806 }
3807 }
3808 }
3809
Leon Scroggins92472e82010-02-17 16:32:28 -05003810 /**
3811 * Load the URL into the given WebView and update the title bar
3812 * to reflect the new load. Call this instead of WebView.loadUrl
3813 * directly.
3814 * @param view The WebView used to load url.
3815 * @param url The URL to load.
3816 */
3817 private void loadUrl(WebView view, String url) {
3818 updateTitleBarForNewLoad(view, url);
3819 view.loadUrl(url);
3820 }
3821
3822 /**
3823 * Load UrlData into a Tab and update the title bar to reflect the new
3824 * load. Call this instead of UrlData.loadIn directly.
3825 * @param t The Tab used to load.
3826 * @param data The UrlData being loaded.
3827 */
3828 private void loadUrlDataIn(Tab t, UrlData data) {
3829 updateTitleBarForNewLoad(t.getWebView(), data.mUrl);
3830 data.loadIn(t);
3831 }
3832
3833 /**
3834 * If the WebView is the top window, update the title bar to reflect
3835 * loading the new URL. i.e. set its text, clear the favicon (which
3836 * will be set once the page begins loading), and set the progress to
3837 * INITIAL_PROGRESS to show that the page has begun to load. Called
3838 * by loadUrl and loadUrlDataIn.
3839 * @param view The WebView that is starting a load.
3840 * @param url The URL that is being loaded.
3841 */
3842 private void updateTitleBarForNewLoad(WebView view, String url) {
3843 if (view == getTopWindow()) {
3844 setUrlTitle(url, null);
3845 setFavicon(null);
3846 onProgressChanged(view, INITIAL_PROGRESS);
3847 }
3848 }
3849
The Android Open Source Project0c908882009-03-03 19:32:16 -08003850 private String smartUrlFilter(Uri inUri) {
3851 if (inUri != null) {
3852 return smartUrlFilter(inUri.toString());
3853 }
3854 return null;
3855 }
3856
Feng Qianb34f87a2009-03-24 21:27:26 -07003857 protected static final Pattern ACCEPTED_URI_SCHEMA = Pattern.compile(
The Android Open Source Project0c908882009-03-03 19:32:16 -08003858 "(?i)" + // switch on case insensitive matching
3859 "(" + // begin group for schema
3860 "(?:http|https|file):\\/\\/" +
Mitsuru Oshima25ad8ab2009-06-10 16:26:07 -07003861 "|(?:inline|data|about|content|javascript):" +
The Android Open Source Project0c908882009-03-03 19:32:16 -08003862 ")" +
3863 "(.*)" );
3864
3865 /**
3866 * Attempts to determine whether user input is a URL or search
3867 * terms. Anything with a space is passed to search.
3868 *
3869 * Converts to lowercase any mistakenly uppercased schema (i.e.,
3870 * "Http://" converts to "http://"
3871 *
3872 * @return Original or modified URL
3873 *
3874 */
3875 String smartUrlFilter(String url) {
3876
3877 String inUrl = url.trim();
3878 boolean hasSpace = inUrl.indexOf(' ') != -1;
3879
3880 Matcher matcher = ACCEPTED_URI_SCHEMA.matcher(inUrl);
3881 if (matcher.matches()) {
The Android Open Source Project0c908882009-03-03 19:32:16 -08003882 // force scheme to lowercase
3883 String scheme = matcher.group(1);
3884 String lcScheme = scheme.toLowerCase();
3885 if (!lcScheme.equals(scheme)) {
Mitsuru Oshima123ecfb2009-05-18 19:11:14 -07003886 inUrl = lcScheme + matcher.group(2);
3887 }
3888 if (hasSpace) {
3889 inUrl = inUrl.replace(" ", "%20");
The Android Open Source Project0c908882009-03-03 19:32:16 -08003890 }
3891 return inUrl;
3892 }
Leon Scroggins956cf012010-10-07 13:51:57 -04003893 if (!hasSpace) {
Dan Egnor5ee906c2009-11-18 12:11:49 -08003894 if (Patterns.WEB_URL.matcher(inUrl).matches()) {
The Android Open Source Project0c908882009-03-03 19:32:16 -08003895 return URLUtil.guessUrl(inUrl);
3896 }
3897 }
3898
Leon Scroggins956cf012010-10-07 13:51:57 -04003899 // FIXME: Is this the correct place to add to searches?
3900 // what if someone else calls this function?
3901
The Android Open Source Project0c908882009-03-03 19:32:16 -08003902 Browser.addSearchUrl(mResolver, inUrl);
Grace Kloba47fdfdb2009-06-30 11:15:34 -07003903 return URLUtil.composeSearchUrl(inUrl, QuickSearch_G, QUERY_PLACE_HOLDER);
The Android Open Source Project0c908882009-03-03 19:32:16 -08003904 }
3905
Ben Murdochbff2d602009-07-01 20:19:05 +01003906 /* package */ void setShouldShowErrorConsole(boolean flag) {
3907 if (flag == mShouldShowErrorConsole) {
3908 // Nothing to do.
3909 return;
3910 }
Leon Scroggins IIIa9e35b62010-09-16 15:30:15 -04003911 Tab t = mTabControl.getCurrentTab();
3912 if (t == null) {
3913 // There is no current tab so we cannot toggle the error console
3914 return;
3915 }
Ben Murdochbff2d602009-07-01 20:19:05 +01003916
3917 mShouldShowErrorConsole = flag;
3918
Leon Scroggins IIIa9e35b62010-09-16 15:30:15 -04003919 ErrorConsoleView errorConsole = t.getErrorConsole(true);
Ben Murdochbff2d602009-07-01 20:19:05 +01003920
3921 if (flag) {
3922 // Setting the show state of the console will cause it's the layout to be inflated.
3923 if (errorConsole.numberOfErrors() > 0) {
3924 errorConsole.showConsole(ErrorConsoleView.SHOW_MINIMIZED);
3925 } else {
3926 errorConsole.showConsole(ErrorConsoleView.SHOW_NONE);
3927 }
3928
3929 // Now we can add it to the main view.
3930 mErrorConsoleContainer.addView(errorConsole,
Romain Guy15b8ec62010-01-08 15:06:43 -08003931 new LinearLayout.LayoutParams(ViewGroup.LayoutParams.MATCH_PARENT,
Ben Murdochbff2d602009-07-01 20:19:05 +01003932 ViewGroup.LayoutParams.WRAP_CONTENT));
3933 } else {
3934 mErrorConsoleContainer.removeView(errorConsole);
3935 }
3936
3937 }
3938
Grace Kloba22ac16e2009-10-07 18:00:23 -07003939 boolean shouldShowErrorConsole() {
3940 return mShouldShowErrorConsole;
3941 }
3942
Andrei Popescu163ab742009-10-20 17:58:23 +01003943 private void setStatusBarVisibility(boolean visible) {
3944 int flag = visible ? 0 : WindowManager.LayoutParams.FLAG_FULLSCREEN;
3945 getWindow().setFlags(flag, WindowManager.LayoutParams.FLAG_FULLSCREEN);
3946 }
3947
Andrei Popescu56199cc2010-01-12 22:39:16 +00003948
3949 private void sendNetworkType(String type, String subtype) {
3950 WebView w = mTabControl.getCurrentWebView();
3951 if (w != null) {
3952 w.setNetworkType(type, subtype);
3953 }
3954 }
3955
Grace Klobaeb6eef42009-09-15 17:56:32 -07003956 final static int LOCK_ICON_UNSECURE = 0;
3957 final static int LOCK_ICON_SECURE = 1;
3958 final static int LOCK_ICON_MIXED = 2;
The Android Open Source Project0c908882009-03-03 19:32:16 -08003959
The Android Open Source Project0c908882009-03-03 19:32:16 -08003960 private BrowserSettings mSettings;
3961 private TabControl mTabControl;
3962 private ContentResolver mResolver;
3963 private FrameLayout mContentView;
Andrei Popescuadc008d2009-06-26 14:11:30 +01003964 private View mCustomView;
3965 private FrameLayout mCustomViewContainer;
Andrei Popescuc9b55562009-07-07 10:51:15 +01003966 private WebChromeClient.CustomViewCallback mCustomViewCallback;
The Android Open Source Project0c908882009-03-03 19:32:16 -08003967
3968 // FIXME, temp address onPrepareMenu performance problem. When we move everything out of
3969 // view, we should rewrite this.
3970 private int mCurrentMenuState = 0;
3971 private int mMenuState = R.id.MAIN_MENU;
Andrei Popescuadc008d2009-06-26 14:11:30 +01003972 private int mOldMenuState = EMPTY_MENU;
The Android Open Source Project0c908882009-03-03 19:32:16 -08003973 private static final int EMPTY_MENU = -1;
3974 private Menu mMenu;
3975
The Android Open Source Project0c908882009-03-03 19:32:16 -08003976 // Used to prevent chording to result in firing two shortcuts immediately
3977 // one after another. Fixes bug 1211714.
3978 boolean mCanChord;
3979
3980 private boolean mInLoad;
3981 private boolean mIsNetworkUp;
Ben Murdochb7cc8b42009-09-28 10:59:09 +01003982 private boolean mDidStopLoad;
The Android Open Source Project0c908882009-03-03 19:32:16 -08003983
Cary Clark1f10cbf2010-03-22 11:45:23 -04003984 /* package */ boolean mActivityInPause = true;
The Android Open Source Project0c908882009-03-03 19:32:16 -08003985
3986 private boolean mMenuIsDown;
3987
The Android Open Source Project0c908882009-03-03 19:32:16 -08003988 private static boolean mInTrace;
3989
3990 // Performance probe
3991 private static final int[] SYSTEM_CPU_FORMAT = new int[] {
3992 Process.PROC_SPACE_TERM | Process.PROC_COMBINE,
3993 Process.PROC_SPACE_TERM | Process.PROC_OUT_LONG, // 1: user time
3994 Process.PROC_SPACE_TERM | Process.PROC_OUT_LONG, // 2: nice time
3995 Process.PROC_SPACE_TERM | Process.PROC_OUT_LONG, // 3: sys time
3996 Process.PROC_SPACE_TERM | Process.PROC_OUT_LONG, // 4: idle time
3997 Process.PROC_SPACE_TERM | Process.PROC_OUT_LONG, // 5: iowait time
3998 Process.PROC_SPACE_TERM | Process.PROC_OUT_LONG, // 6: irq time
3999 Process.PROC_SPACE_TERM | Process.PROC_OUT_LONG // 7: softirq time
4000 };
4001
4002 private long mStart;
4003 private long mProcessStart;
4004 private long mUserStart;
4005 private long mSystemStart;
4006 private long mIdleStart;
4007 private long mIrqStart;
4008
4009 private long mUiStart;
4010
4011 private Drawable mMixLockIcon;
4012 private Drawable mSecLockIcon;
The Android Open Source Project0c908882009-03-03 19:32:16 -08004013
4014 /* hold a ref so we can auto-cancel if necessary */
4015 private AlertDialog mAlertDialog;
4016
The Android Open Source Project0c908882009-03-03 19:32:16 -08004017 // The up-to-date URL and title (these can be different from those stored
4018 // in WebView, since it takes some time for the information in WebView to
4019 // get updated)
4020 private String mUrl;
4021 private String mTitle;
4022
4023 // As PageInfo has different style for landscape / portrait, we have
4024 // to re-open it when configuration changed
4025 private AlertDialog mPageInfoDialog;
Grace Kloba22ac16e2009-10-07 18:00:23 -07004026 private Tab mPageInfoView;
The Android Open Source Project0c908882009-03-03 19:32:16 -08004027 // If the Page-Info dialog is launched from the SSL-certificate-on-error
4028 // dialog, we should not just dismiss it, but should get back to the
4029 // SSL-certificate-on-error dialog. This flag is used to store this state
Leon Scrogginsc7b92f82010-01-11 18:17:31 -05004030 private boolean mPageInfoFromShowSSLCertificateOnError;
The Android Open Source Project0c908882009-03-03 19:32:16 -08004031
4032 // as SSLCertificateOnError has different style for landscape / portrait,
4033 // we have to re-open it when configuration changed
4034 private AlertDialog mSSLCertificateOnErrorDialog;
4035 private WebView mSSLCertificateOnErrorView;
4036 private SslErrorHandler mSSLCertificateOnErrorHandler;
4037 private SslError mSSLCertificateOnErrorError;
4038
4039 // as SSLCertificate has different style for landscape / portrait, we
4040 // have to re-open it when configuration changed
4041 private AlertDialog mSSLCertificateDialog;
Grace Kloba22ac16e2009-10-07 18:00:23 -07004042 private Tab mSSLCertificateView;
The Android Open Source Project0c908882009-03-03 19:32:16 -08004043
4044 // as HttpAuthentication has different style for landscape / portrait, we
4045 // have to re-open it when configuration changed
Bjorn Bringert25738922010-10-12 10:56:20 +01004046 private HttpAuthenticationDialog mHttpAuthenticationDialog;
The Android Open Source Project0c908882009-03-03 19:32:16 -08004047
4048 /*package*/ static final FrameLayout.LayoutParams COVER_SCREEN_PARAMS =
4049 new FrameLayout.LayoutParams(
Romain Guy15b8ec62010-01-08 15:06:43 -08004050 ViewGroup.LayoutParams.MATCH_PARENT,
4051 ViewGroup.LayoutParams.MATCH_PARENT);
Andrei Popescuadc008d2009-06-26 14:11:30 +01004052 /*package*/ static final FrameLayout.LayoutParams COVER_SCREEN_GRAVITY_CENTER =
4053 new FrameLayout.LayoutParams(
Romain Guy15b8ec62010-01-08 15:06:43 -08004054 ViewGroup.LayoutParams.MATCH_PARENT,
4055 ViewGroup.LayoutParams.MATCH_PARENT,
Andrei Popescuadc008d2009-06-26 14:11:30 +01004056 Gravity.CENTER);
Grace Kloba47fdfdb2009-06-30 11:15:34 -07004057 // Google search
4058 final static String QuickSearch_G = "http://www.google.com/m?q=%s";
The Android Open Source Project0c908882009-03-03 19:32:16 -08004059
4060 final static String QUERY_PLACE_HOLDER = "%s";
4061
4062 // "source" parameter for Google search through search key
4063 final static String GOOGLE_SEARCH_SOURCE_SEARCHKEY = "browser-key";
4064 // "source" parameter for Google search through goto menu
4065 final static String GOOGLE_SEARCH_SOURCE_GOTO = "browser-goto";
4066 // "source" parameter for Google search through simplily type
4067 final static String GOOGLE_SEARCH_SOURCE_TYPE = "browser-type";
4068 // "source" parameter for Google search suggested by the browser
4069 final static String GOOGLE_SEARCH_SOURCE_SUGGEST = "browser-suggest";
4070 // "source" parameter for Google search from unknown source
4071 final static String GOOGLE_SEARCH_SOURCE_UNKNOWN = "unknown";
4072
4073 private final static String LOGTAG = "browser";
4074
The Android Open Source Project0c908882009-03-03 19:32:16 -08004075 private String mLastEnteredUrl;
4076
4077 private PowerManager.WakeLock mWakeLock;
4078 private final static int WAKELOCK_TIMEOUT = 5 * 60 * 1000; // 5 minutes
4079
4080 private Toast mStopToast;
4081
Leon Scroggins571b3762010-05-26 10:25:01 -04004082 private TitleBarBase mTitleBar;
Michael Kolba2b2ba82010-08-04 17:54:03 -07004083 private TabBar mTabBar;
Leon Scroggins81db3662009-06-04 17:45:11 -04004084
Ben Murdochbff2d602009-07-01 20:19:05 +01004085 private LinearLayout mErrorConsoleContainer = null;
4086 private boolean mShouldShowErrorConsole = false;
4087
The Android Open Source Project0c908882009-03-03 19:32:16 -08004088 // As the ids are dynamically created, we can't guarantee that they will
4089 // be in sequence, so this static array maps ids to a window number.
4090 final static private int[] WINDOW_SHORTCUT_ID_ARRAY =
4091 { R.id.window_one_menu_id, R.id.window_two_menu_id, R.id.window_three_menu_id,
4092 R.id.window_four_menu_id, R.id.window_five_menu_id, R.id.window_six_menu_id,
4093 R.id.window_seven_menu_id, R.id.window_eight_menu_id };
4094
4095 // monitor platform changes
4096 private IntentFilter mNetworkStateChangedFilter;
4097 private BroadcastReceiver mNetworkStateIntentReceiver;
4098
Bjorn Bringerta7611812010-03-24 11:12:02 +00004099 private SystemAllowGeolocationOrigins mSystemAllowGeolocationOrigins;
4100
The Android Open Source Project0c908882009-03-03 19:32:16 -08004101 // activity requestCode
Nicolas Roard78a98e42009-05-11 13:34:17 +01004102 final static int PREFERENCES_PAGE = 3;
Leon Scroggins8d5fa432009-10-02 15:55:59 -04004103 final static int FILE_SELECTED = 4;
The Android Open Source Project0c908882009-03-03 19:32:16 -08004104
Andrei Popescu540035d2009-09-18 18:59:20 +01004105 // the default <video> poster
4106 private Bitmap mDefaultVideoPoster;
4107 // the video progress view
4108 private View mVideoProgressView;
4109
Mitsuru Oshima25ad8ab2009-06-10 16:26:07 -07004110 /**
4111 * A UrlData class to abstract how the content will be set to WebView.
4112 * This base class uses loadUrl to show the content.
4113 */
Leon Scroggins6eac63e2010-03-15 18:19:14 -04004114 /* package */ static class UrlData {
Grace Kloba068e48b2010-01-26 18:11:27 -08004115 final String mUrl;
4116 final Map<String, String> mHeaders;
Leon Scroggins58d56c62010-01-28 15:12:40 -05004117 final Intent mVoiceIntent;
Grace Kloba60e095c2009-06-16 11:50:55 -07004118
Mitsuru Oshima25ad8ab2009-06-10 16:26:07 -07004119 UrlData(String url) {
4120 this.mUrl = url;
Grace Kloba068e48b2010-01-26 18:11:27 -08004121 this.mHeaders = null;
Leon Scroggins58d56c62010-01-28 15:12:40 -05004122 this.mVoiceIntent = null;
Mitsuru Oshima25ad8ab2009-06-10 16:26:07 -07004123 }
Grace Kloba60e095c2009-06-16 11:50:55 -07004124
Leon Scroggins58d56c62010-01-28 15:12:40 -05004125 UrlData(String url, Map<String, String> headers, Intent intent) {
Grace Kloba068e48b2010-01-26 18:11:27 -08004126 this.mUrl = url;
4127 this.mHeaders = headers;
Leon Scrogginsa1cc3fd2010-02-01 16:14:11 -05004128 if (RecognizerResultsIntent.ACTION_VOICE_SEARCH_RESULTS
4129 .equals(intent.getAction())) {
Leon Scroggins58d56c62010-01-28 15:12:40 -05004130 this.mVoiceIntent = intent;
4131 } else {
4132 this.mVoiceIntent = null;
4133 }
Grace Kloba60e095c2009-06-16 11:50:55 -07004134 }
4135
Mitsuru Oshima25ad8ab2009-06-10 16:26:07 -07004136 boolean isEmpty() {
Leon Scroggins58d56c62010-01-28 15:12:40 -05004137 return mVoiceIntent == null && (mUrl == null || mUrl.length() == 0);
Mitsuru Oshima25ad8ab2009-06-10 16:26:07 -07004138 }
4139
Leon Scroggins92472e82010-02-17 16:32:28 -05004140 /**
4141 * Load this UrlData into the given Tab. Use loadUrlDataIn to update
4142 * the title bar as well.
4143 */
Leon Scroggins58d56c62010-01-28 15:12:40 -05004144 public void loadIn(Tab t) {
4145 if (mVoiceIntent != null) {
4146 t.activateVoiceSearchMode(mVoiceIntent);
4147 } else {
4148 t.getWebView().loadUrl(mUrl, mHeaders);
4149 }
Mitsuru Oshima25ad8ab2009-06-10 16:26:07 -07004150 }
4151 };
4152
Leon Scroggins1f005d32009-08-10 17:36:42 -04004153 /* package */ static final UrlData EMPTY_URL_DATA = new UrlData(null);
The Android Open Source Project0c908882009-03-03 19:32:16 -08004154}