The Android Open Source Project | 0c90888 | 2009-03-03 19:32:16 -0800 | [diff] [blame] | 1 | /* |
| 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 | |
| 17 | package com.android.browser; |
| 18 | |
| 19 | import com.google.android.googleapps.IGoogleLoginService; |
| 20 | import com.google.android.googlelogin.GoogleLoginServiceConstants; |
| 21 | |
| 22 | import android.app.Activity; |
The Android Open Source Project | 0c90888 | 2009-03-03 19:32:16 -0800 | [diff] [blame] | 23 | import android.app.AlertDialog; |
| 24 | import android.app.ProgressDialog; |
| 25 | import android.app.SearchManager; |
| 26 | import android.content.ActivityNotFoundException; |
| 27 | import android.content.BroadcastReceiver; |
| 28 | import android.content.ComponentName; |
| 29 | import android.content.ContentResolver; |
Leon Scroggins | b6b7f9e | 2009-06-18 12:05:28 -0400 | [diff] [blame] | 30 | import android.content.ContentUris; |
The Android Open Source Project | 0c90888 | 2009-03-03 19:32:16 -0800 | [diff] [blame] | 31 | import android.content.ContentValues; |
| 32 | import android.content.Context; |
| 33 | import android.content.DialogInterface; |
| 34 | import android.content.Intent; |
| 35 | import android.content.IntentFilter; |
| 36 | import android.content.ServiceConnection; |
| 37 | import android.content.DialogInterface.OnCancelListener; |
Grace Kloba | b4da0ad | 2009-05-14 14:45:40 -0700 | [diff] [blame] | 38 | import android.content.pm.PackageInfo; |
The Android Open Source Project | 0c90888 | 2009-03-03 19:32:16 -0800 | [diff] [blame] | 39 | import android.content.pm.PackageManager; |
| 40 | import android.content.pm.ResolveInfo; |
| 41 | import android.content.res.AssetManager; |
| 42 | import android.content.res.Configuration; |
| 43 | import android.content.res.Resources; |
| 44 | import android.database.Cursor; |
| 45 | import android.database.sqlite.SQLiteDatabase; |
| 46 | import android.database.sqlite.SQLiteException; |
| 47 | import android.graphics.Bitmap; |
Andrei Popescu | 540035d | 2009-09-18 18:59:20 +0100 | [diff] [blame] | 48 | import android.graphics.BitmapFactory; |
The Android Open Source Project | 0c90888 | 2009-03-03 19:32:16 -0800 | [diff] [blame] | 49 | import android.graphics.Canvas; |
The Android Open Source Project | 0c90888 | 2009-03-03 19:32:16 -0800 | [diff] [blame] | 50 | import android.graphics.DrawFilter; |
| 51 | import android.graphics.Paint; |
| 52 | import android.graphics.PaintFlagsDrawFilter; |
| 53 | import android.graphics.Picture; |
Leon Scroggins | 3bbb6ca | 2009-09-09 12:51:10 -0400 | [diff] [blame] | 54 | import android.graphics.PixelFormat; |
| 55 | import android.graphics.Rect; |
The Android Open Source Project | 0c90888 | 2009-03-03 19:32:16 -0800 | [diff] [blame] | 56 | import android.graphics.drawable.Drawable; |
The Android Open Source Project | 0c90888 | 2009-03-03 19:32:16 -0800 | [diff] [blame] | 57 | import android.hardware.SensorListener; |
| 58 | import android.hardware.SensorManager; |
| 59 | import android.net.ConnectivityManager; |
Patrick Scott | eb6ab2a | 2009-09-16 10:00:17 -0400 | [diff] [blame] | 60 | import android.net.NetworkInfo; |
The Android Open Source Project | 0c90888 | 2009-03-03 19:32:16 -0800 | [diff] [blame] | 61 | import android.net.Uri; |
| 62 | import android.net.WebAddress; |
| 63 | import android.net.http.EventHandler; |
| 64 | import android.net.http.SslCertificate; |
| 65 | import android.net.http.SslError; |
| 66 | import android.os.AsyncTask; |
| 67 | import android.os.Bundle; |
| 68 | import android.os.Debug; |
| 69 | import android.os.Environment; |
| 70 | import android.os.Handler; |
| 71 | import android.os.IBinder; |
| 72 | import android.os.Message; |
| 73 | import android.os.PowerManager; |
| 74 | import android.os.Process; |
| 75 | import android.os.RemoteException; |
| 76 | import android.os.ServiceManager; |
| 77 | import android.os.SystemClock; |
The Android Open Source Project | 0c90888 | 2009-03-03 19:32:16 -0800 | [diff] [blame] | 78 | import android.provider.Browser; |
Cary Clark | 5e335a3 | 2009-09-22 14:53:11 -0400 | [diff] [blame] | 79 | import android.provider.ContactsContract; |
| 80 | import android.provider.ContactsContract.Intents.Insert; |
The Android Open Source Project | 0c90888 | 2009-03-03 19:32:16 -0800 | [diff] [blame] | 81 | import android.provider.Downloads; |
| 82 | import android.provider.MediaStore; |
The Android Open Source Project | 0c90888 | 2009-03-03 19:32:16 -0800 | [diff] [blame] | 83 | import android.text.IClipboard; |
| 84 | import android.text.TextUtils; |
| 85 | import android.text.format.DateFormat; |
| 86 | import android.text.util.Regex; |
Leon Scroggins | b94bf27 | 2009-09-25 15:22:08 -0400 | [diff] [blame^] | 87 | import android.util.AttributeSet; |
The Android Open Source Project | 0c90888 | 2009-03-03 19:32:16 -0800 | [diff] [blame] | 88 | import android.util.Log; |
| 89 | import android.view.ContextMenu; |
| 90 | import android.view.Gravity; |
| 91 | import android.view.KeyEvent; |
| 92 | import android.view.LayoutInflater; |
| 93 | import android.view.Menu; |
| 94 | import android.view.MenuInflater; |
| 95 | import android.view.MenuItem; |
| 96 | import android.view.View; |
| 97 | import android.view.ViewGroup; |
| 98 | import android.view.Window; |
| 99 | import android.view.WindowManager; |
| 100 | import android.view.ContextMenu.ContextMenuInfo; |
| 101 | import android.view.MenuItem.OnMenuItemClickListener; |
| 102 | import android.view.animation.AlphaAnimation; |
| 103 | import android.view.animation.Animation; |
| 104 | import android.view.animation.AnimationSet; |
| 105 | import android.view.animation.DecelerateInterpolator; |
| 106 | import android.view.animation.ScaleAnimation; |
| 107 | import android.view.animation.TranslateAnimation; |
| 108 | import android.webkit.CookieManager; |
| 109 | import android.webkit.CookieSyncManager; |
| 110 | import android.webkit.DownloadListener; |
Steve Block | 2bc6991 | 2009-07-30 14:45:13 +0100 | [diff] [blame] | 111 | import android.webkit.GeolocationPermissions; |
The Android Open Source Project | 0c90888 | 2009-03-03 19:32:16 -0800 | [diff] [blame] | 112 | import android.webkit.HttpAuthHandler; |
Grace Kloba | b4da0ad | 2009-05-14 14:45:40 -0700 | [diff] [blame] | 113 | import android.webkit.PluginManager; |
The Android Open Source Project | 0c90888 | 2009-03-03 19:32:16 -0800 | [diff] [blame] | 114 | import android.webkit.SslErrorHandler; |
| 115 | import android.webkit.URLUtil; |
| 116 | import android.webkit.WebChromeClient; |
Andrei Popescu | c9b5556 | 2009-07-07 10:51:15 +0100 | [diff] [blame] | 117 | import android.webkit.WebChromeClient.CustomViewCallback; |
The Android Open Source Project | 0c90888 | 2009-03-03 19:32:16 -0800 | [diff] [blame] | 118 | import android.webkit.WebHistoryItem; |
| 119 | import android.webkit.WebIconDatabase; |
Ben Murdoch | 092dd5d | 2009-04-22 12:34:12 +0100 | [diff] [blame] | 120 | import android.webkit.WebStorage; |
The Android Open Source Project | 0c90888 | 2009-03-03 19:32:16 -0800 | [diff] [blame] | 121 | import android.webkit.WebView; |
| 122 | import android.webkit.WebViewClient; |
| 123 | import android.widget.EditText; |
| 124 | import android.widget.FrameLayout; |
| 125 | import android.widget.LinearLayout; |
| 126 | import android.widget.TextView; |
| 127 | import android.widget.Toast; |
| 128 | |
| 129 | import java.io.BufferedOutputStream; |
Leon Scroggins | b6b7f9e | 2009-06-18 12:05:28 -0400 | [diff] [blame] | 130 | import java.io.ByteArrayOutputStream; |
The Android Open Source Project | 0c90888 | 2009-03-03 19:32:16 -0800 | [diff] [blame] | 131 | import java.io.File; |
| 132 | import java.io.FileInputStream; |
| 133 | import java.io.FileOutputStream; |
| 134 | import java.io.IOException; |
| 135 | import java.io.InputStream; |
| 136 | import java.net.MalformedURLException; |
| 137 | import java.net.URI; |
Dianne Hackborn | 9918943 | 2009-06-17 18:06:18 -0700 | [diff] [blame] | 138 | import java.net.URISyntaxException; |
The Android Open Source Project | 0c90888 | 2009-03-03 19:32:16 -0800 | [diff] [blame] | 139 | import java.net.URL; |
| 140 | import java.net.URLEncoder; |
| 141 | import java.text.ParseException; |
| 142 | import java.util.Date; |
| 143 | import java.util.Enumeration; |
| 144 | import java.util.HashMap; |
Patrick Scott | 37911c7 | 2009-03-24 18:02:58 -0700 | [diff] [blame] | 145 | import java.util.LinkedList; |
The Android Open Source Project | 0c90888 | 2009-03-03 19:32:16 -0800 | [diff] [blame] | 146 | import java.util.Vector; |
| 147 | import java.util.regex.Matcher; |
| 148 | import java.util.regex.Pattern; |
| 149 | import java.util.zip.ZipEntry; |
| 150 | import java.util.zip.ZipFile; |
| 151 | |
| 152 | public class BrowserActivity extends Activity |
Grace Kloba | 5942df0 | 2009-09-18 11:48:29 -0700 | [diff] [blame] | 153 | implements View.OnCreateContextMenuListener, |
The Android Open Source Project | 0c90888 | 2009-03-03 19:32:16 -0800 | [diff] [blame] | 154 | DownloadListener { |
| 155 | |
Dave Bort | 31a6d1c | 2009-04-13 15:56:49 -0700 | [diff] [blame] | 156 | /* Define some aliases to make these debugging flags easier to refer to. |
| 157 | * This file imports android.provider.Browser, so we can't just refer to "Browser.DEBUG". |
| 158 | */ |
| 159 | private final static boolean DEBUG = com.android.browser.Browser.DEBUG; |
| 160 | private final static boolean LOGV_ENABLED = com.android.browser.Browser.LOGV_ENABLED; |
| 161 | private final static boolean LOGD_ENABLED = com.android.browser.Browser.LOGD_ENABLED; |
| 162 | |
The Android Open Source Project | 0c90888 | 2009-03-03 19:32:16 -0800 | [diff] [blame] | 163 | private IGoogleLoginService mGls = null; |
| 164 | private ServiceConnection mGlsConnection = null; |
| 165 | |
| 166 | private SensorManager mSensorManager = null; |
| 167 | |
Satish Sampath | 565505b | 2009-05-29 15:37:27 +0100 | [diff] [blame] | 168 | // These are single-character shortcuts for searching popular sources. |
| 169 | private static final int SHORTCUT_INVALID = 0; |
| 170 | private static final int SHORTCUT_GOOGLE_SEARCH = 1; |
| 171 | private static final int SHORTCUT_WIKIPEDIA_SEARCH = 2; |
| 172 | private static final int SHORTCUT_DICTIONARY_SEARCH = 3; |
| 173 | private static final int SHORTCUT_GOOGLE_MOBILE_LOCAL_SEARCH = 4; |
| 174 | |
The Android Open Source Project | 0c90888 | 2009-03-03 19:32:16 -0800 | [diff] [blame] | 175 | /* Whitelisted webpages |
| 176 | private static HashSet<String> sWhiteList; |
| 177 | |
| 178 | static { |
| 179 | sWhiteList = new HashSet<String>(); |
| 180 | sWhiteList.add("cnn.com/"); |
| 181 | sWhiteList.add("espn.go.com/"); |
| 182 | sWhiteList.add("nytimes.com/"); |
| 183 | sWhiteList.add("engadget.com/"); |
| 184 | sWhiteList.add("yahoo.com/"); |
| 185 | sWhiteList.add("msn.com/"); |
| 186 | sWhiteList.add("amazon.com/"); |
| 187 | sWhiteList.add("consumerist.com/"); |
| 188 | sWhiteList.add("google.com/m/news"); |
| 189 | } |
| 190 | */ |
| 191 | |
| 192 | private void setupHomePage() { |
| 193 | final Runnable getAccount = new Runnable() { |
| 194 | public void run() { |
| 195 | // Lower priority |
| 196 | Process.setThreadPriority(Process.THREAD_PRIORITY_BACKGROUND); |
| 197 | // get the default home page |
| 198 | String homepage = mSettings.getHomePage(); |
| 199 | |
| 200 | try { |
| 201 | if (mGls == null) return; |
| 202 | |
Grace Kloba | f2c5c1b | 2009-05-26 10:48:31 -0700 | [diff] [blame] | 203 | if (!homepage.startsWith("http://www.google.")) return; |
| 204 | if (homepage.indexOf('?') == -1) return; |
| 205 | |
The Android Open Source Project | 0c90888 | 2009-03-03 19:32:16 -0800 | [diff] [blame] | 206 | String hostedUser = mGls.getAccount(GoogleLoginServiceConstants.PREFER_HOSTED); |
| 207 | String googleUser = mGls.getAccount(GoogleLoginServiceConstants.REQUIRE_GOOGLE); |
| 208 | |
| 209 | // three cases: |
| 210 | // |
| 211 | // hostedUser == googleUser |
| 212 | // The device has only a google account |
| 213 | // |
| 214 | // hostedUser != googleUser |
| 215 | // The device has a hosted account and a google account |
| 216 | // |
| 217 | // hostedUser != null, googleUser == null |
| 218 | // The device has only a hosted account (so far) |
| 219 | |
| 220 | // developers might have no accounts at all |
| 221 | if (hostedUser == null) return; |
| 222 | |
| 223 | if (googleUser == null || !hostedUser.equals(googleUser)) { |
| 224 | String domain = hostedUser.substring(hostedUser.lastIndexOf('@')+1); |
Grace Kloba | f2c5c1b | 2009-05-26 10:48:31 -0700 | [diff] [blame] | 225 | homepage = homepage.replace("?", "/a/" + domain + "?"); |
The Android Open Source Project | 0c90888 | 2009-03-03 19:32:16 -0800 | [diff] [blame] | 226 | } |
| 227 | } catch (RemoteException ignore) { |
| 228 | // Login service died; carry on |
| 229 | } catch (RuntimeException ignore) { |
| 230 | // Login service died; carry on |
| 231 | } finally { |
| 232 | finish(homepage); |
| 233 | } |
| 234 | } |
| 235 | |
| 236 | private void finish(final String homepage) { |
| 237 | mHandler.post(new Runnable() { |
| 238 | public void run() { |
| 239 | mSettings.setHomePage(BrowserActivity.this, homepage); |
| 240 | resumeAfterCredentials(); |
| 241 | |
| 242 | // as this is running in a separate thread, |
| 243 | // BrowserActivity's onDestroy() may have been called, |
| 244 | // which also calls unbindService(). |
| 245 | if (mGlsConnection != null) { |
| 246 | // we no longer need to keep GLS open |
| 247 | unbindService(mGlsConnection); |
| 248 | mGlsConnection = null; |
| 249 | } |
| 250 | } }); |
| 251 | } }; |
| 252 | |
| 253 | final boolean[] done = { false }; |
| 254 | |
| 255 | // Open a connection to the Google Login Service. The first |
| 256 | // time the connection is established, set up the homepage depending on |
| 257 | // the account in a background thread. |
| 258 | mGlsConnection = new ServiceConnection() { |
| 259 | public void onServiceConnected(ComponentName className, IBinder service) { |
| 260 | mGls = IGoogleLoginService.Stub.asInterface(service); |
| 261 | if (done[0] == false) { |
| 262 | done[0] = true; |
| 263 | Thread account = new Thread(getAccount); |
| 264 | account.setName("GLSAccount"); |
| 265 | account.start(); |
| 266 | } |
| 267 | } |
| 268 | public void onServiceDisconnected(ComponentName className) { |
| 269 | mGls = null; |
| 270 | } |
| 271 | }; |
| 272 | |
| 273 | bindService(GoogleLoginServiceConstants.SERVICE_INTENT, |
| 274 | mGlsConnection, Context.BIND_AUTO_CREATE); |
| 275 | } |
| 276 | |
Cary Clark | a977124 | 2009-08-11 16:42:26 -0400 | [diff] [blame] | 277 | private static class ClearThumbnails extends AsyncTask<File, Void, Void> { |
The Android Open Source Project | 0c90888 | 2009-03-03 19:32:16 -0800 | [diff] [blame] | 278 | @Override |
| 279 | public Void doInBackground(File... files) { |
| 280 | if (files != null) { |
| 281 | for (File f : files) { |
Cary Clark | d6be175 | 2009-08-12 12:56:42 -0400 | [diff] [blame] | 282 | if (!f.delete()) { |
| 283 | Log.e(LOGTAG, f.getPath() + " was not deleted"); |
| 284 | } |
The Android Open Source Project | 0c90888 | 2009-03-03 19:32:16 -0800 | [diff] [blame] | 285 | } |
| 286 | } |
| 287 | return null; |
| 288 | } |
| 289 | } |
| 290 | |
Leon Scroggins | 3bbb6ca | 2009-09-09 12:51:10 -0400 | [diff] [blame] | 291 | /** |
| 292 | * This layout holds everything you see below the status bar, including the |
| 293 | * error console, the custom view container, and the webviews. |
| 294 | */ |
| 295 | private FrameLayout mBrowserFrameLayout; |
Leon Scroggins | 81db366 | 2009-06-04 17:45:11 -0400 | [diff] [blame] | 296 | |
The Android Open Source Project | 0c90888 | 2009-03-03 19:32:16 -0800 | [diff] [blame] | 297 | @Override public void onCreate(Bundle icicle) { |
Dave Bort | 31a6d1c | 2009-04-13 15:56:49 -0700 | [diff] [blame] | 298 | if (LOGV_ENABLED) { |
The Android Open Source Project | 0c90888 | 2009-03-03 19:32:16 -0800 | [diff] [blame] | 299 | Log.v(LOGTAG, this + " onStart"); |
| 300 | } |
| 301 | super.onCreate(icicle); |
The Android Open Source Project | 0c90888 | 2009-03-03 19:32:16 -0800 | [diff] [blame] | 302 | // test the browser in OpenGL |
| 303 | // requestWindowFeature(Window.FEATURE_OPENGL); |
| 304 | |
| 305 | setDefaultKeyMode(DEFAULT_KEYS_SEARCH_LOCAL); |
| 306 | |
| 307 | mResolver = getContentResolver(); |
| 308 | |
Grace Kloba | 0923d69 | 2009-09-23 21:37:25 -0700 | [diff] [blame] | 309 | // If this was a web search request, pass it on to the default web |
| 310 | // search provider and finish this activity. |
| 311 | if (handleWebSearchIntent(getIntent())) { |
| 312 | finish(); |
| 313 | return; |
| 314 | } |
| 315 | |
The Android Open Source Project | 0c90888 | 2009-03-03 19:32:16 -0800 | [diff] [blame] | 316 | // |
| 317 | // start MASF proxy service |
| 318 | // |
| 319 | //Intent proxyServiceIntent = new Intent(); |
| 320 | //proxyServiceIntent.setComponent |
| 321 | // (new ComponentName( |
| 322 | // "com.android.masfproxyservice", |
| 323 | // "com.android.masfproxyservice.MasfProxyService")); |
| 324 | //startService(proxyServiceIntent, null); |
| 325 | |
| 326 | mSecLockIcon = Resources.getSystem().getDrawable( |
| 327 | android.R.drawable.ic_secure); |
| 328 | mMixLockIcon = Resources.getSystem().getDrawable( |
| 329 | android.R.drawable.ic_partial_secure); |
The Android Open Source Project | 0c90888 | 2009-03-03 19:32:16 -0800 | [diff] [blame] | 330 | |
Leon Scroggins | 81db366 | 2009-06-04 17:45:11 -0400 | [diff] [blame] | 331 | FrameLayout frameLayout = (FrameLayout) getWindow().getDecorView() |
| 332 | .findViewById(com.android.internal.R.id.content); |
Leon Scroggins | 3bbb6ca | 2009-09-09 12:51:10 -0400 | [diff] [blame] | 333 | mBrowserFrameLayout = (FrameLayout) LayoutInflater.from(this) |
| 334 | .inflate(R.layout.custom_screen, null); |
| 335 | mContentView = (FrameLayout) mBrowserFrameLayout.findViewById( |
| 336 | R.id.main_content); |
| 337 | mErrorConsoleContainer = (LinearLayout) mBrowserFrameLayout |
| 338 | .findViewById(R.id.error_console); |
| 339 | mCustomViewContainer = (FrameLayout) mBrowserFrameLayout |
| 340 | .findViewById(R.id.fullscreen_custom_content); |
| 341 | frameLayout.addView(mBrowserFrameLayout, COVER_SCREEN_PARAMS); |
Leon Scroggins | 6857939 | 2009-09-15 15:31:54 -0400 | [diff] [blame] | 342 | mTitleBar = new TitleBar(this); |
The Android Open Source Project | 0c90888 | 2009-03-03 19:32:16 -0800 | [diff] [blame] | 343 | |
| 344 | // Create the tab control and our initial tab |
| 345 | mTabControl = new TabControl(this); |
| 346 | |
| 347 | // Open the icon database and retain all the bookmark urls for favicons |
| 348 | retainIconsOnStartup(); |
| 349 | |
| 350 | // Keep a settings instance handy. |
| 351 | mSettings = BrowserSettings.getInstance(); |
| 352 | mSettings.setTabControl(mTabControl); |
| 353 | mSettings.loadFromDb(this); |
| 354 | |
| 355 | PowerManager pm = (PowerManager) getSystemService(Context.POWER_SERVICE); |
| 356 | mWakeLock = pm.newWakeLock(PowerManager.PARTIAL_WAKE_LOCK, "Browser"); |
| 357 | |
Grace Kloba | a34f686 | 2009-07-31 16:28:17 -0700 | [diff] [blame] | 358 | /* enables registration for changes in network status from |
| 359 | http stack */ |
| 360 | mNetworkStateChangedFilter = new IntentFilter(); |
| 361 | mNetworkStateChangedFilter.addAction( |
| 362 | ConnectivityManager.CONNECTIVITY_ACTION); |
| 363 | mNetworkStateIntentReceiver = new BroadcastReceiver() { |
| 364 | @Override |
| 365 | public void onReceive(Context context, Intent intent) { |
| 366 | if (intent.getAction().equals( |
| 367 | ConnectivityManager.CONNECTIVITY_ACTION)) { |
Patrick Scott | eb6ab2a | 2009-09-16 10:00:17 -0400 | [diff] [blame] | 368 | NetworkInfo info = |
| 369 | (NetworkInfo) intent.getParcelableExtra( |
| 370 | ConnectivityManager.EXTRA_NETWORK_INFO); |
| 371 | onNetworkToggle( |
| 372 | (info != null) ? info.isConnected() : false); |
Grace Kloba | a34f686 | 2009-07-31 16:28:17 -0700 | [diff] [blame] | 373 | } |
| 374 | } |
| 375 | }; |
| 376 | |
Grace Kloba | 615c6c9 | 2009-08-03 10:22:44 -0700 | [diff] [blame] | 377 | IntentFilter filter = new IntentFilter(Intent.ACTION_PACKAGE_ADDED); |
| 378 | filter.addAction(Intent.ACTION_PACKAGE_REMOVED); |
| 379 | filter.addDataScheme("package"); |
| 380 | mPackageInstallationReceiver = new BroadcastReceiver() { |
| 381 | @Override |
| 382 | public void onReceive(Context context, Intent intent) { |
| 383 | final String action = intent.getAction(); |
| 384 | final String packageName = intent.getData() |
| 385 | .getSchemeSpecificPart(); |
| 386 | final boolean replacing = intent.getBooleanExtra( |
| 387 | Intent.EXTRA_REPLACING, false); |
| 388 | if (Intent.ACTION_PACKAGE_REMOVED.equals(action) && replacing) { |
| 389 | // if it is replacing, refreshPlugins() when adding |
| 390 | return; |
| 391 | } |
| 392 | PackageManager pm = BrowserActivity.this.getPackageManager(); |
| 393 | PackageInfo pkgInfo = null; |
| 394 | try { |
| 395 | pkgInfo = pm.getPackageInfo(packageName, |
| 396 | PackageManager.GET_PERMISSIONS); |
| 397 | } catch (PackageManager.NameNotFoundException e) { |
| 398 | return; |
| 399 | } |
| 400 | if (pkgInfo != null) { |
| 401 | String permissions[] = pkgInfo.requestedPermissions; |
| 402 | if (permissions == null) { |
| 403 | return; |
| 404 | } |
| 405 | boolean permissionOk = false; |
| 406 | for (String permit : permissions) { |
| 407 | if (PluginManager.PLUGIN_PERMISSION.equals(permit)) { |
| 408 | permissionOk = true; |
| 409 | break; |
| 410 | } |
| 411 | } |
| 412 | if (permissionOk) { |
| 413 | PluginManager.getInstance(BrowserActivity.this) |
| 414 | .refreshPlugins( |
| 415 | Intent.ACTION_PACKAGE_ADDED |
| 416 | .equals(action)); |
| 417 | } |
| 418 | } |
| 419 | } |
| 420 | }; |
| 421 | registerReceiver(mPackageInstallationReceiver, filter); |
| 422 | |
The Android Open Source Project | 0c90888 | 2009-03-03 19:32:16 -0800 | [diff] [blame] | 423 | if (!mTabControl.restoreState(icicle)) { |
| 424 | // clear up the thumbnail directory if we can't restore the state as |
| 425 | // none of the files in the directory are referenced any more. |
| 426 | new ClearThumbnails().execute( |
| 427 | mTabControl.getThumbnailDir().listFiles()); |
Grace Kloba | aab3f09 | 2009-07-30 12:29:51 -0700 | [diff] [blame] | 428 | // there is no quit on Android. But if we can't restore the state, |
| 429 | // we can treat it as a new Browser, remove the old session cookies. |
| 430 | CookieManager.getInstance().removeSessionCookie(); |
The Android Open Source Project | 0c90888 | 2009-03-03 19:32:16 -0800 | [diff] [blame] | 431 | final Intent intent = getIntent(); |
| 432 | final Bundle extra = intent.getExtras(); |
| 433 | // Create an initial tab. |
| 434 | // If the intent is ACTION_VIEW and data is not null, the Browser is |
| 435 | // invoked to view the content by another application. In this case, |
| 436 | // the tab will be close when exit. |
Mitsuru Oshima | 25ad8ab | 2009-06-10 16:26:07 -0700 | [diff] [blame] | 437 | UrlData urlData = getUrlDataFromIntent(intent); |
| 438 | |
The Android Open Source Project | 0c90888 | 2009-03-03 19:32:16 -0800 | [diff] [blame] | 439 | final TabControl.Tab t = mTabControl.createNewTab( |
| 440 | Intent.ACTION_VIEW.equals(intent.getAction()) && |
The Android Open Source Project | f59ec87 | 2009-03-13 13:04:24 -0700 | [diff] [blame] | 441 | intent.getData() != null, |
Mitsuru Oshima | 25ad8ab | 2009-06-10 16:26:07 -0700 | [diff] [blame] | 442 | intent.getStringExtra(Browser.EXTRA_APPLICATION_ID), urlData.mUrl); |
The Android Open Source Project | 0c90888 | 2009-03-03 19:32:16 -0800 | [diff] [blame] | 443 | mTabControl.setCurrentTab(t); |
The Android Open Source Project | 0c90888 | 2009-03-03 19:32:16 -0800 | [diff] [blame] | 444 | attachTabToContentView(t); |
| 445 | WebView webView = t.getWebView(); |
| 446 | if (extra != null) { |
| 447 | int scale = extra.getInt(Browser.INITIAL_ZOOM_LEVEL, 0); |
| 448 | if (scale > 0 && scale <= 1000) { |
| 449 | webView.setInitialScale(scale); |
| 450 | } |
| 451 | } |
| 452 | // If we are not restoring from an icicle, then there is a high |
| 453 | // likely hood this is the first run. So, check to see if the |
| 454 | // homepage needs to be configured and copy any plugins from our |
| 455 | // asset directory to the data partition. |
| 456 | if ((extra == null || !extra.getBoolean("testing")) |
| 457 | && !mSettings.isLoginInitialized()) { |
| 458 | setupHomePage(); |
| 459 | } |
The Android Open Source Project | 0c90888 | 2009-03-03 19:32:16 -0800 | [diff] [blame] | 460 | |
Mitsuru Oshima | 25ad8ab | 2009-06-10 16:26:07 -0700 | [diff] [blame] | 461 | if (urlData.isEmpty()) { |
Leon Scroggins | 3044423 | 2009-09-04 18:36:20 -0400 | [diff] [blame] | 462 | if (mSettings.isLoginInitialized()) { |
| 463 | webView.loadUrl(mSettings.getHomePage()); |
| 464 | } else { |
| 465 | waitForCredentials(); |
| 466 | } |
The Android Open Source Project | 0c90888 | 2009-03-03 19:32:16 -0800 | [diff] [blame] | 467 | } else { |
Grace Kloba | 81678d9 | 2009-06-30 07:09:56 -0700 | [diff] [blame] | 468 | if (extra != null) { |
| 469 | urlData.setPostData(extra |
| 470 | .getByteArray(Browser.EXTRA_POST_DATA)); |
| 471 | } |
Mitsuru Oshima | 25ad8ab | 2009-06-10 16:26:07 -0700 | [diff] [blame] | 472 | urlData.loadIn(webView); |
The Android Open Source Project | 0c90888 | 2009-03-03 19:32:16 -0800 | [diff] [blame] | 473 | } |
| 474 | } else { |
| 475 | // TabControl.restoreState() will create a new tab even if |
Leon Scroggins | 1f005d3 | 2009-08-10 17:36:42 -0400 | [diff] [blame] | 476 | // restoring the state fails. |
The Android Open Source Project | 0c90888 | 2009-03-03 19:32:16 -0800 | [diff] [blame] | 477 | attachTabToContentView(mTabControl.getCurrentTab()); |
| 478 | } |
Grace Kloba | 615c6c9 | 2009-08-03 10:22:44 -0700 | [diff] [blame] | 479 | |
Feng Qian | b3c02da | 2009-06-29 15:58:08 -0700 | [diff] [blame] | 480 | // Read JavaScript flags if it exists. |
| 481 | String jsFlags = mSettings.getJsFlags(); |
| 482 | if (jsFlags.trim().length() != 0) { |
| 483 | mTabControl.getCurrentWebView().setJsFlags(jsFlags); |
| 484 | } |
The Android Open Source Project | 0c90888 | 2009-03-03 19:32:16 -0800 | [diff] [blame] | 485 | } |
| 486 | |
| 487 | @Override |
| 488 | protected void onNewIntent(Intent intent) { |
| 489 | TabControl.Tab current = mTabControl.getCurrentTab(); |
| 490 | // When a tab is closed on exit, the current tab index is set to -1. |
| 491 | // Reset before proceed as Browser requires the current tab to be set. |
| 492 | if (current == null) { |
| 493 | // Try to reset the tab in case the index was incorrect. |
| 494 | current = mTabControl.getTab(0); |
| 495 | if (current == null) { |
| 496 | // No tabs at all so just ignore this intent. |
| 497 | return; |
| 498 | } |
| 499 | mTabControl.setCurrentTab(current); |
| 500 | attachTabToContentView(current); |
| 501 | resetTitleAndIcon(current.getWebView()); |
| 502 | } |
| 503 | final String action = intent.getAction(); |
| 504 | final int flags = intent.getFlags(); |
| 505 | if (Intent.ACTION_MAIN.equals(action) || |
| 506 | (flags & Intent.FLAG_ACTIVITY_LAUNCHED_FROM_HISTORY) != 0) { |
| 507 | // just resume the browser |
| 508 | return; |
| 509 | } |
| 510 | if (Intent.ACTION_VIEW.equals(action) |
| 511 | || Intent.ACTION_SEARCH.equals(action) |
| 512 | || MediaStore.INTENT_ACTION_MEDIA_SEARCH.equals(action) |
| 513 | || Intent.ACTION_WEB_SEARCH.equals(action)) { |
Satish Sampath | 565505b | 2009-05-29 15:37:27 +0100 | [diff] [blame] | 514 | // If this was a search request (e.g. search query directly typed into the address bar), |
| 515 | // pass it on to the default web search provider. |
| 516 | if (handleWebSearchIntent(intent)) { |
| 517 | return; |
| 518 | } |
| 519 | |
Mitsuru Oshima | 25ad8ab | 2009-06-10 16:26:07 -0700 | [diff] [blame] | 520 | UrlData urlData = getUrlDataFromIntent(intent); |
| 521 | if (urlData.isEmpty()) { |
| 522 | urlData = new UrlData(mSettings.getHomePage()); |
The Android Open Source Project | 0c90888 | 2009-03-03 19:32:16 -0800 | [diff] [blame] | 523 | } |
Grace Kloba | 81678d9 | 2009-06-30 07:09:56 -0700 | [diff] [blame] | 524 | urlData.setPostData(intent |
| 525 | .getByteArrayExtra(Browser.EXTRA_POST_DATA)); |
Mitsuru Oshima | 25ad8ab | 2009-06-10 16:26:07 -0700 | [diff] [blame] | 526 | |
Grace Kloba | cc63403 | 2009-07-28 15:58:19 -0700 | [diff] [blame] | 527 | final String appId = intent |
| 528 | .getStringExtra(Browser.EXTRA_APPLICATION_ID); |
| 529 | if (Intent.ACTION_VIEW.equals(action) |
| 530 | && !getPackageName().equals(appId) |
| 531 | && (flags & Intent.FLAG_ACTIVITY_BROUGHT_TO_FRONT) != 0) { |
Patrick Scott | cd11589 | 2009-07-16 09:42:58 -0400 | [diff] [blame] | 532 | TabControl.Tab appTab = mTabControl.getTabFromId(appId); |
The Android Open Source Project | f59ec87 | 2009-03-13 13:04:24 -0700 | [diff] [blame] | 533 | if (appTab != null) { |
| 534 | Log.i(LOGTAG, "Reusing tab for " + appId); |
| 535 | // Dismiss the subwindow if applicable. |
| 536 | dismissSubWindow(appTab); |
| 537 | // Since we might kill the WebView, remove it from the |
| 538 | // content view first. |
| 539 | removeTabFromContentView(appTab); |
| 540 | // Recreate the main WebView after destroying the old one. |
| 541 | // If the WebView has the same original url and is on that |
| 542 | // page, it can be reused. |
| 543 | boolean needsLoad = |
Mitsuru Oshima | 25ad8ab | 2009-06-10 16:26:07 -0700 | [diff] [blame] | 544 | mTabControl.recreateWebView(appTab, urlData.mUrl); |
Ben Murdoch | bff2d60 | 2009-07-01 20:19:05 +0100 | [diff] [blame] | 545 | |
The Android Open Source Project | f59ec87 | 2009-03-13 13:04:24 -0700 | [diff] [blame] | 546 | if (current != appTab) { |
Leon Scroggins | 1f005d3 | 2009-08-10 17:36:42 -0400 | [diff] [blame] | 547 | switchToTab(mTabControl.getTabIndex(appTab)); |
| 548 | if (needsLoad) { |
| 549 | urlData.loadIn(appTab.getWebView()); |
| 550 | } |
The Android Open Source Project | f59ec87 | 2009-03-13 13:04:24 -0700 | [diff] [blame] | 551 | } else { |
Leon Scroggins | 1f005d3 | 2009-08-10 17:36:42 -0400 | [diff] [blame] | 552 | // If the tab was the current tab, we have to attach |
| 553 | // it to the view system again. |
| 554 | attachTabToContentView(appTab); |
| 555 | if (needsLoad) { |
| 556 | urlData.loadIn(appTab.getWebView()); |
The Android Open Source Project | f59ec87 | 2009-03-13 13:04:24 -0700 | [diff] [blame] | 557 | } |
| 558 | } |
| 559 | return; |
Patrick Scott | cd11589 | 2009-07-16 09:42:58 -0400 | [diff] [blame] | 560 | } else { |
| 561 | // No matching application tab, try to find a regular tab |
| 562 | // with a matching url. |
| 563 | appTab = mTabControl.findUnusedTabWithUrl(urlData.mUrl); |
Leon Scroggins | 25515f8 | 2009-08-19 15:31:58 -0400 | [diff] [blame] | 564 | if (appTab != null) { |
| 565 | if (current != appTab) { |
| 566 | switchToTab(mTabControl.getTabIndex(appTab)); |
| 567 | } |
| 568 | // Otherwise, we are already viewing the correct tab. |
Patrick Scott | cd11589 | 2009-07-16 09:42:58 -0400 | [diff] [blame] | 569 | } else { |
| 570 | // if FLAG_ACTIVITY_BROUGHT_TO_FRONT flag is on, the url |
| 571 | // will be opened in a new tab unless we have reached |
| 572 | // MAX_TABS. Then the url will be opened in the current |
| 573 | // tab. If a new tab is created, it will have "true" for |
| 574 | // exit on close. |
Leon Scroggins | 1f005d3 | 2009-08-10 17:36:42 -0400 | [diff] [blame] | 575 | openTabAndShow(urlData, true, appId); |
Patrick Scott | cd11589 | 2009-07-16 09:42:58 -0400 | [diff] [blame] | 576 | } |
The Android Open Source Project | f59ec87 | 2009-03-13 13:04:24 -0700 | [diff] [blame] | 577 | } |
The Android Open Source Project | 0c90888 | 2009-03-03 19:32:16 -0800 | [diff] [blame] | 578 | } else { |
Mitsuru Oshima | 25ad8ab | 2009-06-10 16:26:07 -0700 | [diff] [blame] | 579 | if ("about:debug".equals(urlData.mUrl)) { |
The Android Open Source Project | 0c90888 | 2009-03-03 19:32:16 -0800 | [diff] [blame] | 580 | mSettings.toggleDebugSettings(); |
| 581 | return; |
| 582 | } |
Leon Scroggins | 1f005d3 | 2009-08-10 17:36:42 -0400 | [diff] [blame] | 583 | // Get rid of the subwindow if it exists |
| 584 | dismissSubWindow(current); |
| 585 | urlData.loadIn(current.getWebView()); |
The Android Open Source Project | 0c90888 | 2009-03-03 19:32:16 -0800 | [diff] [blame] | 586 | } |
| 587 | } |
| 588 | } |
| 589 | |
Satish Sampath | 565505b | 2009-05-29 15:37:27 +0100 | [diff] [blame] | 590 | private int parseUrlShortcut(String url) { |
| 591 | if (url == null) return SHORTCUT_INVALID; |
| 592 | |
| 593 | // FIXME: quick search, need to be customized by setting |
| 594 | if (url.length() > 2 && url.charAt(1) == ' ') { |
| 595 | switch (url.charAt(0)) { |
| 596 | case 'g': return SHORTCUT_GOOGLE_SEARCH; |
| 597 | case 'w': return SHORTCUT_WIKIPEDIA_SEARCH; |
| 598 | case 'd': return SHORTCUT_DICTIONARY_SEARCH; |
| 599 | case 'l': return SHORTCUT_GOOGLE_MOBILE_LOCAL_SEARCH; |
| 600 | } |
| 601 | } |
| 602 | return SHORTCUT_INVALID; |
| 603 | } |
| 604 | |
| 605 | /** |
| 606 | * Launches the default web search activity with the query parameters if the given intent's data |
| 607 | * are identified as plain search terms and not URLs/shortcuts. |
| 608 | * @return true if the intent was handled and web search activity was launched, false if not. |
| 609 | */ |
| 610 | private boolean handleWebSearchIntent(Intent intent) { |
| 611 | if (intent == null) return false; |
| 612 | |
| 613 | String url = null; |
| 614 | final String action = intent.getAction(); |
| 615 | if (Intent.ACTION_VIEW.equals(action)) { |
| 616 | url = intent.getData().toString(); |
| 617 | } else if (Intent.ACTION_SEARCH.equals(action) |
| 618 | || MediaStore.INTENT_ACTION_MEDIA_SEARCH.equals(action) |
| 619 | || Intent.ACTION_WEB_SEARCH.equals(action)) { |
| 620 | url = intent.getStringExtra(SearchManager.QUERY); |
| 621 | } |
Bjorn Bringert | 0485170 | 2009-09-22 10:36:01 +0100 | [diff] [blame] | 622 | return handleWebSearchRequest(url, intent.getBundleExtra(SearchManager.APP_DATA), |
| 623 | intent.getStringExtra(SearchManager.EXTRA_DATA_KEY)); |
Satish Sampath | 565505b | 2009-05-29 15:37:27 +0100 | [diff] [blame] | 624 | } |
| 625 | |
| 626 | /** |
| 627 | * Launches the default web search activity with the query parameters if the given url string |
| 628 | * was identified as plain search terms and not URL/shortcut. |
| 629 | * @return true if the request was handled and web search activity was launched, false if not. |
| 630 | */ |
Bjorn Bringert | 0485170 | 2009-09-22 10:36:01 +0100 | [diff] [blame] | 631 | private boolean handleWebSearchRequest(String inUrl, Bundle appData, String extraData) { |
Satish Sampath | 565505b | 2009-05-29 15:37:27 +0100 | [diff] [blame] | 632 | if (inUrl == null) return false; |
| 633 | |
| 634 | // In general, we shouldn't modify URL from Intent. |
| 635 | // But currently, we get the user-typed URL from search box as well. |
| 636 | String url = fixUrl(inUrl).trim(); |
| 637 | |
| 638 | // URLs and site specific search shortcuts are handled by the regular flow of control, so |
| 639 | // return early. |
| 640 | if (Regex.WEB_URL_PATTERN.matcher(url).matches() |
Satish Sampath | bc5b9f3 | 2009-06-04 18:21:40 +0100 | [diff] [blame] | 641 | || ACCEPTED_URI_SCHEMA.matcher(url).matches() |
Satish Sampath | 565505b | 2009-05-29 15:37:27 +0100 | [diff] [blame] | 642 | || parseUrlShortcut(url) != SHORTCUT_INVALID) { |
| 643 | return false; |
| 644 | } |
| 645 | |
| 646 | Browser.updateVisitedHistory(mResolver, url, false); |
| 647 | Browser.addSearchUrl(mResolver, url); |
| 648 | |
| 649 | Intent intent = new Intent(Intent.ACTION_WEB_SEARCH); |
| 650 | intent.addCategory(Intent.CATEGORY_DEFAULT); |
| 651 | intent.putExtra(SearchManager.QUERY, url); |
Satish Sampath | 15e9f2d | 2009-06-23 22:29:49 +0100 | [diff] [blame] | 652 | if (appData != null) { |
| 653 | intent.putExtra(SearchManager.APP_DATA, appData); |
| 654 | } |
Bjorn Bringert | 0485170 | 2009-09-22 10:36:01 +0100 | [diff] [blame] | 655 | if (extraData != null) { |
| 656 | intent.putExtra(SearchManager.EXTRA_DATA_KEY, extraData); |
| 657 | } |
Grace Kloba | cc63403 | 2009-07-28 15:58:19 -0700 | [diff] [blame] | 658 | intent.putExtra(Browser.EXTRA_APPLICATION_ID, getPackageName()); |
Satish Sampath | 565505b | 2009-05-29 15:37:27 +0100 | [diff] [blame] | 659 | startActivity(intent); |
| 660 | |
| 661 | return true; |
| 662 | } |
| 663 | |
Mitsuru Oshima | 25ad8ab | 2009-06-10 16:26:07 -0700 | [diff] [blame] | 664 | private UrlData getUrlDataFromIntent(Intent intent) { |
The Android Open Source Project | 0c90888 | 2009-03-03 19:32:16 -0800 | [diff] [blame] | 665 | String url = null; |
| 666 | if (intent != null) { |
| 667 | final String action = intent.getAction(); |
| 668 | if (Intent.ACTION_VIEW.equals(action)) { |
| 669 | url = smartUrlFilter(intent.getData()); |
| 670 | if (url != null && url.startsWith("content:")) { |
| 671 | /* Append mimetype so webview knows how to display */ |
| 672 | String mimeType = intent.resolveType(getContentResolver()); |
| 673 | if (mimeType != null) { |
| 674 | url += "?" + mimeType; |
| 675 | } |
| 676 | } |
Mitsuru Oshima | 25ad8ab | 2009-06-10 16:26:07 -0700 | [diff] [blame] | 677 | if ("inline:".equals(url)) { |
| 678 | return new InlinedUrlData( |
| 679 | intent.getStringExtra(Browser.EXTRA_INLINE_CONTENT), |
| 680 | intent.getType(), |
| 681 | intent.getStringExtra(Browser.EXTRA_INLINE_ENCODING), |
| 682 | intent.getStringExtra(Browser.EXTRA_INLINE_FAILURL)); |
| 683 | } |
The Android Open Source Project | 0c90888 | 2009-03-03 19:32:16 -0800 | [diff] [blame] | 684 | } else if (Intent.ACTION_SEARCH.equals(action) |
| 685 | || MediaStore.INTENT_ACTION_MEDIA_SEARCH.equals(action) |
| 686 | || Intent.ACTION_WEB_SEARCH.equals(action)) { |
| 687 | url = intent.getStringExtra(SearchManager.QUERY); |
| 688 | if (url != null) { |
| 689 | mLastEnteredUrl = url; |
| 690 | // Don't add Urls, just search terms. |
| 691 | // Urls will get added when the page is loaded. |
| 692 | if (!Regex.WEB_URL_PATTERN.matcher(url).matches()) { |
| 693 | Browser.updateVisitedHistory(mResolver, url, false); |
| 694 | } |
| 695 | // In general, we shouldn't modify URL from Intent. |
| 696 | // But currently, we get the user-typed URL from search box as well. |
| 697 | url = fixUrl(url); |
| 698 | url = smartUrlFilter(url); |
| 699 | String searchSource = "&source=android-" + GOOGLE_SEARCH_SOURCE_SUGGEST + "&"; |
| 700 | if (url.contains(searchSource)) { |
| 701 | String source = null; |
| 702 | final Bundle appData = intent.getBundleExtra(SearchManager.APP_DATA); |
| 703 | if (appData != null) { |
| 704 | source = appData.getString(SearchManager.SOURCE); |
| 705 | } |
| 706 | if (TextUtils.isEmpty(source)) { |
| 707 | source = GOOGLE_SEARCH_SOURCE_UNKNOWN; |
| 708 | } |
| 709 | url = url.replace(searchSource, "&source=android-"+source+"&"); |
| 710 | } |
| 711 | } |
| 712 | } |
| 713 | } |
Mitsuru Oshima | 25ad8ab | 2009-06-10 16:26:07 -0700 | [diff] [blame] | 714 | return new UrlData(url); |
The Android Open Source Project | 0c90888 | 2009-03-03 19:32:16 -0800 | [diff] [blame] | 715 | } |
| 716 | |
| 717 | /* package */ static String fixUrl(String inUrl) { |
Cary Clark | 652ff87 | 2009-09-10 13:34:44 -0400 | [diff] [blame] | 718 | // FIXME: Converting the url to lower case |
| 719 | // duplicates functionality in smartUrlFilter(). |
| 720 | // However, changing all current callers of fixUrl to |
| 721 | // call smartUrlFilter in addition may have unwanted |
| 722 | // consequences, and is deferred for now. |
| 723 | int colon = inUrl.indexOf(':'); |
| 724 | boolean allLower = true; |
| 725 | for (int index = 0; index < colon; index++) { |
| 726 | char ch = inUrl.charAt(index); |
| 727 | if (!Character.isLetter(ch)) { |
| 728 | break; |
| 729 | } |
| 730 | allLower &= Character.isLowerCase(ch); |
| 731 | if (index == colon - 1 && !allLower) { |
| 732 | inUrl = inUrl.substring(0, colon).toLowerCase() |
| 733 | + inUrl.substring(colon); |
| 734 | } |
| 735 | } |
The Android Open Source Project | 0c90888 | 2009-03-03 19:32:16 -0800 | [diff] [blame] | 736 | if (inUrl.startsWith("http://") || inUrl.startsWith("https://")) |
| 737 | return inUrl; |
| 738 | if (inUrl.startsWith("http:") || |
| 739 | inUrl.startsWith("https:")) { |
| 740 | if (inUrl.startsWith("http:/") || inUrl.startsWith("https:/")) { |
| 741 | inUrl = inUrl.replaceFirst("/", "//"); |
| 742 | } else inUrl = inUrl.replaceFirst(":", "://"); |
| 743 | } |
| 744 | return inUrl; |
| 745 | } |
| 746 | |
| 747 | /** |
| 748 | * Looking for the pattern like this |
| 749 | * |
| 750 | * * |
| 751 | * * * |
| 752 | * *** * ******* |
| 753 | * * * |
| 754 | * * * |
| 755 | * * |
| 756 | */ |
| 757 | private final SensorListener mSensorListener = new SensorListener() { |
| 758 | private long mLastGestureTime; |
| 759 | private float[] mPrev = new float[3]; |
| 760 | private float[] mPrevDiff = new float[3]; |
| 761 | private float[] mDiff = new float[3]; |
| 762 | private float[] mRevertDiff = new float[3]; |
| 763 | |
| 764 | public void onSensorChanged(int sensor, float[] values) { |
| 765 | boolean show = false; |
| 766 | float[] diff = new float[3]; |
| 767 | |
| 768 | for (int i = 0; i < 3; i++) { |
| 769 | diff[i] = values[i] - mPrev[i]; |
| 770 | if (Math.abs(diff[i]) > 1) { |
| 771 | show = true; |
| 772 | } |
| 773 | if ((diff[i] > 1.0 && mDiff[i] < 0.2) |
| 774 | || (diff[i] < -1.0 && mDiff[i] > -0.2)) { |
| 775 | // start track when there is a big move, or revert |
| 776 | mRevertDiff[i] = mDiff[i]; |
| 777 | mDiff[i] = 0; |
| 778 | } else if (diff[i] > -0.2 && diff[i] < 0.2) { |
| 779 | // reset when it is flat |
| 780 | mDiff[i] = mRevertDiff[i] = 0; |
| 781 | } |
| 782 | mDiff[i] += diff[i]; |
| 783 | mPrevDiff[i] = diff[i]; |
| 784 | mPrev[i] = values[i]; |
| 785 | } |
| 786 | |
| 787 | if (false) { |
| 788 | // only shows if we think the delta is big enough, in an attempt |
| 789 | // to detect "serious" moves left/right or up/down |
| 790 | Log.d("BrowserSensorHack", "sensorChanged " + sensor + " (" |
| 791 | + values[0] + ", " + values[1] + ", " + values[2] + ")" |
| 792 | + " diff(" + diff[0] + " " + diff[1] + " " + diff[2] |
| 793 | + ")"); |
| 794 | Log.d("BrowserSensorHack", " mDiff(" + mDiff[0] + " " |
| 795 | + mDiff[1] + " " + mDiff[2] + ")" + " mRevertDiff(" |
| 796 | + mRevertDiff[0] + " " + mRevertDiff[1] + " " |
| 797 | + mRevertDiff[2] + ")"); |
| 798 | } |
| 799 | |
| 800 | long now = android.os.SystemClock.uptimeMillis(); |
| 801 | if (now - mLastGestureTime > 1000) { |
| 802 | mLastGestureTime = 0; |
| 803 | |
| 804 | float y = mDiff[1]; |
| 805 | float z = mDiff[2]; |
| 806 | float ay = Math.abs(y); |
| 807 | float az = Math.abs(z); |
| 808 | float ry = mRevertDiff[1]; |
| 809 | float rz = mRevertDiff[2]; |
| 810 | float ary = Math.abs(ry); |
| 811 | float arz = Math.abs(rz); |
| 812 | boolean gestY = ay > 2.5f && ary > 1.0f && ay > ary; |
| 813 | boolean gestZ = az > 3.5f && arz > 1.0f && az > arz; |
| 814 | |
| 815 | if ((gestY || gestZ) && !(gestY && gestZ)) { |
| 816 | WebView view = mTabControl.getCurrentWebView(); |
| 817 | |
| 818 | if (view != null) { |
| 819 | if (gestZ) { |
| 820 | if (z < 0) { |
| 821 | view.zoomOut(); |
| 822 | } else { |
| 823 | view.zoomIn(); |
| 824 | } |
| 825 | } else { |
| 826 | view.flingScroll(0, Math.round(y * 100)); |
| 827 | } |
| 828 | } |
| 829 | mLastGestureTime = now; |
| 830 | } |
| 831 | } |
| 832 | } |
| 833 | |
| 834 | public void onAccuracyChanged(int sensor, int accuracy) { |
| 835 | // TODO Auto-generated method stub |
| 836 | |
| 837 | } |
| 838 | }; |
| 839 | |
| 840 | @Override protected void onResume() { |
| 841 | super.onResume(); |
Dave Bort | 31a6d1c | 2009-04-13 15:56:49 -0700 | [diff] [blame] | 842 | if (LOGV_ENABLED) { |
The Android Open Source Project | 0c90888 | 2009-03-03 19:32:16 -0800 | [diff] [blame] | 843 | Log.v(LOGTAG, "BrowserActivity.onResume: this=" + this); |
| 844 | } |
| 845 | |
| 846 | if (!mActivityInPause) { |
| 847 | Log.e(LOGTAG, "BrowserActivity is already resumed."); |
| 848 | return; |
| 849 | } |
| 850 | |
Mike Reed | 7bfa63b | 2009-05-28 11:08:32 -0400 | [diff] [blame] | 851 | mTabControl.resumeCurrentTab(); |
The Android Open Source Project | 0c90888 | 2009-03-03 19:32:16 -0800 | [diff] [blame] | 852 | mActivityInPause = false; |
Mike Reed | 7bfa63b | 2009-05-28 11:08:32 -0400 | [diff] [blame] | 853 | resumeWebViewTimers(); |
The Android Open Source Project | 0c90888 | 2009-03-03 19:32:16 -0800 | [diff] [blame] | 854 | |
| 855 | if (mWakeLock.isHeld()) { |
| 856 | mHandler.removeMessages(RELEASE_WAKELOCK); |
| 857 | mWakeLock.release(); |
| 858 | } |
| 859 | |
| 860 | if (mCredsDlg != null) { |
| 861 | if (!mHandler.hasMessages(CANCEL_CREDS_REQUEST)) { |
| 862 | // In case credential request never comes back |
| 863 | mHandler.sendEmptyMessageDelayed(CANCEL_CREDS_REQUEST, 6000); |
| 864 | } |
| 865 | } |
| 866 | |
| 867 | registerReceiver(mNetworkStateIntentReceiver, |
| 868 | mNetworkStateChangedFilter); |
| 869 | WebView.enablePlatformNotifications(); |
| 870 | |
| 871 | if (mSettings.doFlick()) { |
| 872 | if (mSensorManager == null) { |
| 873 | mSensorManager = (SensorManager) getSystemService( |
| 874 | Context.SENSOR_SERVICE); |
| 875 | } |
| 876 | mSensorManager.registerListener(mSensorListener, |
| 877 | SensorManager.SENSOR_ACCELEROMETER, |
| 878 | SensorManager.SENSOR_DELAY_FASTEST); |
| 879 | } else { |
| 880 | mSensorManager = null; |
| 881 | } |
| 882 | } |
| 883 | |
Leon Scroggins | 3bbb6ca | 2009-09-09 12:51:10 -0400 | [diff] [blame] | 884 | /** |
| 885 | * Since the actual title bar is embedded in the WebView, and removing it |
| 886 | * would change its appearance, create a temporary title bar to go at |
| 887 | * the top of the screen while the menu is open. |
| 888 | */ |
| 889 | private TitleBar mFakeTitleBar; |
| 890 | |
| 891 | /** |
Leon Scroggins | d8fd2fc | 2009-09-16 11:12:09 -0400 | [diff] [blame] | 892 | * Holder for the fake title bar. It will have a foreground shadow, as well |
| 893 | * as a white background, so the fake title bar looks like the real one. |
| 894 | */ |
| 895 | private ViewGroup mFakeTitleBarHolder; |
| 896 | |
| 897 | /** |
| 898 | * Layout parameters for the fake title bar within mFakeTitleBarHolder |
| 899 | */ |
| 900 | private FrameLayout.LayoutParams mFakeTitleBarParams |
| 901 | = new FrameLayout.LayoutParams( |
Leon Scroggins | c01e4a8 | 2009-09-16 14:41:00 -0400 | [diff] [blame] | 902 | ViewGroup.LayoutParams.FILL_PARENT, |
Leon Scroggins | d8fd2fc | 2009-09-16 11:12:09 -0400 | [diff] [blame] | 903 | ViewGroup.LayoutParams.WRAP_CONTENT); |
| 904 | /** |
Leon Scroggins | 3bbb6ca | 2009-09-09 12:51:10 -0400 | [diff] [blame] | 905 | * Keeps track of whether the options menu is open. This is important in |
| 906 | * determining whether to show or hide the title bar overlay. |
| 907 | */ |
| 908 | private boolean mOptionsMenuOpen; |
| 909 | |
| 910 | /** |
| 911 | * Only meaningful when mOptionsMenuOpen is true. This variable keeps track |
| 912 | * of whether the configuration has changed. The first onMenuOpened call |
| 913 | * after a configuration change is simply a reopening of the same menu |
| 914 | * (i.e. mIconView did not change). |
| 915 | */ |
| 916 | private boolean mConfigChanged; |
| 917 | |
| 918 | /** |
| 919 | * Whether or not the options menu is in its smaller, icon menu form. When |
| 920 | * true, we want the title bar overlay to be up. When false, we do not. |
| 921 | * Only meaningful if mOptionsMenuOpen is true. |
| 922 | */ |
| 923 | private boolean mIconView; |
| 924 | |
Leon Scroggins | a81a764 | 2009-08-31 17:05:41 -0400 | [diff] [blame] | 925 | @Override |
| 926 | public boolean onMenuOpened(int featureId, Menu menu) { |
Leon Scroggins | 3bbb6ca | 2009-09-09 12:51:10 -0400 | [diff] [blame] | 927 | if (Window.FEATURE_OPTIONS_PANEL == featureId) { |
| 928 | if (mOptionsMenuOpen) { |
| 929 | if (mConfigChanged) { |
| 930 | // We do not need to make any changes to the state of the |
| 931 | // title bar, since the only thing that happened was a |
| 932 | // change in orientation |
| 933 | mConfigChanged = false; |
| 934 | } else { |
| 935 | if (mIconView) { |
| 936 | // Switching the menu to expanded view, so hide the |
| 937 | // title bar. |
| 938 | hideFakeTitleBar(); |
| 939 | mIconView = false; |
| 940 | } else { |
| 941 | // Switching the menu back to icon view, so show the |
| 942 | // title bar once again. |
| 943 | showFakeTitleBar(); |
| 944 | mIconView = true; |
| 945 | } |
| 946 | } |
| 947 | } else { |
| 948 | // The options menu is closed, so open it, and show the title |
| 949 | showFakeTitleBar(); |
| 950 | mOptionsMenuOpen = true; |
| 951 | mConfigChanged = false; |
| 952 | mIconView = true; |
| 953 | } |
| 954 | } |
Leon Scroggins | a81a764 | 2009-08-31 17:05:41 -0400 | [diff] [blame] | 955 | return true; |
| 956 | } |
| 957 | |
Leon Scroggins | b94bf27 | 2009-09-25 15:22:08 -0400 | [diff] [blame^] | 958 | /** |
| 959 | * Special class used exclusively for the shadow drawn underneath the fake |
| 960 | * title bar. The shadow does not need to be drawn if the WebView |
| 961 | * underneath is scrolled to the top, because it will draw directly on top |
| 962 | * of the embedded shadow. |
| 963 | */ |
| 964 | private static class Shadow extends View { |
| 965 | private WebView mWebView; |
| 966 | |
| 967 | public Shadow(Context context, AttributeSet attrs) { |
| 968 | super(context, attrs); |
| 969 | } |
| 970 | |
| 971 | public void setWebView(WebView view) { |
| 972 | mWebView = view; |
| 973 | } |
| 974 | |
| 975 | @Override |
| 976 | public void draw(Canvas canvas) { |
| 977 | // In general onDraw is the method to override, but we care about |
| 978 | // whether or not the background gets drawn, which happens in draw() |
| 979 | if (mWebView == null || mWebView.getScrollY() > getHeight()) { |
| 980 | super.draw(canvas); |
| 981 | } |
| 982 | // Need to invalidate so that if the scroll position changes, we |
| 983 | // still draw as appropriate. |
| 984 | invalidate(); |
| 985 | } |
| 986 | } |
| 987 | |
Leon Scroggins | 3bbb6ca | 2009-09-09 12:51:10 -0400 | [diff] [blame] | 988 | private void showFakeTitleBar() { |
Patrick Scott | f8de8ec | 2009-09-21 16:37:29 -0400 | [diff] [blame] | 989 | final View decor = getWindow().peekDecorView(); |
Leon Scroggins | 4d7e406 | 2009-09-15 15:49:45 -0400 | [diff] [blame] | 990 | if (mFakeTitleBar == null && mActiveTabsPage == null |
Patrick Scott | f8de8ec | 2009-09-21 16:37:29 -0400 | [diff] [blame] | 991 | && !mActivityInPause && decor != null |
| 992 | && decor.getWindowToken() != null) { |
Leon Scroggins | f4bb18a | 2009-09-11 18:37:53 -0400 | [diff] [blame] | 993 | final WebView webView = getTopWindow(); |
Leon Scroggins | 6857939 | 2009-09-15 15:31:54 -0400 | [diff] [blame] | 994 | mFakeTitleBar = new TitleBar(this); |
Leon Scroggins | 3bbb6ca | 2009-09-09 12:51:10 -0400 | [diff] [blame] | 995 | mFakeTitleBar.setTitleAndUrl(null, webView.getUrl()); |
| 996 | mFakeTitleBar.setProgress(webView.getProgress()); |
| 997 | mFakeTitleBar.setFavicon(webView.getFavicon()); |
| 998 | updateLockIconToLatest(); |
Leon Scroggins | 3bbb6ca | 2009-09-09 12:51:10 -0400 | [diff] [blame] | 999 | |
| 1000 | WindowManager manager |
| 1001 | = (WindowManager) getSystemService(Context.WINDOW_SERVICE); |
| 1002 | |
| 1003 | // Add the title bar to the window manager so it can receive touches |
| 1004 | // while the menu is up |
| 1005 | WindowManager.LayoutParams params |
| 1006 | = new WindowManager.LayoutParams( |
| 1007 | ViewGroup.LayoutParams.FILL_PARENT, |
| 1008 | ViewGroup.LayoutParams.WRAP_CONTENT, |
| 1009 | WindowManager.LayoutParams.TYPE_APPLICATION_SUB_PANEL, |
| 1010 | WindowManager.LayoutParams.FLAG_NOT_FOCUSABLE, |
Leon Scroggins | 6854986 | 2009-09-21 16:02:01 -0400 | [diff] [blame] | 1011 | PixelFormat.TRANSLUCENT); |
Leon Scroggins | 3bbb6ca | 2009-09-09 12:51:10 -0400 | [diff] [blame] | 1012 | params.gravity = Gravity.TOP; |
Leon Scroggins | a27ff19 | 2009-09-14 12:58:04 -0400 | [diff] [blame] | 1013 | WebView mainView = mTabControl.getCurrentWebView(); |
Leon Scroggins | 6854986 | 2009-09-21 16:02:01 -0400 | [diff] [blame] | 1014 | boolean atTop = mainView != null && mainView.getScrollY() == 0; |
| 1015 | params.windowAnimations = atTop ? 0 |
| 1016 | : com.android.internal.R.style.Animation_DropDownDown; |
Leon Scroggins | 3bbb6ca | 2009-09-09 12:51:10 -0400 | [diff] [blame] | 1017 | // XXX : Without providing an offset, the fake title bar will be |
| 1018 | // placed underneath the status bar. Use the global visible rect |
| 1019 | // of mBrowserFrameLayout to determine the bottom of the status bar |
| 1020 | Rect rectangle = new Rect(); |
| 1021 | mBrowserFrameLayout.getGlobalVisibleRect(rectangle); |
| 1022 | params.y = rectangle.top; |
Leon Scroggins | 6854986 | 2009-09-21 16:02:01 -0400 | [diff] [blame] | 1023 | // Add a holder for the title bar. It also holds a shadow to show |
| 1024 | // below the title bar. |
Leon Scroggins | d8fd2fc | 2009-09-16 11:12:09 -0400 | [diff] [blame] | 1025 | if (mFakeTitleBarHolder == null) { |
| 1026 | mFakeTitleBarHolder = (ViewGroup) LayoutInflater.from(this) |
| 1027 | .inflate(R.layout.title_bar_bg, null); |
| 1028 | } |
Leon Scroggins | b94bf27 | 2009-09-25 15:22:08 -0400 | [diff] [blame^] | 1029 | Shadow shadow = (Shadow) mFakeTitleBarHolder.findViewById( |
| 1030 | R.id.shadow); |
| 1031 | shadow.setWebView(mainView); |
Leon Scroggins | 6854986 | 2009-09-21 16:02:01 -0400 | [diff] [blame] | 1032 | mFakeTitleBarHolder.addView(mFakeTitleBar, 0, mFakeTitleBarParams); |
Leon Scroggins | d8fd2fc | 2009-09-16 11:12:09 -0400 | [diff] [blame] | 1033 | manager.addView(mFakeTitleBarHolder, params); |
Leon Scroggins | 3bbb6ca | 2009-09-09 12:51:10 -0400 | [diff] [blame] | 1034 | } |
| 1035 | } |
| 1036 | |
| 1037 | @Override |
| 1038 | public void onOptionsMenuClosed(Menu menu) { |
| 1039 | mOptionsMenuOpen = false; |
Leon Scroggins | a27ff19 | 2009-09-14 12:58:04 -0400 | [diff] [blame] | 1040 | if (!mInLoad) { |
| 1041 | hideFakeTitleBar(); |
| 1042 | } else if (!mIconView) { |
| 1043 | // The page is currently loading, and we are in expanded mode, so |
| 1044 | // we were not showing the menu. Show it once again. It will be |
| 1045 | // removed when the page finishes. |
| 1046 | showFakeTitleBar(); |
| 1047 | } |
Leon Scroggins | 3bbb6ca | 2009-09-09 12:51:10 -0400 | [diff] [blame] | 1048 | } |
| 1049 | private void hideFakeTitleBar() { |
| 1050 | if (mFakeTitleBar == null) return; |
Leon Scroggins | 2032957 | 2009-09-23 17:42:41 -0400 | [diff] [blame] | 1051 | WindowManager.LayoutParams params = (WindowManager.LayoutParams) |
| 1052 | mFakeTitleBarHolder.getLayoutParams(); |
| 1053 | WebView mainView = mTabControl.getCurrentWebView(); |
| 1054 | // Although we decided whether or not to animate based on the current |
| 1055 | // scroll position, the scroll position may have changed since the |
| 1056 | // fake title bar was displayed. Make sure it has the appropriate |
| 1057 | // animation/lack thereof before removing. |
| 1058 | params.windowAnimations = mainView != null && mainView.getScrollY() == 0 |
| 1059 | ? 0 : com.android.internal.R.style.Animation_DropDownDown; |
Leon Scroggins | 3bbb6ca | 2009-09-09 12:51:10 -0400 | [diff] [blame] | 1060 | WindowManager manager |
| 1061 | = (WindowManager) getSystemService(Context.WINDOW_SERVICE); |
Leon Scroggins | 2032957 | 2009-09-23 17:42:41 -0400 | [diff] [blame] | 1062 | manager.updateViewLayout(mFakeTitleBarHolder, params); |
Leon Scroggins | d8fd2fc | 2009-09-16 11:12:09 -0400 | [diff] [blame] | 1063 | mFakeTitleBarHolder.removeView(mFakeTitleBar); |
| 1064 | manager.removeView(mFakeTitleBarHolder); |
Leon Scroggins | 3bbb6ca | 2009-09-09 12:51:10 -0400 | [diff] [blame] | 1065 | mFakeTitleBar = null; |
| 1066 | } |
| 1067 | |
The Android Open Source Project | 0c90888 | 2009-03-03 19:32:16 -0800 | [diff] [blame] | 1068 | /** |
Leon Scroggins | c6fa110 | 2009-09-21 10:40:01 -0400 | [diff] [blame] | 1069 | * Special method for the fake title bar to call when displaying its context |
| 1070 | * menu, since it is in its own Window, and its parent does not show a |
| 1071 | * context menu. |
| 1072 | */ |
| 1073 | /* package */ void showTitleBarContextMenu() { |
| 1074 | openContextMenu(mTitleBar); |
| 1075 | } |
| 1076 | |
| 1077 | /** |
The Android Open Source Project | 0c90888 | 2009-03-03 19:32:16 -0800 | [diff] [blame] | 1078 | * onSaveInstanceState(Bundle map) |
| 1079 | * onSaveInstanceState is called right before onStop(). The map contains |
| 1080 | * the saved state. |
| 1081 | */ |
| 1082 | @Override protected void onSaveInstanceState(Bundle outState) { |
Dave Bort | 31a6d1c | 2009-04-13 15:56:49 -0700 | [diff] [blame] | 1083 | if (LOGV_ENABLED) { |
The Android Open Source Project | 0c90888 | 2009-03-03 19:32:16 -0800 | [diff] [blame] | 1084 | Log.v(LOGTAG, "BrowserActivity.onSaveInstanceState: this=" + this); |
| 1085 | } |
| 1086 | // the default implementation requires each view to have an id. As the |
| 1087 | // browser handles the state itself and it doesn't use id for the views, |
| 1088 | // don't call the default implementation. Otherwise it will trigger the |
| 1089 | // warning like this, "couldn't save which view has focus because the |
| 1090 | // focused view XXX has no id". |
| 1091 | |
| 1092 | // Save all the tabs |
| 1093 | mTabControl.saveState(outState); |
| 1094 | } |
| 1095 | |
| 1096 | @Override protected void onPause() { |
| 1097 | super.onPause(); |
| 1098 | |
| 1099 | if (mActivityInPause) { |
| 1100 | Log.e(LOGTAG, "BrowserActivity is already paused."); |
| 1101 | return; |
| 1102 | } |
| 1103 | |
Mike Reed | 7bfa63b | 2009-05-28 11:08:32 -0400 | [diff] [blame] | 1104 | mTabControl.pauseCurrentTab(); |
The Android Open Source Project | 0c90888 | 2009-03-03 19:32:16 -0800 | [diff] [blame] | 1105 | mActivityInPause = true; |
Mike Reed | 7bfa63b | 2009-05-28 11:08:32 -0400 | [diff] [blame] | 1106 | if (mTabControl.getCurrentIndex() >= 0 && !pauseWebViewTimers()) { |
The Android Open Source Project | 0c90888 | 2009-03-03 19:32:16 -0800 | [diff] [blame] | 1107 | mWakeLock.acquire(); |
| 1108 | mHandler.sendMessageDelayed(mHandler |
| 1109 | .obtainMessage(RELEASE_WAKELOCK), WAKELOCK_TIMEOUT); |
| 1110 | } |
| 1111 | |
| 1112 | // Clear the credentials toast if it is up |
| 1113 | if (mCredsDlg != null && mCredsDlg.isShowing()) { |
| 1114 | mCredsDlg.dismiss(); |
| 1115 | } |
| 1116 | mCredsDlg = null; |
| 1117 | |
Leon Scroggins | a2ab6a7 | 2009-09-11 11:49:52 -0400 | [diff] [blame] | 1118 | // FIXME: This removes the active tabs page and resets the menu to |
| 1119 | // MAIN_MENU. A better solution might be to do this work in onNewIntent |
| 1120 | // but then we would need to save it in onSaveInstanceState and restore |
| 1121 | // it in onCreate/onRestoreInstanceState |
| 1122 | if (mActiveTabsPage != null) { |
| 1123 | removeActiveTabPage(true); |
| 1124 | } |
| 1125 | |
The Android Open Source Project | 0c90888 | 2009-03-03 19:32:16 -0800 | [diff] [blame] | 1126 | cancelStopToast(); |
| 1127 | |
| 1128 | // unregister network state listener |
| 1129 | unregisterReceiver(mNetworkStateIntentReceiver); |
| 1130 | WebView.disablePlatformNotifications(); |
| 1131 | |
| 1132 | if (mSensorManager != null) { |
| 1133 | mSensorManager.unregisterListener(mSensorListener); |
| 1134 | } |
| 1135 | } |
| 1136 | |
| 1137 | @Override protected void onDestroy() { |
Dave Bort | 31a6d1c | 2009-04-13 15:56:49 -0700 | [diff] [blame] | 1138 | if (LOGV_ENABLED) { |
The Android Open Source Project | 0c90888 | 2009-03-03 19:32:16 -0800 | [diff] [blame] | 1139 | Log.v(LOGTAG, "BrowserActivity.onDestroy: this=" + this); |
| 1140 | } |
| 1141 | super.onDestroy(); |
Grace Kloba | 0923d69 | 2009-09-23 21:37:25 -0700 | [diff] [blame] | 1142 | |
| 1143 | if (mTabControl == null) return; |
| 1144 | |
The Android Open Source Project | 0c90888 | 2009-03-03 19:32:16 -0800 | [diff] [blame] | 1145 | // Remove the current tab and sub window |
| 1146 | TabControl.Tab t = mTabControl.getCurrentTab(); |
Patrick Scott | fb5e77f | 2009-04-08 19:17:37 -0700 | [diff] [blame] | 1147 | if (t != null) { |
| 1148 | dismissSubWindow(t); |
| 1149 | removeTabFromContentView(t); |
| 1150 | } |
The Android Open Source Project | 0c90888 | 2009-03-03 19:32:16 -0800 | [diff] [blame] | 1151 | // Destroy all the tabs |
| 1152 | mTabControl.destroy(); |
| 1153 | WebIconDatabase.getInstance().close(); |
| 1154 | if (mGlsConnection != null) { |
| 1155 | unbindService(mGlsConnection); |
| 1156 | mGlsConnection = null; |
| 1157 | } |
| 1158 | |
| 1159 | // |
| 1160 | // stop MASF proxy service |
| 1161 | // |
| 1162 | //Intent proxyServiceIntent = new Intent(); |
| 1163 | //proxyServiceIntent.setComponent |
| 1164 | // (new ComponentName( |
| 1165 | // "com.android.masfproxyservice", |
| 1166 | // "com.android.masfproxyservice.MasfProxyService")); |
| 1167 | //stopService(proxyServiceIntent); |
Grace Kloba | b4da0ad | 2009-05-14 14:45:40 -0700 | [diff] [blame] | 1168 | |
| 1169 | unregisterReceiver(mPackageInstallationReceiver); |
The Android Open Source Project | 0c90888 | 2009-03-03 19:32:16 -0800 | [diff] [blame] | 1170 | } |
| 1171 | |
| 1172 | @Override |
| 1173 | public void onConfigurationChanged(Configuration newConfig) { |
Leon Scroggins | 3bbb6ca | 2009-09-09 12:51:10 -0400 | [diff] [blame] | 1174 | mConfigChanged = true; |
The Android Open Source Project | 0c90888 | 2009-03-03 19:32:16 -0800 | [diff] [blame] | 1175 | super.onConfigurationChanged(newConfig); |
| 1176 | |
| 1177 | if (mPageInfoDialog != null) { |
| 1178 | mPageInfoDialog.dismiss(); |
| 1179 | showPageInfo( |
| 1180 | mPageInfoView, |
| 1181 | mPageInfoFromShowSSLCertificateOnError.booleanValue()); |
| 1182 | } |
| 1183 | if (mSSLCertificateDialog != null) { |
| 1184 | mSSLCertificateDialog.dismiss(); |
| 1185 | showSSLCertificate( |
| 1186 | mSSLCertificateView); |
| 1187 | } |
| 1188 | if (mSSLCertificateOnErrorDialog != null) { |
| 1189 | mSSLCertificateOnErrorDialog.dismiss(); |
| 1190 | showSSLCertificateOnError( |
| 1191 | mSSLCertificateOnErrorView, |
| 1192 | mSSLCertificateOnErrorHandler, |
| 1193 | mSSLCertificateOnErrorError); |
| 1194 | } |
| 1195 | if (mHttpAuthenticationDialog != null) { |
| 1196 | String title = ((TextView) mHttpAuthenticationDialog |
| 1197 | .findViewById(com.android.internal.R.id.alertTitle)).getText() |
| 1198 | .toString(); |
| 1199 | String name = ((TextView) mHttpAuthenticationDialog |
| 1200 | .findViewById(R.id.username_edit)).getText().toString(); |
| 1201 | String password = ((TextView) mHttpAuthenticationDialog |
| 1202 | .findViewById(R.id.password_edit)).getText().toString(); |
| 1203 | int focusId = mHttpAuthenticationDialog.getCurrentFocus() |
| 1204 | .getId(); |
| 1205 | mHttpAuthenticationDialog.dismiss(); |
| 1206 | showHttpAuthentication(mHttpAuthHandler, null, null, title, |
| 1207 | name, password, focusId); |
| 1208 | } |
| 1209 | if (mFindDialog != null && mFindDialog.isShowing()) { |
| 1210 | mFindDialog.onConfigurationChanged(newConfig); |
| 1211 | } |
| 1212 | } |
| 1213 | |
| 1214 | @Override public void onLowMemory() { |
| 1215 | super.onLowMemory(); |
| 1216 | mTabControl.freeMemory(); |
| 1217 | } |
| 1218 | |
Mike Reed | 7bfa63b | 2009-05-28 11:08:32 -0400 | [diff] [blame] | 1219 | private boolean resumeWebViewTimers() { |
The Android Open Source Project | 0c90888 | 2009-03-03 19:32:16 -0800 | [diff] [blame] | 1220 | if ((!mActivityInPause && !mPageStarted) || |
| 1221 | (mActivityInPause && mPageStarted)) { |
| 1222 | CookieSyncManager.getInstance().startSync(); |
| 1223 | WebView w = mTabControl.getCurrentWebView(); |
| 1224 | if (w != null) { |
| 1225 | w.resumeTimers(); |
| 1226 | } |
| 1227 | return true; |
| 1228 | } else { |
| 1229 | return false; |
| 1230 | } |
| 1231 | } |
| 1232 | |
Mike Reed | 7bfa63b | 2009-05-28 11:08:32 -0400 | [diff] [blame] | 1233 | private boolean pauseWebViewTimers() { |
The Android Open Source Project | 0c90888 | 2009-03-03 19:32:16 -0800 | [diff] [blame] | 1234 | if (mActivityInPause && !mPageStarted) { |
| 1235 | CookieSyncManager.getInstance().stopSync(); |
| 1236 | WebView w = mTabControl.getCurrentWebView(); |
| 1237 | if (w != null) { |
| 1238 | w.pauseTimers(); |
| 1239 | } |
| 1240 | return true; |
| 1241 | } else { |
| 1242 | return false; |
| 1243 | } |
| 1244 | } |
| 1245 | |
Leon Scroggins | 1f005d3 | 2009-08-10 17:36:42 -0400 | [diff] [blame] | 1246 | // FIXME: Do we want to call this when loading google for the first time? |
The Android Open Source Project | 0c90888 | 2009-03-03 19:32:16 -0800 | [diff] [blame] | 1247 | /* |
| 1248 | * This function is called when we are launching for the first time. We |
| 1249 | * are waiting for the login credentials before loading Google home |
| 1250 | * pages. This way the user will be logged in straight away. |
| 1251 | */ |
| 1252 | private void waitForCredentials() { |
| 1253 | // Show a toast |
| 1254 | mCredsDlg = new ProgressDialog(this); |
| 1255 | mCredsDlg.setIndeterminate(true); |
| 1256 | mCredsDlg.setMessage(getText(R.string.retrieving_creds_dlg_msg)); |
| 1257 | // If the user cancels the operation, then cancel the Google |
| 1258 | // Credentials request. |
| 1259 | mCredsDlg.setCancelMessage(mHandler.obtainMessage(CANCEL_CREDS_REQUEST)); |
| 1260 | mCredsDlg.show(); |
| 1261 | |
| 1262 | // We set a timeout for the retrieval of credentials in onResume() |
| 1263 | // as that is when we have freed up some CPU time to get |
| 1264 | // the login credentials. |
| 1265 | } |
| 1266 | |
| 1267 | /* |
| 1268 | * If we have received the credentials or we have timed out and we are |
| 1269 | * showing the credentials dialog, then it is time to move on. |
| 1270 | */ |
| 1271 | private void resumeAfterCredentials() { |
| 1272 | if (mCredsDlg == null) { |
| 1273 | return; |
| 1274 | } |
| 1275 | |
| 1276 | // Clear the toast |
| 1277 | if (mCredsDlg.isShowing()) { |
| 1278 | mCredsDlg.dismiss(); |
| 1279 | } |
| 1280 | mCredsDlg = null; |
| 1281 | |
| 1282 | // Clear any pending timeout |
| 1283 | mHandler.removeMessages(CANCEL_CREDS_REQUEST); |
| 1284 | |
| 1285 | // Load the page |
| 1286 | WebView w = mTabControl.getCurrentWebView(); |
| 1287 | if (w != null) { |
| 1288 | w.loadUrl(mSettings.getHomePage()); |
| 1289 | } |
| 1290 | |
| 1291 | // Update the settings, need to do this last as it can take a moment |
| 1292 | // to persist the settings. In the mean time we could be loading |
| 1293 | // content. |
| 1294 | mSettings.setLoginInitialized(this); |
| 1295 | } |
| 1296 | |
| 1297 | // Open the icon database and retain all the icons for visited sites. |
| 1298 | private void retainIconsOnStartup() { |
| 1299 | final WebIconDatabase db = WebIconDatabase.getInstance(); |
| 1300 | db.open(getDir("icons", 0).getPath()); |
| 1301 | try { |
| 1302 | Cursor c = Browser.getAllBookmarks(mResolver); |
| 1303 | if (!c.moveToFirst()) { |
| 1304 | c.deactivate(); |
| 1305 | return; |
| 1306 | } |
| 1307 | int urlIndex = c.getColumnIndex(Browser.BookmarkColumns.URL); |
| 1308 | do { |
| 1309 | String url = c.getString(urlIndex); |
| 1310 | db.retainIconForPageUrl(url); |
| 1311 | } while (c.moveToNext()); |
| 1312 | c.deactivate(); |
| 1313 | } catch (IllegalStateException e) { |
| 1314 | Log.e(LOGTAG, "retainIconsOnStartup", e); |
| 1315 | } |
| 1316 | } |
| 1317 | |
| 1318 | // Helper method for getting the top window. |
| 1319 | WebView getTopWindow() { |
| 1320 | return mTabControl.getCurrentTopWebView(); |
| 1321 | } |
| 1322 | |
| 1323 | @Override |
| 1324 | public boolean onCreateOptionsMenu(Menu menu) { |
| 1325 | super.onCreateOptionsMenu(menu); |
| 1326 | |
| 1327 | MenuInflater inflater = getMenuInflater(); |
| 1328 | inflater.inflate(R.menu.browser, menu); |
| 1329 | mMenu = menu; |
| 1330 | updateInLoadMenuItems(); |
| 1331 | return true; |
| 1332 | } |
| 1333 | |
| 1334 | /** |
| 1335 | * As the menu can be open when loading state changes |
| 1336 | * we must manually update the state of the stop/reload menu |
| 1337 | * item |
| 1338 | */ |
| 1339 | private void updateInLoadMenuItems() { |
| 1340 | if (mMenu == null) { |
| 1341 | return; |
| 1342 | } |
| 1343 | MenuItem src = mInLoad ? |
| 1344 | mMenu.findItem(R.id.stop_menu_id): |
| 1345 | mMenu.findItem(R.id.reload_menu_id); |
| 1346 | MenuItem dest = mMenu.findItem(R.id.stop_reload_menu_id); |
| 1347 | dest.setIcon(src.getIcon()); |
| 1348 | dest.setTitle(src.getTitle()); |
| 1349 | } |
| 1350 | |
| 1351 | @Override |
| 1352 | public boolean onContextItemSelected(MenuItem item) { |
| 1353 | // chording is not an issue with context menus, but we use the same |
| 1354 | // options selector, so set mCanChord to true so we can access them. |
| 1355 | mCanChord = true; |
| 1356 | int id = item.getItemId(); |
The Android Open Source Project | 0c90888 | 2009-03-03 19:32:16 -0800 | [diff] [blame] | 1357 | switch (id) { |
Leon Scroggins | c6fa110 | 2009-09-21 10:40:01 -0400 | [diff] [blame] | 1358 | // For the context menu from the title bar |
| 1359 | case R.id.title_bar_share_page_url: |
| 1360 | case R.id.title_bar_copy_page_url: |
| 1361 | WebView mainView = mTabControl.getCurrentWebView(); |
| 1362 | if (null == mainView) { |
| 1363 | return false; |
| 1364 | } |
| 1365 | if (id == R.id.title_bar_share_page_url) { |
| 1366 | Browser.sendString(this, mainView.getUrl()); |
| 1367 | } else { |
| 1368 | copy(mainView.getUrl()); |
| 1369 | } |
| 1370 | break; |
The Android Open Source Project | 0c90888 | 2009-03-03 19:32:16 -0800 | [diff] [blame] | 1371 | // -- Browser context menu |
| 1372 | case R.id.open_context_menu_id: |
| 1373 | case R.id.open_newtab_context_menu_id: |
| 1374 | case R.id.bookmark_context_menu_id: |
| 1375 | case R.id.save_link_context_menu_id: |
| 1376 | case R.id.share_link_context_menu_id: |
| 1377 | case R.id.copy_link_context_menu_id: |
Leon Scroggins | c6fa110 | 2009-09-21 10:40:01 -0400 | [diff] [blame] | 1378 | final WebView webView = getTopWindow(); |
| 1379 | if (null == webView) { |
| 1380 | return false; |
| 1381 | } |
| 1382 | final HashMap hrefMap = new HashMap(); |
| 1383 | hrefMap.put("webview", webView); |
| 1384 | final Message msg = mHandler.obtainMessage( |
| 1385 | FOCUS_NODE_HREF, id, 0, hrefMap); |
The Android Open Source Project | 0c90888 | 2009-03-03 19:32:16 -0800 | [diff] [blame] | 1386 | webView.requestFocusNodeHref(msg); |
| 1387 | break; |
| 1388 | |
| 1389 | default: |
| 1390 | // For other context menus |
| 1391 | return onOptionsItemSelected(item); |
| 1392 | } |
| 1393 | mCanChord = false; |
| 1394 | return true; |
| 1395 | } |
| 1396 | |
| 1397 | private Bundle createGoogleSearchSourceBundle(String source) { |
| 1398 | Bundle bundle = new Bundle(); |
| 1399 | bundle.putString(SearchManager.SOURCE, source); |
| 1400 | return bundle; |
| 1401 | } |
| 1402 | |
| 1403 | /** |
The Android Open Source Project | 4e5f587 | 2009-03-09 11:52:14 -0700 | [diff] [blame] | 1404 | * Overriding this to insert a local information bundle |
The Android Open Source Project | 0c90888 | 2009-03-03 19:32:16 -0800 | [diff] [blame] | 1405 | */ |
| 1406 | @Override |
| 1407 | public boolean onSearchRequested() { |
Leon Scroggins | 6857939 | 2009-09-15 15:31:54 -0400 | [diff] [blame] | 1408 | if (mOptionsMenuOpen) closeOptionsMenu(); |
Leon Scroggins | 5bbe980 | 2009-07-31 13:10:55 -0400 | [diff] [blame] | 1409 | String url = (getTopWindow() == null) ? null : getTopWindow().getUrl(); |
Grace Kloba | 83f4734 | 2009-07-20 10:44:31 -0700 | [diff] [blame] | 1410 | startSearch(mSettings.getHomePage().equals(url) ? null : url, true, |
The Android Open Source Project | 4e5f587 | 2009-03-09 11:52:14 -0700 | [diff] [blame] | 1411 | createGoogleSearchSourceBundle(GOOGLE_SEARCH_SOURCE_SEARCHKEY), false); |
The Android Open Source Project | 0c90888 | 2009-03-03 19:32:16 -0800 | [diff] [blame] | 1412 | return true; |
| 1413 | } |
| 1414 | |
| 1415 | @Override |
| 1416 | public void startSearch(String initialQuery, boolean selectInitialQuery, |
| 1417 | Bundle appSearchData, boolean globalSearch) { |
| 1418 | if (appSearchData == null) { |
| 1419 | appSearchData = createGoogleSearchSourceBundle(GOOGLE_SEARCH_SOURCE_TYPE); |
| 1420 | } |
| 1421 | super.startSearch(initialQuery, selectInitialQuery, appSearchData, globalSearch); |
| 1422 | } |
| 1423 | |
Leon Scroggins | 1f005d3 | 2009-08-10 17:36:42 -0400 | [diff] [blame] | 1424 | /** |
| 1425 | * Switch tabs. Called by the TitleBarSet when sliding the title bar |
| 1426 | * results in changing tabs. |
Leon Scroggins | 160a7e7 | 2009-08-14 18:28:01 -0400 | [diff] [blame] | 1427 | * @param index Index of the tab to change to, as defined by |
| 1428 | * mTabControl.getTabIndex(Tab t). |
| 1429 | * @return boolean True if we successfully switched to a different tab. If |
| 1430 | * the indexth tab is null, or if that tab is the same as |
| 1431 | * the current one, return false. |
Leon Scroggins | 1f005d3 | 2009-08-10 17:36:42 -0400 | [diff] [blame] | 1432 | */ |
Leon Scroggins | 160a7e7 | 2009-08-14 18:28:01 -0400 | [diff] [blame] | 1433 | /* package */ boolean switchToTab(int index) { |
Leon Scroggins | 1f005d3 | 2009-08-10 17:36:42 -0400 | [diff] [blame] | 1434 | TabControl.Tab tab = mTabControl.getTab(index); |
| 1435 | TabControl.Tab currentTab = mTabControl.getCurrentTab(); |
| 1436 | if (tab == null || tab == currentTab) { |
Leon Scroggins | 160a7e7 | 2009-08-14 18:28:01 -0400 | [diff] [blame] | 1437 | return false; |
Leon Scroggins | 1f005d3 | 2009-08-10 17:36:42 -0400 | [diff] [blame] | 1438 | } |
| 1439 | if (currentTab != null) { |
| 1440 | // currentTab may be null if it was just removed. In that case, |
| 1441 | // we do not need to remove it |
| 1442 | removeTabFromContentView(currentTab); |
| 1443 | } |
Leon Scroggins | 1f005d3 | 2009-08-10 17:36:42 -0400 | [diff] [blame] | 1444 | mTabControl.setCurrentTab(tab); |
| 1445 | attachTabToContentView(tab); |
Grace Kloba | eb6eef4 | 2009-09-15 17:56:32 -0700 | [diff] [blame] | 1446 | resetTitleIconAndProgress(); |
| 1447 | updateLockIconToLatest(); |
Leon Scroggins | 160a7e7 | 2009-08-14 18:28:01 -0400 | [diff] [blame] | 1448 | return true; |
Leon Scroggins | 1f005d3 | 2009-08-10 17:36:42 -0400 | [diff] [blame] | 1449 | } |
| 1450 | |
Leon Scroggins | 0a64ba5 | 2009-09-08 15:35:33 -0400 | [diff] [blame] | 1451 | /* package */ TabControl.Tab openTabToHomePage() { |
| 1452 | return openTabAndShow(mSettings.getHomePage(), false, null); |
| 1453 | } |
| 1454 | |
Leon Scroggins | 1f005d3 | 2009-08-10 17:36:42 -0400 | [diff] [blame] | 1455 | /* package */ void closeCurrentWindow() { |
Leon Scroggins | 1f005d3 | 2009-08-10 17:36:42 -0400 | [diff] [blame] | 1456 | final TabControl.Tab current = mTabControl.getCurrentTab(); |
Leon Scroggins | 160a7e7 | 2009-08-14 18:28:01 -0400 | [diff] [blame] | 1457 | if (mTabControl.getTabCount() == 1) { |
Leon Scroggins | 3044423 | 2009-09-04 18:36:20 -0400 | [diff] [blame] | 1458 | // This is the last tab. Open a new one, with the home |
| 1459 | // page and close the current one. |
Leon Scroggins | 0a64ba5 | 2009-09-08 15:35:33 -0400 | [diff] [blame] | 1460 | TabControl.Tab newTab = openTabToHomePage(); |
Leon Scroggins | 160a7e7 | 2009-08-14 18:28:01 -0400 | [diff] [blame] | 1461 | closeTab(current); |
Leon Scroggins | 160a7e7 | 2009-08-14 18:28:01 -0400 | [diff] [blame] | 1462 | return; |
| 1463 | } |
Leon Scroggins | 1f005d3 | 2009-08-10 17:36:42 -0400 | [diff] [blame] | 1464 | final TabControl.Tab parent = current.getParentTab(); |
Leon Scroggins | 1f005d3 | 2009-08-10 17:36:42 -0400 | [diff] [blame] | 1465 | int indexToShow = -1; |
| 1466 | if (parent != null) { |
| 1467 | indexToShow = mTabControl.getTabIndex(parent); |
| 1468 | } else { |
Leon Scroggins | 160a7e7 | 2009-08-14 18:28:01 -0400 | [diff] [blame] | 1469 | final int currentIndex = mTabControl.getCurrentIndex(); |
| 1470 | // Try to move to the tab to the right |
| 1471 | indexToShow = currentIndex + 1; |
| 1472 | if (indexToShow > mTabControl.getTabCount() - 1) { |
| 1473 | // Try to move to the tab to the left |
| 1474 | indexToShow = currentIndex - 1; |
Leon Scroggins | 1f005d3 | 2009-08-10 17:36:42 -0400 | [diff] [blame] | 1475 | } |
| 1476 | } |
Leon Scroggins | 160a7e7 | 2009-08-14 18:28:01 -0400 | [diff] [blame] | 1477 | if (switchToTab(indexToShow)) { |
| 1478 | // Close window |
| 1479 | closeTab(current); |
| 1480 | } |
Leon Scroggins | 1f005d3 | 2009-08-10 17:36:42 -0400 | [diff] [blame] | 1481 | } |
| 1482 | |
Leon Scroggins | 0a64ba5 | 2009-09-08 15:35:33 -0400 | [diff] [blame] | 1483 | private ActiveTabsPage mActiveTabsPage; |
| 1484 | |
| 1485 | /** |
| 1486 | * Remove the active tabs page. |
| 1487 | * @param needToAttach If true, the active tabs page did not attach a tab |
| 1488 | * to the content view, so we need to do that here. |
| 1489 | */ |
| 1490 | /* package */ void removeActiveTabPage(boolean needToAttach) { |
| 1491 | mContentView.removeView(mActiveTabsPage); |
| 1492 | mActiveTabsPage = null; |
| 1493 | mMenuState = R.id.MAIN_MENU; |
| 1494 | if (needToAttach) { |
| 1495 | attachTabToContentView(mTabControl.getCurrentTab()); |
| 1496 | } |
| 1497 | getTopWindow().requestFocus(); |
| 1498 | } |
| 1499 | |
The Android Open Source Project | 0c90888 | 2009-03-03 19:32:16 -0800 | [diff] [blame] | 1500 | @Override |
| 1501 | public boolean onOptionsItemSelected(MenuItem item) { |
| 1502 | if (!mCanChord) { |
| 1503 | // The user has already fired a shortcut with this hold down of the |
| 1504 | // menu key. |
| 1505 | return false; |
| 1506 | } |
Leon Scroggins | 1f005d3 | 2009-08-10 17:36:42 -0400 | [diff] [blame] | 1507 | if (null == getTopWindow()) { |
Leon Scroggins | 0d7ae0e | 2009-06-05 11:04:45 -0400 | [diff] [blame] | 1508 | return false; |
| 1509 | } |
Grace Kloba | 6ee9c49 | 2009-07-13 10:04:34 -0700 | [diff] [blame] | 1510 | if (mMenuIsDown) { |
| 1511 | // The shortcut action consumes the MENU. Even if it is still down, |
| 1512 | // it won't trigger the next shortcut action. In the case of the |
| 1513 | // shortcut action triggering a new activity, like Bookmarks, we |
| 1514 | // won't get onKeyUp for MENU. So it is important to reset it here. |
| 1515 | mMenuIsDown = false; |
| 1516 | } |
The Android Open Source Project | 0c90888 | 2009-03-03 19:32:16 -0800 | [diff] [blame] | 1517 | switch (item.getItemId()) { |
| 1518 | // -- Main menu |
Leon Scroggins | a81a764 | 2009-08-31 17:05:41 -0400 | [diff] [blame] | 1519 | case R.id.new_tab_menu_id: |
Leon Scroggins | 0a64ba5 | 2009-09-08 15:35:33 -0400 | [diff] [blame] | 1520 | openTabToHomePage(); |
Leon Scroggins | a81a764 | 2009-08-31 17:05:41 -0400 | [diff] [blame] | 1521 | break; |
| 1522 | |
Leon Scroggins | 64b80f3 | 2009-08-07 12:03:34 -0400 | [diff] [blame] | 1523 | case R.id.goto_menu_id: |
Leon Scroggins | 3044423 | 2009-09-04 18:36:20 -0400 | [diff] [blame] | 1524 | bookmarksOrHistoryPicker(false); |
The Android Open Source Project | 0c90888 | 2009-03-03 19:32:16 -0800 | [diff] [blame] | 1525 | break; |
| 1526 | |
Leon Scroggins | 0a64ba5 | 2009-09-08 15:35:33 -0400 | [diff] [blame] | 1527 | case R.id.active_tabs_menu_id: |
| 1528 | mActiveTabsPage = new ActiveTabsPage(this, mTabControl); |
| 1529 | removeTabFromContentView(mTabControl.getCurrentTab()); |
Leon Scroggins | 43de616 | 2009-09-14 19:59:58 -0400 | [diff] [blame] | 1530 | hideFakeTitleBar(); |
Leon Scroggins | 0a64ba5 | 2009-09-08 15:35:33 -0400 | [diff] [blame] | 1531 | mContentView.addView(mActiveTabsPage, COVER_SCREEN_PARAMS); |
| 1532 | mActiveTabsPage.requestFocus(); |
| 1533 | mMenuState = EMPTY_MENU; |
| 1534 | break; |
| 1535 | |
Leon Scroggins | 1f005d3 | 2009-08-10 17:36:42 -0400 | [diff] [blame] | 1536 | case R.id.add_bookmark_menu_id: |
| 1537 | Intent i = new Intent(BrowserActivity.this, |
| 1538 | AddBookmarkPage.class); |
| 1539 | WebView w = getTopWindow(); |
| 1540 | i.putExtra("url", w.getUrl()); |
| 1541 | i.putExtra("title", w.getTitle()); |
Grace Kloba | 83cdb2c | 2009-09-16 00:48:57 -0700 | [diff] [blame] | 1542 | i.putExtra("touch_icon_url", w.getTouchIconUrl()); |
Ben Murdoch | dcc2b6f | 2009-09-21 14:29:20 +0100 | [diff] [blame] | 1543 | i.putExtra("thumbnail", createScreenshot(w)); |
Leon Scroggins | 1f005d3 | 2009-08-10 17:36:42 -0400 | [diff] [blame] | 1544 | startActivity(i); |
The Android Open Source Project | 0c90888 | 2009-03-03 19:32:16 -0800 | [diff] [blame] | 1545 | break; |
| 1546 | |
| 1547 | case R.id.stop_reload_menu_id: |
| 1548 | if (mInLoad) { |
| 1549 | stopLoading(); |
| 1550 | } else { |
| 1551 | getTopWindow().reload(); |
| 1552 | } |
| 1553 | break; |
| 1554 | |
| 1555 | case R.id.back_menu_id: |
| 1556 | getTopWindow().goBack(); |
| 1557 | break; |
| 1558 | |
| 1559 | case R.id.forward_menu_id: |
| 1560 | getTopWindow().goForward(); |
| 1561 | break; |
| 1562 | |
| 1563 | case R.id.close_menu_id: |
| 1564 | // Close the subwindow if it exists. |
| 1565 | if (mTabControl.getCurrentSubWindow() != null) { |
| 1566 | dismissSubWindow(mTabControl.getCurrentTab()); |
| 1567 | break; |
| 1568 | } |
Leon Scroggins | 1f005d3 | 2009-08-10 17:36:42 -0400 | [diff] [blame] | 1569 | closeCurrentWindow(); |
The Android Open Source Project | 0c90888 | 2009-03-03 19:32:16 -0800 | [diff] [blame] | 1570 | break; |
| 1571 | |
| 1572 | case R.id.homepage_menu_id: |
| 1573 | TabControl.Tab current = mTabControl.getCurrentTab(); |
| 1574 | if (current != null) { |
| 1575 | dismissSubWindow(current); |
| 1576 | current.getWebView().loadUrl(mSettings.getHomePage()); |
| 1577 | } |
| 1578 | break; |
| 1579 | |
| 1580 | case R.id.preferences_menu_id: |
| 1581 | Intent intent = new Intent(this, |
| 1582 | BrowserPreferencesPage.class); |
| 1583 | startActivityForResult(intent, PREFERENCES_PAGE); |
| 1584 | break; |
| 1585 | |
| 1586 | case R.id.find_menu_id: |
| 1587 | if (null == mFindDialog) { |
| 1588 | mFindDialog = new FindDialog(this); |
| 1589 | } |
| 1590 | mFindDialog.setWebView(getTopWindow()); |
| 1591 | mFindDialog.show(); |
| 1592 | mMenuState = EMPTY_MENU; |
| 1593 | break; |
| 1594 | |
| 1595 | case R.id.select_text_id: |
| 1596 | getTopWindow().emulateShiftHeld(); |
| 1597 | break; |
| 1598 | case R.id.page_info_menu_id: |
| 1599 | showPageInfo(mTabControl.getCurrentTab(), false); |
| 1600 | break; |
| 1601 | |
| 1602 | case R.id.classic_history_menu_id: |
Leon Scroggins | 3044423 | 2009-09-04 18:36:20 -0400 | [diff] [blame] | 1603 | bookmarksOrHistoryPicker(true); |
The Android Open Source Project | 0c90888 | 2009-03-03 19:32:16 -0800 | [diff] [blame] | 1604 | break; |
| 1605 | |
| 1606 | case R.id.share_page_menu_id: |
Andrei Popescu | 10fdba8 | 2009-09-24 13:25:47 +0100 | [diff] [blame] | 1607 | Browser.sendString(this, getTopWindow().getUrl(), |
| 1608 | getText(R.string.choosertitle_sharevia).toString()); |
The Android Open Source Project | 0c90888 | 2009-03-03 19:32:16 -0800 | [diff] [blame] | 1609 | break; |
| 1610 | |
| 1611 | case R.id.dump_nav_menu_id: |
| 1612 | getTopWindow().debugDump(); |
| 1613 | break; |
| 1614 | |
| 1615 | case R.id.zoom_in_menu_id: |
| 1616 | getTopWindow().zoomIn(); |
| 1617 | break; |
| 1618 | |
| 1619 | case R.id.zoom_out_menu_id: |
| 1620 | getTopWindow().zoomOut(); |
| 1621 | break; |
| 1622 | |
| 1623 | case R.id.view_downloads_menu_id: |
| 1624 | viewDownloads(null); |
| 1625 | break; |
| 1626 | |
The Android Open Source Project | 0c90888 | 2009-03-03 19:32:16 -0800 | [diff] [blame] | 1627 | case R.id.window_one_menu_id: |
| 1628 | case R.id.window_two_menu_id: |
| 1629 | case R.id.window_three_menu_id: |
| 1630 | case R.id.window_four_menu_id: |
| 1631 | case R.id.window_five_menu_id: |
| 1632 | case R.id.window_six_menu_id: |
| 1633 | case R.id.window_seven_menu_id: |
| 1634 | case R.id.window_eight_menu_id: |
| 1635 | { |
| 1636 | int menuid = item.getItemId(); |
| 1637 | for (int id = 0; id < WINDOW_SHORTCUT_ID_ARRAY.length; id++) { |
| 1638 | if (WINDOW_SHORTCUT_ID_ARRAY[id] == menuid) { |
| 1639 | TabControl.Tab desiredTab = mTabControl.getTab(id); |
| 1640 | if (desiredTab != null && |
| 1641 | desiredTab != mTabControl.getCurrentTab()) { |
Leon Scroggins | 1f005d3 | 2009-08-10 17:36:42 -0400 | [diff] [blame] | 1642 | switchToTab(id); |
The Android Open Source Project | 0c90888 | 2009-03-03 19:32:16 -0800 | [diff] [blame] | 1643 | } |
| 1644 | break; |
| 1645 | } |
| 1646 | } |
| 1647 | } |
| 1648 | break; |
| 1649 | |
| 1650 | default: |
| 1651 | if (!super.onOptionsItemSelected(item)) { |
| 1652 | return false; |
| 1653 | } |
| 1654 | // Otherwise fall through. |
| 1655 | } |
| 1656 | mCanChord = false; |
| 1657 | return true; |
| 1658 | } |
| 1659 | |
| 1660 | public void closeFind() { |
| 1661 | mMenuState = R.id.MAIN_MENU; |
| 1662 | } |
| 1663 | |
| 1664 | @Override public boolean onPrepareOptionsMenu(Menu menu) |
| 1665 | { |
| 1666 | // This happens when the user begins to hold down the menu key, so |
| 1667 | // allow them to chord to get a shortcut. |
| 1668 | mCanChord = true; |
| 1669 | // Note: setVisible will decide whether an item is visible; while |
| 1670 | // setEnabled() will decide whether an item is enabled, which also means |
| 1671 | // whether the matching shortcut key will function. |
| 1672 | super.onPrepareOptionsMenu(menu); |
| 1673 | switch (mMenuState) { |
The Android Open Source Project | 0c90888 | 2009-03-03 19:32:16 -0800 | [diff] [blame] | 1674 | case EMPTY_MENU: |
| 1675 | if (mCurrentMenuState != mMenuState) { |
| 1676 | menu.setGroupVisible(R.id.MAIN_MENU, false); |
| 1677 | menu.setGroupEnabled(R.id.MAIN_MENU, false); |
| 1678 | menu.setGroupEnabled(R.id.MAIN_SHORTCUT_MENU, false); |
The Android Open Source Project | 0c90888 | 2009-03-03 19:32:16 -0800 | [diff] [blame] | 1679 | } |
| 1680 | break; |
| 1681 | default: |
| 1682 | if (mCurrentMenuState != mMenuState) { |
| 1683 | menu.setGroupVisible(R.id.MAIN_MENU, true); |
| 1684 | menu.setGroupEnabled(R.id.MAIN_MENU, true); |
| 1685 | menu.setGroupEnabled(R.id.MAIN_SHORTCUT_MENU, true); |
The Android Open Source Project | 0c90888 | 2009-03-03 19:32:16 -0800 | [diff] [blame] | 1686 | } |
| 1687 | final WebView w = getTopWindow(); |
| 1688 | boolean canGoBack = false; |
| 1689 | boolean canGoForward = false; |
| 1690 | boolean isHome = false; |
| 1691 | if (w != null) { |
| 1692 | canGoBack = w.canGoBack(); |
| 1693 | canGoForward = w.canGoForward(); |
| 1694 | isHome = mSettings.getHomePage().equals(w.getUrl()); |
| 1695 | } |
| 1696 | final MenuItem back = menu.findItem(R.id.back_menu_id); |
| 1697 | back.setEnabled(canGoBack); |
| 1698 | |
| 1699 | final MenuItem home = menu.findItem(R.id.homepage_menu_id); |
| 1700 | home.setEnabled(!isHome); |
| 1701 | |
| 1702 | menu.findItem(R.id.forward_menu_id) |
| 1703 | .setEnabled(canGoForward); |
| 1704 | |
Leon Scroggins | a81a764 | 2009-08-31 17:05:41 -0400 | [diff] [blame] | 1705 | menu.findItem(R.id.new_tab_menu_id).setEnabled( |
| 1706 | mTabControl.getTabCount() < TabControl.MAX_TABS); |
| 1707 | |
The Android Open Source Project | 0c90888 | 2009-03-03 19:32:16 -0800 | [diff] [blame] | 1708 | // decide whether to show the share link option |
| 1709 | PackageManager pm = getPackageManager(); |
| 1710 | Intent send = new Intent(Intent.ACTION_SEND); |
| 1711 | send.setType("text/plain"); |
| 1712 | ResolveInfo ri = pm.resolveActivity(send, PackageManager.MATCH_DEFAULT_ONLY); |
| 1713 | menu.findItem(R.id.share_page_menu_id).setVisible(ri != null); |
| 1714 | |
The Android Open Source Project | 0c90888 | 2009-03-03 19:32:16 -0800 | [diff] [blame] | 1715 | boolean isNavDump = mSettings.isNavDump(); |
| 1716 | final MenuItem nav = menu.findItem(R.id.dump_nav_menu_id); |
| 1717 | nav.setVisible(isNavDump); |
| 1718 | nav.setEnabled(isNavDump); |
| 1719 | break; |
| 1720 | } |
| 1721 | mCurrentMenuState = mMenuState; |
| 1722 | return true; |
| 1723 | } |
| 1724 | |
| 1725 | @Override |
| 1726 | public void onCreateContextMenu(ContextMenu menu, View v, |
| 1727 | ContextMenuInfo menuInfo) { |
| 1728 | WebView webview = (WebView) v; |
| 1729 | WebView.HitTestResult result = webview.getHitTestResult(); |
| 1730 | if (result == null) { |
| 1731 | return; |
| 1732 | } |
| 1733 | |
| 1734 | int type = result.getType(); |
| 1735 | if (type == WebView.HitTestResult.UNKNOWN_TYPE) { |
| 1736 | Log.w(LOGTAG, |
| 1737 | "We should not show context menu when nothing is touched"); |
| 1738 | return; |
| 1739 | } |
| 1740 | if (type == WebView.HitTestResult.EDIT_TEXT_TYPE) { |
| 1741 | // let TextView handles context menu |
| 1742 | return; |
| 1743 | } |
| 1744 | |
| 1745 | // Note, http://b/issue?id=1106666 is requesting that |
| 1746 | // an inflated menu can be used again. This is not available |
| 1747 | // yet, so inflate each time (yuk!) |
| 1748 | MenuInflater inflater = getMenuInflater(); |
| 1749 | inflater.inflate(R.menu.browsercontext, menu); |
| 1750 | |
| 1751 | // Show the correct menu group |
| 1752 | String extra = result.getExtra(); |
| 1753 | menu.setGroupVisible(R.id.PHONE_MENU, |
| 1754 | type == WebView.HitTestResult.PHONE_TYPE); |
| 1755 | menu.setGroupVisible(R.id.EMAIL_MENU, |
| 1756 | type == WebView.HitTestResult.EMAIL_TYPE); |
| 1757 | menu.setGroupVisible(R.id.GEO_MENU, |
| 1758 | type == WebView.HitTestResult.GEO_TYPE); |
| 1759 | menu.setGroupVisible(R.id.IMAGE_MENU, |
| 1760 | type == WebView.HitTestResult.IMAGE_TYPE |
| 1761 | || type == WebView.HitTestResult.SRC_IMAGE_ANCHOR_TYPE); |
| 1762 | menu.setGroupVisible(R.id.ANCHOR_MENU, |
| 1763 | type == WebView.HitTestResult.SRC_ANCHOR_TYPE |
| 1764 | || type == WebView.HitTestResult.SRC_IMAGE_ANCHOR_TYPE); |
| 1765 | |
| 1766 | // Setup custom handling depending on the type |
| 1767 | switch (type) { |
| 1768 | case WebView.HitTestResult.PHONE_TYPE: |
| 1769 | menu.setHeaderTitle(Uri.decode(extra)); |
| 1770 | menu.findItem(R.id.dial_context_menu_id).setIntent( |
| 1771 | new Intent(Intent.ACTION_VIEW, Uri |
| 1772 | .parse(WebView.SCHEME_TEL + extra))); |
| 1773 | Intent addIntent = new Intent(Intent.ACTION_INSERT_OR_EDIT); |
| 1774 | addIntent.putExtra(Insert.PHONE, Uri.decode(extra)); |
Cary Clark | 5e335a3 | 2009-09-22 14:53:11 -0400 | [diff] [blame] | 1775 | addIntent.setType(ContactsContract.Contacts.CONTENT_ITEM_TYPE); |
The Android Open Source Project | 0c90888 | 2009-03-03 19:32:16 -0800 | [diff] [blame] | 1776 | menu.findItem(R.id.add_contact_context_menu_id).setIntent( |
| 1777 | addIntent); |
| 1778 | menu.findItem(R.id.copy_phone_context_menu_id).setOnMenuItemClickListener( |
| 1779 | new Copy(extra)); |
| 1780 | break; |
| 1781 | |
| 1782 | case WebView.HitTestResult.EMAIL_TYPE: |
| 1783 | menu.setHeaderTitle(extra); |
| 1784 | menu.findItem(R.id.email_context_menu_id).setIntent( |
| 1785 | new Intent(Intent.ACTION_VIEW, Uri |
| 1786 | .parse(WebView.SCHEME_MAILTO + extra))); |
| 1787 | menu.findItem(R.id.copy_mail_context_menu_id).setOnMenuItemClickListener( |
| 1788 | new Copy(extra)); |
| 1789 | break; |
| 1790 | |
| 1791 | case WebView.HitTestResult.GEO_TYPE: |
| 1792 | menu.setHeaderTitle(extra); |
| 1793 | menu.findItem(R.id.map_context_menu_id).setIntent( |
| 1794 | new Intent(Intent.ACTION_VIEW, Uri |
| 1795 | .parse(WebView.SCHEME_GEO |
| 1796 | + URLEncoder.encode(extra)))); |
| 1797 | menu.findItem(R.id.copy_geo_context_menu_id).setOnMenuItemClickListener( |
| 1798 | new Copy(extra)); |
| 1799 | break; |
| 1800 | |
| 1801 | case WebView.HitTestResult.SRC_ANCHOR_TYPE: |
| 1802 | case WebView.HitTestResult.SRC_IMAGE_ANCHOR_TYPE: |
| 1803 | TextView titleView = (TextView) LayoutInflater.from(this) |
| 1804 | .inflate(android.R.layout.browser_link_context_header, |
| 1805 | null); |
| 1806 | titleView.setText(extra); |
| 1807 | menu.setHeaderView(titleView); |
| 1808 | // decide whether to show the open link in new tab option |
| 1809 | menu.findItem(R.id.open_newtab_context_menu_id).setVisible( |
| 1810 | mTabControl.getTabCount() < TabControl.MAX_TABS); |
| 1811 | PackageManager pm = getPackageManager(); |
| 1812 | Intent send = new Intent(Intent.ACTION_SEND); |
| 1813 | send.setType("text/plain"); |
| 1814 | ResolveInfo ri = pm.resolveActivity(send, PackageManager.MATCH_DEFAULT_ONLY); |
| 1815 | menu.findItem(R.id.share_link_context_menu_id).setVisible(ri != null); |
| 1816 | if (type == WebView.HitTestResult.SRC_ANCHOR_TYPE) { |
| 1817 | break; |
| 1818 | } |
| 1819 | // otherwise fall through to handle image part |
| 1820 | case WebView.HitTestResult.IMAGE_TYPE: |
| 1821 | if (type == WebView.HitTestResult.IMAGE_TYPE) { |
| 1822 | menu.setHeaderTitle(extra); |
| 1823 | } |
| 1824 | menu.findItem(R.id.view_image_context_menu_id).setIntent( |
| 1825 | new Intent(Intent.ACTION_VIEW, Uri.parse(extra))); |
| 1826 | menu.findItem(R.id.download_context_menu_id). |
| 1827 | setOnMenuItemClickListener(new Download(extra)); |
| 1828 | break; |
| 1829 | |
| 1830 | default: |
| 1831 | Log.w(LOGTAG, "We should not get here."); |
| 1832 | break; |
| 1833 | } |
| 1834 | } |
| 1835 | |
The Android Open Source Project | 0c90888 | 2009-03-03 19:32:16 -0800 | [diff] [blame] | 1836 | // Attach the given tab to the content view. |
Grace Kloba | c928c30 | 2009-09-17 11:51:21 -0700 | [diff] [blame] | 1837 | // this should only be called for the current tab. |
The Android Open Source Project | 0c90888 | 2009-03-03 19:32:16 -0800 | [diff] [blame] | 1838 | private void attachTabToContentView(TabControl.Tab t) { |
Steve Block | 2bc6991 | 2009-07-30 14:45:13 +0100 | [diff] [blame] | 1839 | // Attach the container that contains the main WebView and any other UI |
| 1840 | // associated with the tab. |
Patrick Scott | d011953 | 2009-09-17 08:00:31 -0400 | [diff] [blame] | 1841 | t.attachTabToContentView(mContentView); |
Ben Murdoch | bff2d60 | 2009-07-01 20:19:05 +0100 | [diff] [blame] | 1842 | |
| 1843 | if (mShouldShowErrorConsole) { |
| 1844 | ErrorConsoleView errorConsole = mTabControl.getCurrentErrorConsole(true); |
| 1845 | if (errorConsole.numberOfErrors() == 0) { |
| 1846 | errorConsole.showConsole(ErrorConsoleView.SHOW_NONE); |
| 1847 | } else { |
| 1848 | errorConsole.showConsole(ErrorConsoleView.SHOW_MINIMIZED); |
| 1849 | } |
| 1850 | |
| 1851 | mErrorConsoleContainer.addView(errorConsole, |
| 1852 | new LinearLayout.LayoutParams(ViewGroup.LayoutParams.FILL_PARENT, |
| 1853 | ViewGroup.LayoutParams.WRAP_CONTENT)); |
| 1854 | } |
| 1855 | |
Grace Kloba | c928c30 | 2009-09-17 11:51:21 -0700 | [diff] [blame] | 1856 | setLockIconType(t.getLockIconType()); |
| 1857 | setPrevLockType(t.getPrevLockIconType()); |
| 1858 | |
| 1859 | // this is to match the code in removeTabFromContentView() |
| 1860 | if (!mPageStarted && t.getTopWindow().getProgress() < 100) { |
| 1861 | mPageStarted = true; |
Grace Kloba | eb6eef4 | 2009-09-15 17:56:32 -0700 | [diff] [blame] | 1862 | } |
| 1863 | |
Leon Scroggins | 39ab28e | 2009-09-02 21:20:30 -0400 | [diff] [blame] | 1864 | WebView view = t.getWebView(); |
Leon Scroggins | 55a5bc2 | 2009-09-04 17:00:08 -0400 | [diff] [blame] | 1865 | view.setEmbeddedTitleBar(mTitleBar); |
The Android Open Source Project | 0c90888 | 2009-03-03 19:32:16 -0800 | [diff] [blame] | 1866 | // Request focus on the top window. |
| 1867 | t.getTopWindow().requestFocus(); |
| 1868 | } |
| 1869 | |
| 1870 | // Attach a sub window to the main WebView of the given tab. |
| 1871 | private void attachSubWindow(TabControl.Tab t) { |
Patrick Scott | d011953 | 2009-09-17 08:00:31 -0400 | [diff] [blame] | 1872 | t.attachSubWindow(mContentView); |
| 1873 | getTopWindow().requestFocus(); |
The Android Open Source Project | 0c90888 | 2009-03-03 19:32:16 -0800 | [diff] [blame] | 1874 | } |
| 1875 | |
| 1876 | // Remove the given tab from the content view. |
| 1877 | private void removeTabFromContentView(TabControl.Tab t) { |
Steve Block | 2bc6991 | 2009-07-30 14:45:13 +0100 | [diff] [blame] | 1878 | // Remove the container that contains the main WebView. |
Patrick Scott | d011953 | 2009-09-17 08:00:31 -0400 | [diff] [blame] | 1879 | t.removeTabFromContentView(mContentView); |
Ben Murdoch | bff2d60 | 2009-07-01 20:19:05 +0100 | [diff] [blame] | 1880 | |
| 1881 | if (mTabControl.getCurrentErrorConsole(false) != null) { |
| 1882 | mErrorConsoleContainer.removeView(mTabControl.getCurrentErrorConsole(false)); |
| 1883 | } |
| 1884 | |
Leon Scroggins | 39ab28e | 2009-09-02 21:20:30 -0400 | [diff] [blame] | 1885 | WebView view = t.getWebView(); |
Leon Scroggins | bb85b90 | 2009-09-14 19:27:20 -0400 | [diff] [blame] | 1886 | if (view != null) { |
| 1887 | view.setEmbeddedTitleBar(null); |
| 1888 | } |
Leon Scroggins | 39ab28e | 2009-09-02 21:20:30 -0400 | [diff] [blame] | 1889 | |
Grace Kloba | c928c30 | 2009-09-17 11:51:21 -0700 | [diff] [blame] | 1890 | // unlike attachTabToContentView(), removeTabFromContentView() can be |
| 1891 | // called for the non-current tab. Need to add the check. |
Grace Kloba | eb6eef4 | 2009-09-15 17:56:32 -0700 | [diff] [blame] | 1892 | if (t == mTabControl.getCurrentTab()) { |
| 1893 | t.setLockIconType(getLockIconType()); |
| 1894 | t.setPrevLockIconType(getPrevLockType()); |
Grace Kloba | c928c30 | 2009-09-17 11:51:21 -0700 | [diff] [blame] | 1895 | |
| 1896 | // this is not a perfect solution. But currently there is one |
| 1897 | // WebViewClient for all the WebView. if user switches from an |
| 1898 | // in-load window to an already loaded window, mPageStarted will not |
| 1899 | // be set to false. If user leaves the Browser, pauseWebViewTimers() |
| 1900 | // won't do anything and leaves the timer running even Browser is in |
| 1901 | // the background. |
| 1902 | if (mPageStarted) { |
| 1903 | mPageStarted = false; |
| 1904 | } |
Grace Kloba | eb6eef4 | 2009-09-15 17:56:32 -0700 | [diff] [blame] | 1905 | } |
The Android Open Source Project | 0c90888 | 2009-03-03 19:32:16 -0800 | [diff] [blame] | 1906 | } |
| 1907 | |
| 1908 | // Remove the sub window if it exists. Also called by TabControl when the |
| 1909 | // user clicks the 'X' to dismiss a sub window. |
| 1910 | /* package */ void dismissSubWindow(TabControl.Tab t) { |
Patrick Scott | d011953 | 2009-09-17 08:00:31 -0400 | [diff] [blame] | 1911 | t.removeSubWindow(mContentView); |
| 1912 | // Tell the TabControl to dismiss the subwindow. This will destroy |
| 1913 | // the WebView. |
| 1914 | mTabControl.dismissSubWindow(t); |
| 1915 | getTopWindow().requestFocus(); |
The Android Open Source Project | 0c90888 | 2009-03-03 19:32:16 -0800 | [diff] [blame] | 1916 | } |
| 1917 | |
Leon Scroggins | 1f005d3 | 2009-08-10 17:36:42 -0400 | [diff] [blame] | 1918 | // A wrapper function of {@link #openTabAndShow(UrlData, boolean, String)} |
Mitsuru Oshima | 25ad8ab | 2009-06-10 16:26:07 -0700 | [diff] [blame] | 1919 | // that accepts url as string. |
Leon Scroggins | 1f005d3 | 2009-08-10 17:36:42 -0400 | [diff] [blame] | 1920 | private TabControl.Tab openTabAndShow(String url, boolean closeOnExit, |
| 1921 | String appId) { |
| 1922 | return openTabAndShow(new UrlData(url), closeOnExit, appId); |
The Android Open Source Project | 0c90888 | 2009-03-03 19:32:16 -0800 | [diff] [blame] | 1923 | } |
| 1924 | |
| 1925 | // This method does a ton of stuff. It will attempt to create a new tab |
| 1926 | // if we haven't reached MAX_TABS. Otherwise it uses the current tab. If |
Leon Scroggins | 1f005d3 | 2009-08-10 17:36:42 -0400 | [diff] [blame] | 1927 | // url isn't null, it will load the given url. |
| 1928 | /* package */ TabControl.Tab openTabAndShow(UrlData urlData, |
The Android Open Source Project | f59ec87 | 2009-03-13 13:04:24 -0700 | [diff] [blame] | 1929 | boolean closeOnExit, String appId) { |
The Android Open Source Project | 0c90888 | 2009-03-03 19:32:16 -0800 | [diff] [blame] | 1930 | final boolean newTab = mTabControl.getTabCount() != TabControl.MAX_TABS; |
| 1931 | final TabControl.Tab currentTab = mTabControl.getCurrentTab(); |
| 1932 | if (newTab) { |
Leon Scroggins | 1f005d3 | 2009-08-10 17:36:42 -0400 | [diff] [blame] | 1933 | final TabControl.Tab tab = mTabControl.createNewTab( |
| 1934 | closeOnExit, appId, urlData.mUrl); |
| 1935 | WebView webview = tab.getWebView(); |
Leon Scroggins | 0a64ba5 | 2009-09-08 15:35:33 -0400 | [diff] [blame] | 1936 | // If the last tab was removed from the active tabs page, currentTab |
| 1937 | // will be null. |
| 1938 | if (currentTab != null) { |
| 1939 | removeTabFromContentView(currentTab); |
| 1940 | } |
Patrick Scott | 8bbd69f | 2009-08-14 13:35:53 -0400 | [diff] [blame] | 1941 | // We must set the new tab as the current tab to reflect the old |
| 1942 | // animation behavior. |
| 1943 | mTabControl.setCurrentTab(tab); |
Grace Kloba | eb6eef4 | 2009-09-15 17:56:32 -0700 | [diff] [blame] | 1944 | attachTabToContentView(tab); |
Leon Scroggins | 160a7e7 | 2009-08-14 18:28:01 -0400 | [diff] [blame] | 1945 | if (!urlData.isEmpty()) { |
Leon Scroggins | 1f005d3 | 2009-08-10 17:36:42 -0400 | [diff] [blame] | 1946 | urlData.loadIn(webview); |
| 1947 | } |
| 1948 | return tab; |
| 1949 | } else { |
| 1950 | // Get rid of the subwindow if it exists |
| 1951 | dismissSubWindow(currentTab); |
| 1952 | if (!urlData.isEmpty()) { |
| 1953 | // Load the given url. |
| 1954 | urlData.loadIn(currentTab.getWebView()); |
The Android Open Source Project | 0c90888 | 2009-03-03 19:32:16 -0800 | [diff] [blame] | 1955 | } |
| 1956 | } |
Grace Kloba | c918184 | 2009-04-14 08:53:22 -0700 | [diff] [blame] | 1957 | return currentTab; |
The Android Open Source Project | 0c90888 | 2009-03-03 19:32:16 -0800 | [diff] [blame] | 1958 | } |
| 1959 | |
Grace Kloba | c918184 | 2009-04-14 08:53:22 -0700 | [diff] [blame] | 1960 | private TabControl.Tab openTab(String url) { |
The Android Open Source Project | 0c90888 | 2009-03-03 19:32:16 -0800 | [diff] [blame] | 1961 | if (mSettings.openInBackground()) { |
The Android Open Source Project | f59ec87 | 2009-03-13 13:04:24 -0700 | [diff] [blame] | 1962 | TabControl.Tab t = mTabControl.createNewTab(); |
The Android Open Source Project | 0c90888 | 2009-03-03 19:32:16 -0800 | [diff] [blame] | 1963 | if (t != null) { |
Leon Scroggins | 1f005d3 | 2009-08-10 17:36:42 -0400 | [diff] [blame] | 1964 | WebView view = t.getWebView(); |
Leon Scroggins | 1f005d3 | 2009-08-10 17:36:42 -0400 | [diff] [blame] | 1965 | view.loadUrl(url); |
The Android Open Source Project | 0c90888 | 2009-03-03 19:32:16 -0800 | [diff] [blame] | 1966 | } |
Grace Kloba | c918184 | 2009-04-14 08:53:22 -0700 | [diff] [blame] | 1967 | return t; |
The Android Open Source Project | 0c90888 | 2009-03-03 19:32:16 -0800 | [diff] [blame] | 1968 | } else { |
Leon Scroggins | 1f005d3 | 2009-08-10 17:36:42 -0400 | [diff] [blame] | 1969 | return openTabAndShow(url, false, null); |
The Android Open Source Project | 0c90888 | 2009-03-03 19:32:16 -0800 | [diff] [blame] | 1970 | } |
| 1971 | } |
| 1972 | |
| 1973 | private class Copy implements OnMenuItemClickListener { |
| 1974 | private CharSequence mText; |
| 1975 | |
| 1976 | public boolean onMenuItemClick(MenuItem item) { |
| 1977 | copy(mText); |
| 1978 | return true; |
| 1979 | } |
| 1980 | |
| 1981 | public Copy(CharSequence toCopy) { |
| 1982 | mText = toCopy; |
| 1983 | } |
| 1984 | } |
| 1985 | |
| 1986 | private class Download implements OnMenuItemClickListener { |
| 1987 | private String mText; |
| 1988 | |
| 1989 | public boolean onMenuItemClick(MenuItem item) { |
| 1990 | onDownloadStartNoStream(mText, null, null, null, -1); |
| 1991 | return true; |
| 1992 | } |
| 1993 | |
| 1994 | public Download(String toDownload) { |
| 1995 | mText = toDownload; |
| 1996 | } |
| 1997 | } |
| 1998 | |
| 1999 | private void copy(CharSequence text) { |
| 2000 | try { |
| 2001 | IClipboard clip = IClipboard.Stub.asInterface(ServiceManager.getService("clipboard")); |
| 2002 | if (clip != null) { |
| 2003 | clip.setClipboardText(text); |
| 2004 | } |
| 2005 | } catch (android.os.RemoteException e) { |
| 2006 | Log.e(LOGTAG, "Copy failed", e); |
| 2007 | } |
| 2008 | } |
| 2009 | |
| 2010 | /** |
The Android Open Source Project | 0c90888 | 2009-03-03 19:32:16 -0800 | [diff] [blame] | 2011 | * Resets the browser title-view to whatever it must be |
| 2012 | * (for example, if we had a loading error) |
| 2013 | * When we have a new page, we call resetTitle, when we |
| 2014 | * have to reset the titlebar to whatever it used to be |
| 2015 | * (for example, if the user chose to stop loading), we |
| 2016 | * call resetTitleAndRevertLockIcon. |
| 2017 | */ |
| 2018 | /* package */ void resetTitleAndRevertLockIcon() { |
| 2019 | revertLockIcon(); |
| 2020 | resetTitleIconAndProgress(); |
| 2021 | } |
| 2022 | |
| 2023 | /** |
| 2024 | * Reset the title, favicon, and progress. |
| 2025 | */ |
| 2026 | private void resetTitleIconAndProgress() { |
| 2027 | WebView current = mTabControl.getCurrentWebView(); |
| 2028 | if (current == null) { |
| 2029 | return; |
| 2030 | } |
| 2031 | resetTitleAndIcon(current); |
| 2032 | int progress = current.getProgress(); |
The Android Open Source Project | 0c90888 | 2009-03-03 19:32:16 -0800 | [diff] [blame] | 2033 | mWebChromeClient.onProgressChanged(current, progress); |
| 2034 | } |
| 2035 | |
| 2036 | // Reset the title and the icon based on the given item. |
| 2037 | private void resetTitleAndIcon(WebView view) { |
| 2038 | WebHistoryItem item = view.copyBackForwardList().getCurrentItem(); |
| 2039 | if (item != null) { |
Leon Scroggins | 6857939 | 2009-09-15 15:31:54 -0400 | [diff] [blame] | 2040 | setUrlTitle(item.getUrl(), item.getTitle()); |
The Android Open Source Project | 0c90888 | 2009-03-03 19:32:16 -0800 | [diff] [blame] | 2041 | setFavicon(item.getFavicon()); |
| 2042 | } else { |
Leon Scroggins | 6857939 | 2009-09-15 15:31:54 -0400 | [diff] [blame] | 2043 | setUrlTitle(null, null); |
The Android Open Source Project | 0c90888 | 2009-03-03 19:32:16 -0800 | [diff] [blame] | 2044 | setFavicon(null); |
| 2045 | } |
| 2046 | } |
| 2047 | |
| 2048 | /** |
| 2049 | * Sets a title composed of the URL and the title string. |
| 2050 | * @param url The URL of the site being loaded. |
| 2051 | * @param title The title of the site being loaded. |
| 2052 | */ |
Leon Scroggins | 6857939 | 2009-09-15 15:31:54 -0400 | [diff] [blame] | 2053 | private void setUrlTitle(String url, String title) { |
The Android Open Source Project | 0c90888 | 2009-03-03 19:32:16 -0800 | [diff] [blame] | 2054 | mUrl = url; |
| 2055 | mTitle = title; |
| 2056 | |
Leon Scroggins | 6857939 | 2009-09-15 15:31:54 -0400 | [diff] [blame] | 2057 | mTitleBar.setTitleAndUrl(title, url); |
Leon Scroggins | 3bbb6ca | 2009-09-09 12:51:10 -0400 | [diff] [blame] | 2058 | if (mFakeTitleBar != null) { |
| 2059 | mFakeTitleBar.setTitleAndUrl(title, url); |
The Android Open Source Project | 0c90888 | 2009-03-03 19:32:16 -0800 | [diff] [blame] | 2060 | } |
| 2061 | } |
| 2062 | |
| 2063 | /** |
The Android Open Source Project | 0c90888 | 2009-03-03 19:32:16 -0800 | [diff] [blame] | 2064 | * @param url The URL to build a title version of the URL from. |
| 2065 | * @return The title version of the URL or null if fails. |
| 2066 | * The title version of the URL can be either the URL hostname, |
| 2067 | * or the hostname with an "https://" prefix (for secure URLs), |
| 2068 | * or an empty string if, for example, the URL in question is a |
| 2069 | * file:// URL with no hostname. |
| 2070 | */ |
Leon Scroggins | 32e14a6 | 2009-06-11 10:26:34 -0400 | [diff] [blame] | 2071 | /* package */ static String buildTitleUrl(String url) { |
The Android Open Source Project | 0c90888 | 2009-03-03 19:32:16 -0800 | [diff] [blame] | 2072 | String titleUrl = null; |
| 2073 | |
| 2074 | if (url != null) { |
| 2075 | try { |
| 2076 | // parse the url string |
| 2077 | URL urlObj = new URL(url); |
| 2078 | if (urlObj != null) { |
| 2079 | titleUrl = ""; |
| 2080 | |
| 2081 | String protocol = urlObj.getProtocol(); |
| 2082 | String host = urlObj.getHost(); |
| 2083 | |
| 2084 | if (host != null && 0 < host.length()) { |
| 2085 | titleUrl = host; |
| 2086 | if (protocol != null) { |
| 2087 | // if a secure site, add an "https://" prefix! |
| 2088 | if (protocol.equalsIgnoreCase("https")) { |
| 2089 | titleUrl = protocol + "://" + host; |
| 2090 | } |
| 2091 | } |
| 2092 | } |
| 2093 | } |
| 2094 | } catch (MalformedURLException e) {} |
| 2095 | } |
| 2096 | |
| 2097 | return titleUrl; |
| 2098 | } |
| 2099 | |
| 2100 | // Set the favicon in the title bar. |
| 2101 | private void setFavicon(Bitmap icon) { |
Leon Scroggins | 6857939 | 2009-09-15 15:31:54 -0400 | [diff] [blame] | 2102 | mTitleBar.setFavicon(icon); |
Leon Scroggins | 3bbb6ca | 2009-09-09 12:51:10 -0400 | [diff] [blame] | 2103 | if (mFakeTitleBar != null) { |
| 2104 | mFakeTitleBar.setFavicon(icon); |
The Android Open Source Project | 0c90888 | 2009-03-03 19:32:16 -0800 | [diff] [blame] | 2105 | } |
The Android Open Source Project | 0c90888 | 2009-03-03 19:32:16 -0800 | [diff] [blame] | 2106 | } |
| 2107 | |
| 2108 | /** |
| 2109 | * Saves the current lock-icon state before resetting |
| 2110 | * the lock icon. If we have an error, we may need to |
| 2111 | * roll back to the previous state. |
| 2112 | */ |
| 2113 | private void saveLockIcon() { |
| 2114 | mPrevLockType = mLockIconType; |
| 2115 | } |
| 2116 | |
| 2117 | /** |
| 2118 | * Reverts the lock-icon state to the last saved state, |
| 2119 | * for example, if we had an error, and need to cancel |
| 2120 | * the load. |
| 2121 | */ |
| 2122 | private void revertLockIcon() { |
| 2123 | mLockIconType = mPrevLockType; |
| 2124 | |
Dave Bort | 31a6d1c | 2009-04-13 15:56:49 -0700 | [diff] [blame] | 2125 | if (LOGV_ENABLED) { |
The Android Open Source Project | 0c90888 | 2009-03-03 19:32:16 -0800 | [diff] [blame] | 2126 | Log.v(LOGTAG, "BrowserActivity.revertLockIcon:" + |
| 2127 | " revert lock icon to " + mLockIconType); |
| 2128 | } |
| 2129 | |
Leon Scroggins | 3bbb6ca | 2009-09-09 12:51:10 -0400 | [diff] [blame] | 2130 | updateLockIconToLatest(); |
The Android Open Source Project | 0c90888 | 2009-03-03 19:32:16 -0800 | [diff] [blame] | 2131 | } |
| 2132 | |
Leon Scroggins | 1f005d3 | 2009-08-10 17:36:42 -0400 | [diff] [blame] | 2133 | /** |
Leon Scroggins | 0a64ba5 | 2009-09-08 15:35:33 -0400 | [diff] [blame] | 2134 | * Close the tab, remove its associated title bar, and adjust mTabControl's |
| 2135 | * current tab to a valid value. |
Leon Scroggins | 1f005d3 | 2009-08-10 17:36:42 -0400 | [diff] [blame] | 2136 | */ |
Leon Scroggins | 0a64ba5 | 2009-09-08 15:35:33 -0400 | [diff] [blame] | 2137 | /* package */ void closeTab(TabControl.Tab t) { |
| 2138 | int currentIndex = mTabControl.getCurrentIndex(); |
| 2139 | int removeIndex = mTabControl.getTabIndex(t); |
Leon Scroggins | 1f005d3 | 2009-08-10 17:36:42 -0400 | [diff] [blame] | 2140 | mTabControl.removeTab(t); |
Leon Scroggins | 0a64ba5 | 2009-09-08 15:35:33 -0400 | [diff] [blame] | 2141 | if (currentIndex >= removeIndex && currentIndex != 0) { |
| 2142 | currentIndex--; |
| 2143 | } |
| 2144 | mTabControl.setCurrentTab(mTabControl.getTab(currentIndex)); |
Andrei Popescu | a5bf1de | 2009-09-23 16:39:23 +0100 | [diff] [blame] | 2145 | resetTitleIconAndProgress(); |
The Android Open Source Project | 0c90888 | 2009-03-03 19:32:16 -0800 | [diff] [blame] | 2146 | } |
| 2147 | |
| 2148 | private void goBackOnePageOrQuit() { |
| 2149 | TabControl.Tab current = mTabControl.getCurrentTab(); |
| 2150 | if (current == null) { |
| 2151 | /* |
| 2152 | * Instead of finishing the activity, simply push this to the back |
| 2153 | * of the stack and let ActivityManager to choose the foreground |
| 2154 | * activity. As BrowserActivity is singleTask, it will be always the |
| 2155 | * root of the task. So we can use either true or false for |
| 2156 | * moveTaskToBack(). |
| 2157 | */ |
| 2158 | moveTaskToBack(true); |
Grace Kloba | 00d85e7 | 2009-09-23 18:50:05 -0700 | [diff] [blame] | 2159 | return; |
The Android Open Source Project | 0c90888 | 2009-03-03 19:32:16 -0800 | [diff] [blame] | 2160 | } |
| 2161 | WebView w = current.getWebView(); |
| 2162 | if (w.canGoBack()) { |
| 2163 | w.goBack(); |
| 2164 | } else { |
| 2165 | // Check to see if we are closing a window that was created by |
| 2166 | // another window. If so, we switch back to that window. |
| 2167 | TabControl.Tab parent = current.getParentTab(); |
| 2168 | if (parent != null) { |
Leon Scroggins | 1f005d3 | 2009-08-10 17:36:42 -0400 | [diff] [blame] | 2169 | switchToTab(mTabControl.getTabIndex(parent)); |
| 2170 | // Now we close the other tab |
| 2171 | closeTab(current); |
The Android Open Source Project | 0c90888 | 2009-03-03 19:32:16 -0800 | [diff] [blame] | 2172 | } else { |
| 2173 | if (current.closeOnExit()) { |
Grace Kloba | bb0af5c | 2009-09-01 00:56:09 -0700 | [diff] [blame] | 2174 | // force mPageStarted to be false as we are going to either |
| 2175 | // finish the activity or remove the tab. This will ensure |
| 2176 | // pauseWebView() taking action. |
| 2177 | mPageStarted = false; |
The Android Open Source Project | 0c90888 | 2009-03-03 19:32:16 -0800 | [diff] [blame] | 2178 | if (mTabControl.getTabCount() == 1) { |
| 2179 | finish(); |
| 2180 | return; |
| 2181 | } |
Mike Reed | 7bfa63b | 2009-05-28 11:08:32 -0400 | [diff] [blame] | 2182 | // call pauseWebViewTimers() now, we won't be able to call |
| 2183 | // it in onPause() as the WebView won't be valid. |
Grace Kloba | ec1b5ad | 2009-08-18 08:42:32 -0700 | [diff] [blame] | 2184 | // Temporarily change mActivityInPause to be true as |
| 2185 | // pauseWebViewTimers() will do nothing if mActivityInPause |
| 2186 | // is false. |
Grace Kloba | 918e1d7 | 2009-08-13 14:55:06 -0700 | [diff] [blame] | 2187 | boolean savedState = mActivityInPause; |
| 2188 | if (savedState) { |
Grace Kloba | ec1b5ad | 2009-08-18 08:42:32 -0700 | [diff] [blame] | 2189 | Log.e(LOGTAG, "BrowserActivity is already paused " |
| 2190 | + "while handing goBackOnePageOrQuit."); |
Grace Kloba | 918e1d7 | 2009-08-13 14:55:06 -0700 | [diff] [blame] | 2191 | } |
| 2192 | mActivityInPause = true; |
Mike Reed | 7bfa63b | 2009-05-28 11:08:32 -0400 | [diff] [blame] | 2193 | pauseWebViewTimers(); |
Grace Kloba | 918e1d7 | 2009-08-13 14:55:06 -0700 | [diff] [blame] | 2194 | mActivityInPause = savedState; |
The Android Open Source Project | 0c90888 | 2009-03-03 19:32:16 -0800 | [diff] [blame] | 2195 | removeTabFromContentView(current); |
| 2196 | mTabControl.removeTab(current); |
| 2197 | } |
| 2198 | /* |
| 2199 | * Instead of finishing the activity, simply push this to the back |
| 2200 | * of the stack and let ActivityManager to choose the foreground |
| 2201 | * activity. As BrowserActivity is singleTask, it will be always the |
| 2202 | * root of the task. So we can use either true or false for |
| 2203 | * moveTaskToBack(). |
| 2204 | */ |
| 2205 | moveTaskToBack(true); |
| 2206 | } |
| 2207 | } |
| 2208 | } |
| 2209 | |
Grace Kloba | 5942df0 | 2009-09-18 11:48:29 -0700 | [diff] [blame] | 2210 | @Override |
| 2211 | public boolean onKeyDown(int keyCode, KeyEvent event) { |
| 2212 | // The default key mode is DEFAULT_KEYS_SEARCH_LOCAL. As the MENU is |
| 2213 | // still down, we don't want to trigger the search. Pretend to consume |
| 2214 | // the key and do nothing. |
| 2215 | if (mMenuIsDown) return true; |
The Android Open Source Project | 0c90888 | 2009-03-03 19:32:16 -0800 | [diff] [blame] | 2216 | |
Grace Kloba | 5942df0 | 2009-09-18 11:48:29 -0700 | [diff] [blame] | 2217 | switch(keyCode) { |
| 2218 | case KeyEvent.KEYCODE_MENU: |
| 2219 | mMenuIsDown = true; |
| 2220 | break; |
| 2221 | case KeyEvent.KEYCODE_SPACE: |
Grace Kloba | da0fe55 | 2009-09-22 18:17:24 -0700 | [diff] [blame] | 2222 | // WebView/WebTextView handle the keys in the KeyDown. As |
| 2223 | // the Activity's shortcut keys are only handled when WebView |
| 2224 | // doesn't, have to do it in onKeyDown instead of onKeyUp. |
| 2225 | if (event.isShiftPressed()) { |
| 2226 | getTopWindow().pageUp(false); |
| 2227 | } else { |
| 2228 | getTopWindow().pageDown(false); |
| 2229 | } |
Grace Kloba | 5942df0 | 2009-09-18 11:48:29 -0700 | [diff] [blame] | 2230 | return true; |
| 2231 | case KeyEvent.KEYCODE_BACK: |
| 2232 | if (event.getRepeatCount() == 0) { |
| 2233 | event.startTracking(); |
| 2234 | return true; |
| 2235 | } else if (mCustomView == null && mActiveTabsPage == null |
| 2236 | && event.isLongPress()) { |
| 2237 | bookmarksOrHistoryPicker(true); |
| 2238 | return true; |
The Android Open Source Project | 0c90888 | 2009-03-03 19:32:16 -0800 | [diff] [blame] | 2239 | } |
Grace Kloba | 5942df0 | 2009-09-18 11:48:29 -0700 | [diff] [blame] | 2240 | break; |
The Android Open Source Project | 0c90888 | 2009-03-03 19:32:16 -0800 | [diff] [blame] | 2241 | } |
Grace Kloba | 5942df0 | 2009-09-18 11:48:29 -0700 | [diff] [blame] | 2242 | return super.onKeyDown(keyCode, event); |
The Android Open Source Project | 0c90888 | 2009-03-03 19:32:16 -0800 | [diff] [blame] | 2243 | } |
| 2244 | |
Grace Kloba | 5942df0 | 2009-09-18 11:48:29 -0700 | [diff] [blame] | 2245 | @Override |
| 2246 | public boolean onKeyUp(int keyCode, KeyEvent event) { |
| 2247 | switch(keyCode) { |
| 2248 | case KeyEvent.KEYCODE_MENU: |
| 2249 | mMenuIsDown = false; |
| 2250 | break; |
Grace Kloba | 5942df0 | 2009-09-18 11:48:29 -0700 | [diff] [blame] | 2251 | case KeyEvent.KEYCODE_BACK: |
| 2252 | if (event.isTracking() && !event.isCanceled()) { |
| 2253 | if (mCustomView != null) { |
| 2254 | // if a custom view is showing, hide it |
| 2255 | mWebChromeClient.onHideCustomView(); |
| 2256 | } else if (mActiveTabsPage != null) { |
| 2257 | // if tab page is showing, hide it |
| 2258 | removeActiveTabPage(true); |
The Android Open Source Project | 0c90888 | 2009-03-03 19:32:16 -0800 | [diff] [blame] | 2259 | } else { |
Grace Kloba | 5942df0 | 2009-09-18 11:48:29 -0700 | [diff] [blame] | 2260 | WebView subwindow = mTabControl.getCurrentSubWindow(); |
| 2261 | if (subwindow != null) { |
| 2262 | if (subwindow.canGoBack()) { |
| 2263 | subwindow.goBack(); |
| 2264 | } else { |
| 2265 | dismissSubWindow(mTabControl.getCurrentTab()); |
| 2266 | } |
| 2267 | } else { |
| 2268 | goBackOnePageOrQuit(); |
| 2269 | } |
The Android Open Source Project | 0c90888 | 2009-03-03 19:32:16 -0800 | [diff] [blame] | 2270 | } |
Grace Kloba | 5942df0 | 2009-09-18 11:48:29 -0700 | [diff] [blame] | 2271 | return true; |
| 2272 | } |
| 2273 | break; |
The Android Open Source Project | 0c90888 | 2009-03-03 19:32:16 -0800 | [diff] [blame] | 2274 | } |
Grace Kloba | 5942df0 | 2009-09-18 11:48:29 -0700 | [diff] [blame] | 2275 | return super.onKeyUp(keyCode, event); |
The Android Open Source Project | 0c90888 | 2009-03-03 19:32:16 -0800 | [diff] [blame] | 2276 | } |
| 2277 | |
Leon Scroggins | 6857939 | 2009-09-15 15:31:54 -0400 | [diff] [blame] | 2278 | /* package */ void stopLoading() { |
The Android Open Source Project | 0c90888 | 2009-03-03 19:32:16 -0800 | [diff] [blame] | 2279 | resetTitleAndRevertLockIcon(); |
| 2280 | WebView w = getTopWindow(); |
| 2281 | w.stopLoading(); |
| 2282 | mWebViewClient.onPageFinished(w, w.getUrl()); |
| 2283 | |
| 2284 | cancelStopToast(); |
| 2285 | mStopToast = Toast |
| 2286 | .makeText(this, R.string.stopping, Toast.LENGTH_SHORT); |
| 2287 | mStopToast.show(); |
| 2288 | } |
| 2289 | |
| 2290 | private void cancelStopToast() { |
| 2291 | if (mStopToast != null) { |
| 2292 | mStopToast.cancel(); |
| 2293 | mStopToast = null; |
| 2294 | } |
| 2295 | } |
| 2296 | |
| 2297 | // called by a non-UI thread to post the message |
| 2298 | public void postMessage(int what, int arg1, int arg2, Object obj) { |
| 2299 | mHandler.sendMessage(mHandler.obtainMessage(what, arg1, arg2, obj)); |
| 2300 | } |
| 2301 | |
| 2302 | // public message ids |
| 2303 | public final static int LOAD_URL = 1001; |
| 2304 | public final static int STOP_LOAD = 1002; |
| 2305 | |
| 2306 | // Message Ids |
| 2307 | private static final int FOCUS_NODE_HREF = 102; |
| 2308 | private static final int CANCEL_CREDS_REQUEST = 103; |
Grace Kloba | 92c18a5 | 2009-07-31 23:48:32 -0700 | [diff] [blame] | 2309 | private static final int RELEASE_WAKELOCK = 107; |
The Android Open Source Project | 0c90888 | 2009-03-03 19:32:16 -0800 | [diff] [blame] | 2310 | |
| 2311 | // Private handler for handling javascript and saving passwords |
| 2312 | private Handler mHandler = new Handler() { |
| 2313 | |
| 2314 | public void handleMessage(Message msg) { |
| 2315 | switch (msg.what) { |
The Android Open Source Project | 0c90888 | 2009-03-03 19:32:16 -0800 | [diff] [blame] | 2316 | case FOCUS_NODE_HREF: |
| 2317 | String url = (String) msg.getData().get("url"); |
| 2318 | if (url == null || url.length() == 0) { |
| 2319 | break; |
| 2320 | } |
| 2321 | HashMap focusNodeMap = (HashMap) msg.obj; |
| 2322 | WebView view = (WebView) focusNodeMap.get("webview"); |
| 2323 | // Only apply the action if the top window did not change. |
| 2324 | if (getTopWindow() != view) { |
| 2325 | break; |
| 2326 | } |
| 2327 | switch (msg.arg1) { |
| 2328 | case R.id.open_context_menu_id: |
| 2329 | case R.id.view_image_context_menu_id: |
| 2330 | loadURL(getTopWindow(), url); |
| 2331 | break; |
| 2332 | case R.id.open_newtab_context_menu_id: |
Grace Kloba | c918184 | 2009-04-14 08:53:22 -0700 | [diff] [blame] | 2333 | final TabControl.Tab parent = mTabControl |
| 2334 | .getCurrentTab(); |
| 2335 | final TabControl.Tab newTab = openTab(url); |
| 2336 | if (newTab != parent) { |
| 2337 | parent.addChildTab(newTab); |
| 2338 | } |
The Android Open Source Project | 0c90888 | 2009-03-03 19:32:16 -0800 | [diff] [blame] | 2339 | break; |
| 2340 | case R.id.bookmark_context_menu_id: |
| 2341 | Intent intent = new Intent(BrowserActivity.this, |
| 2342 | AddBookmarkPage.class); |
| 2343 | intent.putExtra("url", url); |
| 2344 | startActivity(intent); |
| 2345 | break; |
| 2346 | case R.id.share_link_context_menu_id: |
Andrei Popescu | 10fdba8 | 2009-09-24 13:25:47 +0100 | [diff] [blame] | 2347 | Browser.sendString(BrowserActivity.this, url, |
| 2348 | getText(R.string.choosertitle_sharevia).toString()); |
The Android Open Source Project | 0c90888 | 2009-03-03 19:32:16 -0800 | [diff] [blame] | 2349 | break; |
| 2350 | case R.id.copy_link_context_menu_id: |
| 2351 | copy(url); |
| 2352 | break; |
| 2353 | case R.id.save_link_context_menu_id: |
| 2354 | case R.id.download_context_menu_id: |
| 2355 | onDownloadStartNoStream(url, null, null, null, -1); |
| 2356 | break; |
| 2357 | } |
| 2358 | break; |
| 2359 | |
| 2360 | case LOAD_URL: |
| 2361 | loadURL(getTopWindow(), (String) msg.obj); |
| 2362 | break; |
| 2363 | |
| 2364 | case STOP_LOAD: |
| 2365 | stopLoading(); |
| 2366 | break; |
| 2367 | |
| 2368 | case CANCEL_CREDS_REQUEST: |
| 2369 | resumeAfterCredentials(); |
| 2370 | break; |
| 2371 | |
The Android Open Source Project | 0c90888 | 2009-03-03 19:32:16 -0800 | [diff] [blame] | 2372 | case RELEASE_WAKELOCK: |
| 2373 | if (mWakeLock.isHeld()) { |
| 2374 | mWakeLock.release(); |
| 2375 | } |
| 2376 | break; |
| 2377 | } |
| 2378 | } |
| 2379 | }; |
| 2380 | |
Leon Scroggins | 89c6d36 | 2009-07-15 16:54:37 -0400 | [diff] [blame] | 2381 | private void updateScreenshot(WebView view) { |
| 2382 | // If this is a bookmarked site, add a screenshot to the database. |
| 2383 | // FIXME: When should we update? Every time? |
| 2384 | // FIXME: Would like to make sure there is actually something to |
| 2385 | // draw, but the API for that (WebViewCore.pictureReady()) is not |
| 2386 | // currently accessible here. |
Ben Murdoch | aac7aa6 | 2009-09-17 16:57:40 +0100 | [diff] [blame] | 2387 | |
Patrick Scott | 3918d44 | 2009-08-04 13:22:29 -0400 | [diff] [blame] | 2388 | ContentResolver cr = getContentResolver(); |
| 2389 | final Cursor c = BrowserBookmarksAdapter.queryBookmarksForUrl( |
Ben Murdoch | aac7aa6 | 2009-09-17 16:57:40 +0100 | [diff] [blame] | 2390 | cr, view.getOriginalUrl(), view.getUrl(), true); |
Patrick Scott | 3918d44 | 2009-08-04 13:22:29 -0400 | [diff] [blame] | 2391 | if (c != null) { |
Leon Scroggins | 89c6d36 | 2009-07-15 16:54:37 -0400 | [diff] [blame] | 2392 | boolean succeed = c.moveToFirst(); |
| 2393 | ContentValues values = null; |
| 2394 | while (succeed) { |
| 2395 | if (values == null) { |
| 2396 | final ByteArrayOutputStream os |
| 2397 | = new ByteArrayOutputStream(); |
Ben Murdoch | dcc2b6f | 2009-09-21 14:29:20 +0100 | [diff] [blame] | 2398 | Bitmap bm = createScreenshot(view); |
Leon Scroggins | 89c6d36 | 2009-07-15 16:54:37 -0400 | [diff] [blame] | 2399 | bm.compress(Bitmap.CompressFormat.PNG, 100, os); |
| 2400 | values = new ContentValues(); |
| 2401 | values.put(Browser.BookmarkColumns.THUMBNAIL, |
| 2402 | os.toByteArray()); |
| 2403 | } |
| 2404 | cr.update(ContentUris.withAppendedId(Browser.BOOKMARKS_URI, |
| 2405 | c.getInt(0)), values, null, null); |
| 2406 | succeed = c.moveToNext(); |
| 2407 | } |
| 2408 | c.close(); |
| 2409 | } |
| 2410 | } |
| 2411 | |
Leon Scroggins | 06ec5f2 | 2009-09-17 12:46:04 -0400 | [diff] [blame] | 2412 | /** |
Leon Scroggins | f855161 | 2009-09-24 16:06:02 -0400 | [diff] [blame] | 2413 | * Values for the size of the thumbnail created when taking a screenshot. |
| 2414 | * Lazily initialized. Instead of using these directly, use |
| 2415 | * getDesiredThumbnailWidth() or getDesiredThumbnailHeight(). |
Leon Scroggins | 06ec5f2 | 2009-09-17 12:46:04 -0400 | [diff] [blame] | 2416 | */ |
Leon Scroggins | f855161 | 2009-09-24 16:06:02 -0400 | [diff] [blame] | 2417 | private static int THUMBNAIL_WIDTH = 0; |
| 2418 | private static int THUMBNAIL_HEIGHT = 0; |
| 2419 | |
| 2420 | /** |
| 2421 | * Return the desired width for thumbnail screenshots, which are stored in |
| 2422 | * the database, and used on the bookmarks screen. |
| 2423 | * @param context Context for finding out the density of the screen. |
| 2424 | * @return int desired width for thumbnail screenshot. |
| 2425 | */ |
| 2426 | /* package */ static int getDesiredThumbnailWidth(Context context) { |
| 2427 | if (THUMBNAIL_WIDTH == 0) { |
| 2428 | float density = context.getResources().getDisplayMetrics().density; |
| 2429 | THUMBNAIL_WIDTH = (int) (90 * density); |
| 2430 | THUMBNAIL_HEIGHT = (int) (80 * density); |
| 2431 | } |
| 2432 | return THUMBNAIL_WIDTH; |
| 2433 | } |
| 2434 | |
| 2435 | /** |
| 2436 | * Return the desired height for thumbnail screenshots, which are stored in |
| 2437 | * the database, and used on the bookmarks screen. |
| 2438 | * @param context Context for finding out the density of the screen. |
| 2439 | * @return int desired height for thumbnail screenshot. |
| 2440 | */ |
| 2441 | /* package */ static int getDesiredThumbnailHeight(Context context) { |
| 2442 | // To ensure that they are both initialized. |
| 2443 | getDesiredThumbnailWidth(context); |
| 2444 | return THUMBNAIL_HEIGHT; |
| 2445 | } |
Leon Scroggins | 06ec5f2 | 2009-09-17 12:46:04 -0400 | [diff] [blame] | 2446 | |
Ben Murdoch | dcc2b6f | 2009-09-21 14:29:20 +0100 | [diff] [blame] | 2447 | private Bitmap createScreenshot(WebView view) { |
| 2448 | Picture thumbnail = view.capturePicture(); |
Leon Scroggins | f855161 | 2009-09-24 16:06:02 -0400 | [diff] [blame] | 2449 | Bitmap bm = Bitmap.createBitmap(getDesiredThumbnailWidth(this), |
| 2450 | getDesiredThumbnailHeight(this), Bitmap.Config.ARGB_4444); |
Ben Murdoch | dcc2b6f | 2009-09-21 14:29:20 +0100 | [diff] [blame] | 2451 | Canvas canvas = new Canvas(bm); |
| 2452 | // May need to tweak these values to determine what is the |
| 2453 | // best scale factor |
Leon Scroggins | 06ec5f2 | 2009-09-17 12:46:04 -0400 | [diff] [blame] | 2454 | int contentWidth = view.getContentWidth(); |
| 2455 | if (contentWidth > 0) { |
Leon Scroggins | f855161 | 2009-09-24 16:06:02 -0400 | [diff] [blame] | 2456 | float scaleFactor = (float) getDesiredThumbnailWidth(this) |
| 2457 | / (float) contentWidth; |
Leon Scroggins | 06ec5f2 | 2009-09-17 12:46:04 -0400 | [diff] [blame] | 2458 | canvas.scale(scaleFactor, scaleFactor); |
| 2459 | } |
Ben Murdoch | dcc2b6f | 2009-09-21 14:29:20 +0100 | [diff] [blame] | 2460 | thumbnail.draw(canvas); |
| 2461 | return bm; |
| 2462 | } |
| 2463 | |
The Android Open Source Project | 0c90888 | 2009-03-03 19:32:16 -0800 | [diff] [blame] | 2464 | // ------------------------------------------------------------------------- |
| 2465 | // WebViewClient implementation. |
| 2466 | //------------------------------------------------------------------------- |
| 2467 | |
| 2468 | // Use in overrideUrlLoading |
| 2469 | /* package */ final static String SCHEME_WTAI = "wtai://wp/"; |
| 2470 | /* package */ final static String SCHEME_WTAI_MC = "wtai://wp/mc;"; |
| 2471 | /* package */ final static String SCHEME_WTAI_SD = "wtai://wp/sd;"; |
| 2472 | /* package */ final static String SCHEME_WTAI_AP = "wtai://wp/ap;"; |
| 2473 | |
| 2474 | /* package */ WebViewClient getWebViewClient() { |
| 2475 | return mWebViewClient; |
| 2476 | } |
| 2477 | |
Patrick Scott | 3918d44 | 2009-08-04 13:22:29 -0400 | [diff] [blame] | 2478 | private void updateIcon(WebView view, Bitmap icon) { |
The Android Open Source Project | 0c90888 | 2009-03-03 19:32:16 -0800 | [diff] [blame] | 2479 | if (icon != null) { |
| 2480 | BrowserBookmarksAdapter.updateBookmarkFavicon(mResolver, |
Patrick Scott | 15525d4 | 2009-09-21 13:39:37 -0400 | [diff] [blame] | 2481 | view.getOriginalUrl(), view.getUrl(), icon); |
| 2482 | } |
| 2483 | setFavicon(icon); |
| 2484 | } |
| 2485 | |
| 2486 | private void updateIcon(String url, Bitmap icon) { |
| 2487 | if (icon != null) { |
| 2488 | BrowserBookmarksAdapter.updateBookmarkFavicon(mResolver, |
| 2489 | null, url, icon); |
The Android Open Source Project | 0c90888 | 2009-03-03 19:32:16 -0800 | [diff] [blame] | 2490 | } |
| 2491 | setFavicon(icon); |
| 2492 | } |
| 2493 | |
| 2494 | private final WebViewClient mWebViewClient = new WebViewClient() { |
| 2495 | @Override |
| 2496 | public void onPageStarted(WebView view, String url, Bitmap favicon) { |
| 2497 | resetLockIcon(url); |
Leon Scroggins | 6857939 | 2009-09-15 15:31:54 -0400 | [diff] [blame] | 2498 | setUrlTitle(url, null); |
Ben Murdoch | bff2d60 | 2009-07-01 20:19:05 +0100 | [diff] [blame] | 2499 | |
Patrick Scott | 59ce830 | 2009-09-18 16:29:38 -0400 | [diff] [blame] | 2500 | // If we start a touch icon load and then load a new page, we don't |
| 2501 | // want to cancel the current touch icon loader. But, we do want to |
| 2502 | // create a new one when the touch icon url is known. |
| 2503 | if (mTouchIconLoader != null) { |
| 2504 | mTouchIconLoader.mActivity = null; |
| 2505 | mTouchIconLoader = null; |
| 2506 | } |
| 2507 | |
Ben Murdoch | bff2d60 | 2009-07-01 20:19:05 +0100 | [diff] [blame] | 2508 | ErrorConsoleView errorConsole = mTabControl.getCurrentErrorConsole(false); |
| 2509 | if (errorConsole != null) { |
| 2510 | errorConsole.clearErrorMessages(); |
| 2511 | if (mShouldShowErrorConsole) { |
| 2512 | errorConsole.showConsole(ErrorConsoleView.SHOW_NONE); |
| 2513 | } |
| 2514 | } |
| 2515 | |
The Android Open Source Project | 0c90888 | 2009-03-03 19:32:16 -0800 | [diff] [blame] | 2516 | // Call updateIcon instead of setFavicon so the bookmark |
| 2517 | // database can be updated. |
Patrick Scott | 15525d4 | 2009-09-21 13:39:37 -0400 | [diff] [blame] | 2518 | updateIcon(url, favicon); |
The Android Open Source Project | 0c90888 | 2009-03-03 19:32:16 -0800 | [diff] [blame] | 2519 | |
Grace Kloba | 4d7880f | 2009-08-12 09:35:42 -0700 | [diff] [blame] | 2520 | if (mSettings.isTracing()) { |
The Android Open Source Project | 0c90888 | 2009-03-03 19:32:16 -0800 | [diff] [blame] | 2521 | String host; |
| 2522 | try { |
| 2523 | WebAddress uri = new WebAddress(url); |
| 2524 | host = uri.mHost; |
| 2525 | } catch (android.net.ParseException ex) { |
Grace Kloba | 4d7880f | 2009-08-12 09:35:42 -0700 | [diff] [blame] | 2526 | host = "browser"; |
The Android Open Source Project | 0c90888 | 2009-03-03 19:32:16 -0800 | [diff] [blame] | 2527 | } |
| 2528 | host = host.replace('.', '_'); |
Grace Kloba | 4d7880f | 2009-08-12 09:35:42 -0700 | [diff] [blame] | 2529 | host += ".trace"; |
The Android Open Source Project | 0c90888 | 2009-03-03 19:32:16 -0800 | [diff] [blame] | 2530 | mInTrace = true; |
Grace Kloba | 4d7880f | 2009-08-12 09:35:42 -0700 | [diff] [blame] | 2531 | Debug.startMethodTracing(host, 20 * 1024 * 1024); |
The Android Open Source Project | 0c90888 | 2009-03-03 19:32:16 -0800 | [diff] [blame] | 2532 | } |
| 2533 | |
| 2534 | // Performance probe |
| 2535 | if (false) { |
| 2536 | mStart = SystemClock.uptimeMillis(); |
| 2537 | mProcessStart = Process.getElapsedCpuTime(); |
| 2538 | long[] sysCpu = new long[7]; |
| 2539 | if (Process.readProcFile("/proc/stat", SYSTEM_CPU_FORMAT, null, |
| 2540 | sysCpu, null)) { |
| 2541 | mUserStart = sysCpu[0] + sysCpu[1]; |
| 2542 | mSystemStart = sysCpu[2]; |
| 2543 | mIdleStart = sysCpu[3]; |
| 2544 | mIrqStart = sysCpu[4] + sysCpu[5] + sysCpu[6]; |
| 2545 | } |
| 2546 | mUiStart = SystemClock.currentThreadTimeMillis(); |
| 2547 | } |
| 2548 | |
| 2549 | if (!mPageStarted) { |
| 2550 | mPageStarted = true; |
Mike Reed | 7bfa63b | 2009-05-28 11:08:32 -0400 | [diff] [blame] | 2551 | // if onResume() has been called, resumeWebViewTimers() does |
| 2552 | // nothing. |
| 2553 | resumeWebViewTimers(); |
The Android Open Source Project | 0c90888 | 2009-03-03 19:32:16 -0800 | [diff] [blame] | 2554 | } |
| 2555 | |
| 2556 | // reset sync timer to avoid sync starts during loading a page |
| 2557 | CookieSyncManager.getInstance().resetSync(); |
| 2558 | |
| 2559 | mInLoad = true; |
Leon Scroggins | 184f5e3 | 2009-09-21 10:38:24 -0400 | [diff] [blame] | 2560 | showFakeTitleBar(); |
The Android Open Source Project | 0c90888 | 2009-03-03 19:32:16 -0800 | [diff] [blame] | 2561 | updateInLoadMenuItems(); |
| 2562 | if (!mIsNetworkUp) { |
Patrick Scott | eb6ab2a | 2009-09-16 10:00:17 -0400 | [diff] [blame] | 2563 | createAndShowNetworkDialog(); |
The Android Open Source Project | 0c90888 | 2009-03-03 19:32:16 -0800 | [diff] [blame] | 2564 | if (view != null) { |
| 2565 | view.setNetworkAvailable(false); |
| 2566 | } |
| 2567 | } |
The Android Open Source Project | 0c90888 | 2009-03-03 19:32:16 -0800 | [diff] [blame] | 2568 | } |
| 2569 | |
| 2570 | @Override |
| 2571 | public void onPageFinished(WebView view, String url) { |
| 2572 | // Reset the title and icon in case we stopped a provisional |
| 2573 | // load. |
| 2574 | resetTitleAndIcon(view); |
Ben Murdoch | aac7aa6 | 2009-09-17 16:57:40 +0100 | [diff] [blame] | 2575 | updateScreenshot(view); |
The Android Open Source Project | 0c90888 | 2009-03-03 19:32:16 -0800 | [diff] [blame] | 2576 | |
| 2577 | // Update the lock icon image only once we are done loading |
Leon Scroggins | 3bbb6ca | 2009-09-09 12:51:10 -0400 | [diff] [blame] | 2578 | updateLockIconToLatest(); |
Leon Scroggins | b6b7f9e | 2009-06-18 12:05:28 -0400 | [diff] [blame] | 2579 | |
The Android Open Source Project | 0c90888 | 2009-03-03 19:32:16 -0800 | [diff] [blame] | 2580 | // Performance probe |
The Android Open Source Project | cb9a0bb | 2009-03-11 12:11:58 -0700 | [diff] [blame] | 2581 | if (false) { |
The Android Open Source Project | 0c90888 | 2009-03-03 19:32:16 -0800 | [diff] [blame] | 2582 | long[] sysCpu = new long[7]; |
| 2583 | if (Process.readProcFile("/proc/stat", SYSTEM_CPU_FORMAT, null, |
| 2584 | sysCpu, null)) { |
| 2585 | String uiInfo = "UI thread used " |
| 2586 | + (SystemClock.currentThreadTimeMillis() - mUiStart) |
| 2587 | + " ms"; |
Dave Bort | 31a6d1c | 2009-04-13 15:56:49 -0700 | [diff] [blame] | 2588 | if (LOGD_ENABLED) { |
The Android Open Source Project | 0c90888 | 2009-03-03 19:32:16 -0800 | [diff] [blame] | 2589 | Log.d(LOGTAG, uiInfo); |
| 2590 | } |
| 2591 | //The string that gets written to the log |
| 2592 | String performanceString = "It took total " |
| 2593 | + (SystemClock.uptimeMillis() - mStart) |
| 2594 | + " ms clock time to load the page." |
| 2595 | + "\nbrowser process used " |
| 2596 | + (Process.getElapsedCpuTime() - mProcessStart) |
| 2597 | + " ms, user processes used " |
| 2598 | + (sysCpu[0] + sysCpu[1] - mUserStart) * 10 |
| 2599 | + " ms, kernel used " |
| 2600 | + (sysCpu[2] - mSystemStart) * 10 |
| 2601 | + " ms, idle took " + (sysCpu[3] - mIdleStart) * 10 |
| 2602 | + " ms and irq took " |
| 2603 | + (sysCpu[4] + sysCpu[5] + sysCpu[6] - mIrqStart) |
| 2604 | * 10 + " ms, " + uiInfo; |
Dave Bort | 31a6d1c | 2009-04-13 15:56:49 -0700 | [diff] [blame] | 2605 | if (LOGD_ENABLED) { |
The Android Open Source Project | 0c90888 | 2009-03-03 19:32:16 -0800 | [diff] [blame] | 2606 | Log.d(LOGTAG, performanceString + "\nWebpage: " + url); |
| 2607 | } |
| 2608 | if (url != null) { |
| 2609 | // strip the url to maintain consistency |
| 2610 | String newUrl = new String(url); |
| 2611 | if (newUrl.startsWith("http://www.")) { |
| 2612 | newUrl = newUrl.substring(11); |
| 2613 | } else if (newUrl.startsWith("http://")) { |
| 2614 | newUrl = newUrl.substring(7); |
| 2615 | } else if (newUrl.startsWith("https://www.")) { |
| 2616 | newUrl = newUrl.substring(12); |
| 2617 | } else if (newUrl.startsWith("https://")) { |
| 2618 | newUrl = newUrl.substring(8); |
| 2619 | } |
Dave Bort | 31a6d1c | 2009-04-13 15:56:49 -0700 | [diff] [blame] | 2620 | if (LOGD_ENABLED) { |
The Android Open Source Project | 0c90888 | 2009-03-03 19:32:16 -0800 | [diff] [blame] | 2621 | Log.d(LOGTAG, newUrl + " loaded"); |
| 2622 | } |
| 2623 | /* |
| 2624 | if (sWhiteList.contains(newUrl)) { |
| 2625 | // The string that gets pushed to the statistcs |
| 2626 | // service |
| 2627 | performanceString = performanceString |
| 2628 | + "\nWebpage: " |
| 2629 | + newUrl |
| 2630 | + "\nCarrier: " |
| 2631 | + android.os.SystemProperties |
| 2632 | .get("gsm.sim.operator.alpha"); |
| 2633 | if (mWebView != null |
| 2634 | && mWebView.getContext() != null |
| 2635 | && mWebView.getContext().getSystemService( |
| 2636 | Context.CONNECTIVITY_SERVICE) != null) { |
| 2637 | ConnectivityManager cManager = |
| 2638 | (ConnectivityManager) mWebView |
| 2639 | .getContext().getSystemService( |
| 2640 | Context.CONNECTIVITY_SERVICE); |
| 2641 | NetworkInfo nInfo = cManager |
| 2642 | .getActiveNetworkInfo(); |
| 2643 | if (nInfo != null) { |
| 2644 | performanceString = performanceString |
| 2645 | + "\nNetwork Type: " |
| 2646 | + nInfo.getType().toString(); |
| 2647 | } |
| 2648 | } |
| 2649 | Checkin.logEvent(mResolver, |
| 2650 | Checkin.Events.Tag.WEBPAGE_LOAD, |
| 2651 | performanceString); |
| 2652 | Log.w(LOGTAG, "pushed to the statistics service"); |
| 2653 | } |
| 2654 | */ |
| 2655 | } |
| 2656 | } |
| 2657 | } |
| 2658 | |
| 2659 | if (mInTrace) { |
| 2660 | mInTrace = false; |
| 2661 | Debug.stopMethodTracing(); |
| 2662 | } |
| 2663 | |
| 2664 | if (mPageStarted) { |
| 2665 | mPageStarted = false; |
Mike Reed | 7bfa63b | 2009-05-28 11:08:32 -0400 | [diff] [blame] | 2666 | // pauseWebViewTimers() will do nothing and return false if |
| 2667 | // onPause() is not called yet. |
| 2668 | if (pauseWebViewTimers()) { |
The Android Open Source Project | 0c90888 | 2009-03-03 19:32:16 -0800 | [diff] [blame] | 2669 | if (mWakeLock.isHeld()) { |
| 2670 | mHandler.removeMessages(RELEASE_WAKELOCK); |
| 2671 | mWakeLock.release(); |
| 2672 | } |
| 2673 | } |
| 2674 | } |
The Android Open Source Project | 0c90888 | 2009-03-03 19:32:16 -0800 | [diff] [blame] | 2675 | } |
| 2676 | |
| 2677 | // return true if want to hijack the url to let another app to handle it |
| 2678 | @Override |
| 2679 | public boolean shouldOverrideUrlLoading(WebView view, String url) { |
| 2680 | if (url.startsWith(SCHEME_WTAI)) { |
| 2681 | // wtai://wp/mc;number |
| 2682 | // number=string(phone-number) |
| 2683 | if (url.startsWith(SCHEME_WTAI_MC)) { |
| 2684 | Intent intent = new Intent(Intent.ACTION_VIEW, |
| 2685 | Uri.parse(WebView.SCHEME_TEL + |
| 2686 | url.substring(SCHEME_WTAI_MC.length()))); |
| 2687 | startActivity(intent); |
| 2688 | return true; |
| 2689 | } |
| 2690 | // wtai://wp/sd;dtmf |
| 2691 | // dtmf=string(dialstring) |
| 2692 | if (url.startsWith(SCHEME_WTAI_SD)) { |
| 2693 | // TODO |
| 2694 | // only send when there is active voice connection |
| 2695 | return false; |
| 2696 | } |
| 2697 | // wtai://wp/ap;number;name |
| 2698 | // number=string(phone-number) |
| 2699 | // name=string |
| 2700 | if (url.startsWith(SCHEME_WTAI_AP)) { |
| 2701 | // TODO |
| 2702 | return false; |
| 2703 | } |
| 2704 | } |
| 2705 | |
Dianne Hackborn | 9918943 | 2009-06-17 18:06:18 -0700 | [diff] [blame] | 2706 | // The "about:" schemes are internal to the browser; don't |
| 2707 | // want these to be dispatched to other apps. |
| 2708 | if (url.startsWith("about:")) { |
| 2709 | return false; |
| 2710 | } |
Ben Murdoch | bff2d60 | 2009-07-01 20:19:05 +0100 | [diff] [blame] | 2711 | |
Dianne Hackborn | 9918943 | 2009-06-17 18:06:18 -0700 | [diff] [blame] | 2712 | Intent intent; |
Ben Murdoch | bff2d60 | 2009-07-01 20:19:05 +0100 | [diff] [blame] | 2713 | |
Dianne Hackborn | 9918943 | 2009-06-17 18:06:18 -0700 | [diff] [blame] | 2714 | // perform generic parsing of the URI to turn it into an Intent. |
The Android Open Source Project | 0c90888 | 2009-03-03 19:32:16 -0800 | [diff] [blame] | 2715 | try { |
Dianne Hackborn | 9918943 | 2009-06-17 18:06:18 -0700 | [diff] [blame] | 2716 | intent = Intent.parseUri(url, Intent.URI_INTENT_SCHEME); |
| 2717 | } catch (URISyntaxException ex) { |
| 2718 | Log.w("Browser", "Bad URI " + url + ": " + ex.getMessage()); |
The Android Open Source Project | 0c90888 | 2009-03-03 19:32:16 -0800 | [diff] [blame] | 2719 | return false; |
| 2720 | } |
| 2721 | |
Grace Kloba | 5b078b5 | 2009-06-24 20:23:41 -0700 | [diff] [blame] | 2722 | // check whether the intent can be resolved. If not, we will see |
| 2723 | // whether we can download it from the Market. |
| 2724 | if (getPackageManager().resolveActivity(intent, 0) == null) { |
| 2725 | String packagename = intent.getPackage(); |
| 2726 | if (packagename != null) { |
| 2727 | intent = new Intent(Intent.ACTION_VIEW, Uri |
| 2728 | .parse("market://search?q=pname:" + packagename)); |
| 2729 | intent.addCategory(Intent.CATEGORY_BROWSABLE); |
| 2730 | startActivity(intent); |
| 2731 | return true; |
| 2732 | } else { |
| 2733 | return false; |
| 2734 | } |
| 2735 | } |
| 2736 | |
Dianne Hackborn | 9918943 | 2009-06-17 18:06:18 -0700 | [diff] [blame] | 2737 | // sanitize the Intent, ensuring web pages can not bypass browser |
| 2738 | // security (only access to BROWSABLE activities). |
The Android Open Source Project | 0c90888 | 2009-03-03 19:32:16 -0800 | [diff] [blame] | 2739 | intent.addCategory(Intent.CATEGORY_BROWSABLE); |
Dianne Hackborn | 9918943 | 2009-06-17 18:06:18 -0700 | [diff] [blame] | 2740 | intent.setComponent(null); |
The Android Open Source Project | 0c90888 | 2009-03-03 19:32:16 -0800 | [diff] [blame] | 2741 | try { |
| 2742 | if (startActivityIfNeeded(intent, -1)) { |
| 2743 | return true; |
| 2744 | } |
| 2745 | } catch (ActivityNotFoundException ex) { |
| 2746 | // ignore the error. If no application can handle the URL, |
| 2747 | // eg about:blank, assume the browser can handle it. |
| 2748 | } |
| 2749 | |
| 2750 | if (mMenuIsDown) { |
| 2751 | openTab(url); |
| 2752 | closeOptionsMenu(); |
| 2753 | return true; |
| 2754 | } |
| 2755 | |
| 2756 | return false; |
| 2757 | } |
| 2758 | |
| 2759 | /** |
| 2760 | * Updates the lock icon. This method is called when we discover another |
| 2761 | * resource to be loaded for this page (for example, javascript). While |
| 2762 | * we update the icon type, we do not update the lock icon itself until |
| 2763 | * we are done loading, it is slightly more secure this way. |
| 2764 | */ |
| 2765 | @Override |
| 2766 | public void onLoadResource(WebView view, String url) { |
| 2767 | if (url != null && url.length() > 0) { |
| 2768 | // It is only if the page claims to be secure |
| 2769 | // that we may have to update the lock: |
| 2770 | if (mLockIconType == LOCK_ICON_SECURE) { |
| 2771 | // If NOT a 'safe' url, change the lock to mixed content! |
| 2772 | if (!(URLUtil.isHttpsUrl(url) || URLUtil.isDataUrl(url) || URLUtil.isAboutUrl(url))) { |
| 2773 | mLockIconType = LOCK_ICON_MIXED; |
Dave Bort | 31a6d1c | 2009-04-13 15:56:49 -0700 | [diff] [blame] | 2774 | if (LOGV_ENABLED) { |
The Android Open Source Project | 0c90888 | 2009-03-03 19:32:16 -0800 | [diff] [blame] | 2775 | Log.v(LOGTAG, "BrowserActivity.updateLockIcon:" + |
| 2776 | " updated lock icon to " + mLockIconType + " due to " + url); |
| 2777 | } |
| 2778 | } |
| 2779 | } |
| 2780 | } |
| 2781 | } |
| 2782 | |
| 2783 | /** |
| 2784 | * Show the dialog, asking the user if they would like to continue after |
| 2785 | * an excessive number of HTTP redirects. |
| 2786 | */ |
| 2787 | @Override |
| 2788 | public void onTooManyRedirects(WebView view, final Message cancelMsg, |
| 2789 | final Message continueMsg) { |
| 2790 | new AlertDialog.Builder(BrowserActivity.this) |
| 2791 | .setTitle(R.string.browserFrameRedirect) |
| 2792 | .setMessage(R.string.browserFrame307Post) |
| 2793 | .setPositiveButton(R.string.ok, new DialogInterface.OnClickListener() { |
| 2794 | public void onClick(DialogInterface dialog, int which) { |
| 2795 | continueMsg.sendToTarget(); |
| 2796 | }}) |
| 2797 | .setNegativeButton(R.string.cancel, new DialogInterface.OnClickListener() { |
| 2798 | public void onClick(DialogInterface dialog, int which) { |
| 2799 | cancelMsg.sendToTarget(); |
| 2800 | }}) |
| 2801 | .setOnCancelListener(new OnCancelListener() { |
| 2802 | public void onCancel(DialogInterface dialog) { |
| 2803 | cancelMsg.sendToTarget(); |
| 2804 | }}) |
| 2805 | .show(); |
| 2806 | } |
| 2807 | |
Patrick Scott | 37911c7 | 2009-03-24 18:02:58 -0700 | [diff] [blame] | 2808 | // Container class for the next error dialog that needs to be |
| 2809 | // displayed. |
| 2810 | class ErrorDialog { |
| 2811 | public final int mTitle; |
| 2812 | public final String mDescription; |
| 2813 | public final int mError; |
| 2814 | ErrorDialog(int title, String desc, int error) { |
| 2815 | mTitle = title; |
| 2816 | mDescription = desc; |
| 2817 | mError = error; |
| 2818 | } |
| 2819 | }; |
| 2820 | |
| 2821 | private void processNextError() { |
| 2822 | if (mQueuedErrors == null) { |
| 2823 | return; |
| 2824 | } |
| 2825 | // The first one is currently displayed so just remove it. |
| 2826 | mQueuedErrors.removeFirst(); |
| 2827 | if (mQueuedErrors.size() == 0) { |
| 2828 | mQueuedErrors = null; |
| 2829 | return; |
| 2830 | } |
| 2831 | showError(mQueuedErrors.getFirst()); |
| 2832 | } |
| 2833 | |
| 2834 | private DialogInterface.OnDismissListener mDialogListener = |
| 2835 | new DialogInterface.OnDismissListener() { |
| 2836 | public void onDismiss(DialogInterface d) { |
| 2837 | processNextError(); |
| 2838 | } |
| 2839 | }; |
| 2840 | private LinkedList<ErrorDialog> mQueuedErrors; |
| 2841 | |
| 2842 | private void queueError(int err, String desc) { |
| 2843 | if (mQueuedErrors == null) { |
| 2844 | mQueuedErrors = new LinkedList<ErrorDialog>(); |
| 2845 | } |
| 2846 | for (ErrorDialog d : mQueuedErrors) { |
| 2847 | if (d.mError == err) { |
| 2848 | // Already saw a similar error, ignore the new one. |
| 2849 | return; |
| 2850 | } |
| 2851 | } |
| 2852 | ErrorDialog errDialog = new ErrorDialog( |
Patrick Scott | 5d61a6c | 2009-08-25 13:52:46 -0400 | [diff] [blame] | 2853 | err == WebViewClient.ERROR_FILE_NOT_FOUND ? |
Patrick Scott | 37911c7 | 2009-03-24 18:02:58 -0700 | [diff] [blame] | 2854 | R.string.browserFrameFileErrorLabel : |
| 2855 | R.string.browserFrameNetworkErrorLabel, |
| 2856 | desc, err); |
| 2857 | mQueuedErrors.addLast(errDialog); |
| 2858 | |
| 2859 | // Show the dialog now if the queue was empty. |
| 2860 | if (mQueuedErrors.size() == 1) { |
| 2861 | showError(errDialog); |
| 2862 | } |
| 2863 | } |
| 2864 | |
| 2865 | private void showError(ErrorDialog errDialog) { |
| 2866 | AlertDialog d = new AlertDialog.Builder(BrowserActivity.this) |
| 2867 | .setTitle(errDialog.mTitle) |
| 2868 | .setMessage(errDialog.mDescription) |
| 2869 | .setPositiveButton(R.string.ok, null) |
| 2870 | .create(); |
| 2871 | d.setOnDismissListener(mDialogListener); |
| 2872 | d.show(); |
| 2873 | } |
| 2874 | |
The Android Open Source Project | 0c90888 | 2009-03-03 19:32:16 -0800 | [diff] [blame] | 2875 | /** |
| 2876 | * Show a dialog informing the user of the network error reported by |
| 2877 | * WebCore. |
| 2878 | */ |
| 2879 | @Override |
| 2880 | public void onReceivedError(WebView view, int errorCode, |
| 2881 | String description, String failingUrl) { |
Patrick Scott | 5d61a6c | 2009-08-25 13:52:46 -0400 | [diff] [blame] | 2882 | if (errorCode != WebViewClient.ERROR_HOST_LOOKUP && |
| 2883 | errorCode != WebViewClient.ERROR_CONNECT && |
| 2884 | errorCode != WebViewClient.ERROR_BAD_URL && |
| 2885 | errorCode != WebViewClient.ERROR_UNSUPPORTED_SCHEME && |
| 2886 | errorCode != WebViewClient.ERROR_FILE) { |
Patrick Scott | 37911c7 | 2009-03-24 18:02:58 -0700 | [diff] [blame] | 2887 | queueError(errorCode, description); |
The Android Open Source Project | 0c90888 | 2009-03-03 19:32:16 -0800 | [diff] [blame] | 2888 | } |
Patrick Scott | 37911c7 | 2009-03-24 18:02:58 -0700 | [diff] [blame] | 2889 | Log.e(LOGTAG, "onReceivedError " + errorCode + " " + failingUrl |
| 2890 | + " " + description); |
The Android Open Source Project | 0c90888 | 2009-03-03 19:32:16 -0800 | [diff] [blame] | 2891 | |
Ben Murdoch | aac7aa6 | 2009-09-17 16:57:40 +0100 | [diff] [blame] | 2892 | mNeedExtraScreenShot = true; |
| 2893 | |
The Android Open Source Project | 0c90888 | 2009-03-03 19:32:16 -0800 | [diff] [blame] | 2894 | // We need to reset the title after an error. |
| 2895 | resetTitleAndRevertLockIcon(); |
| 2896 | } |
| 2897 | |
| 2898 | /** |
| 2899 | * Check with the user if it is ok to resend POST data as the page they |
| 2900 | * are trying to navigate to is the result of a POST. |
| 2901 | */ |
| 2902 | @Override |
| 2903 | public void onFormResubmission(WebView view, final Message dontResend, |
| 2904 | final Message resend) { |
| 2905 | new AlertDialog.Builder(BrowserActivity.this) |
| 2906 | .setTitle(R.string.browserFrameFormResubmitLabel) |
| 2907 | .setMessage(R.string.browserFrameFormResubmitMessage) |
| 2908 | .setPositiveButton(R.string.ok, new DialogInterface.OnClickListener() { |
| 2909 | public void onClick(DialogInterface dialog, int which) { |
| 2910 | resend.sendToTarget(); |
| 2911 | }}) |
| 2912 | .setNegativeButton(R.string.cancel, new DialogInterface.OnClickListener() { |
| 2913 | public void onClick(DialogInterface dialog, int which) { |
| 2914 | dontResend.sendToTarget(); |
| 2915 | }}) |
| 2916 | .setOnCancelListener(new OnCancelListener() { |
| 2917 | public void onCancel(DialogInterface dialog) { |
| 2918 | dontResend.sendToTarget(); |
| 2919 | }}) |
| 2920 | .show(); |
| 2921 | } |
| 2922 | |
| 2923 | /** |
| 2924 | * Insert the url into the visited history database. |
| 2925 | * @param url The url to be inserted. |
| 2926 | * @param isReload True if this url is being reloaded. |
| 2927 | * FIXME: Not sure what to do when reloading the page. |
| 2928 | */ |
| 2929 | @Override |
| 2930 | public void doUpdateVisitedHistory(WebView view, String url, |
| 2931 | boolean isReload) { |
| 2932 | if (url.regionMatches(true, 0, "about:", 0, 6)) { |
| 2933 | return; |
| 2934 | } |
Grace Kloba | 6b52a55 | 2009-09-03 16:29:56 -0700 | [diff] [blame] | 2935 | // remove "client" before updating it to the history so that it wont |
| 2936 | // show up in the auto-complete list. |
| 2937 | int index = url.indexOf("client=ms-"); |
| 2938 | if (index > 0 && url.contains(".google.")) { |
| 2939 | int end = url.indexOf('&', index); |
| 2940 | if (end > 0) { |
| 2941 | url = url.substring(0, index-1).concat(url.substring(end)); |
| 2942 | } else { |
| 2943 | url = url.substring(0, index-1); |
| 2944 | } |
| 2945 | } |
The Android Open Source Project | 0c90888 | 2009-03-03 19:32:16 -0800 | [diff] [blame] | 2946 | Browser.updateVisitedHistory(mResolver, url, true); |
| 2947 | WebIconDatabase.getInstance().retainIconForPageUrl(url); |
| 2948 | } |
| 2949 | |
| 2950 | /** |
| 2951 | * Displays SSL error(s) dialog to the user. |
| 2952 | */ |
| 2953 | @Override |
| 2954 | public void onReceivedSslError( |
| 2955 | final WebView view, final SslErrorHandler handler, final SslError error) { |
| 2956 | |
| 2957 | if (mSettings.showSecurityWarnings()) { |
| 2958 | final LayoutInflater factory = |
| 2959 | LayoutInflater.from(BrowserActivity.this); |
| 2960 | final View warningsView = |
| 2961 | factory.inflate(R.layout.ssl_warnings, null); |
| 2962 | final LinearLayout placeholder = |
| 2963 | (LinearLayout)warningsView.findViewById(R.id.placeholder); |
| 2964 | |
| 2965 | if (error.hasError(SslError.SSL_UNTRUSTED)) { |
| 2966 | LinearLayout ll = (LinearLayout)factory |
| 2967 | .inflate(R.layout.ssl_warning, null); |
| 2968 | ((TextView)ll.findViewById(R.id.warning)) |
| 2969 | .setText(R.string.ssl_untrusted); |
| 2970 | placeholder.addView(ll); |
| 2971 | } |
| 2972 | |
| 2973 | if (error.hasError(SslError.SSL_IDMISMATCH)) { |
| 2974 | LinearLayout ll = (LinearLayout)factory |
| 2975 | .inflate(R.layout.ssl_warning, null); |
| 2976 | ((TextView)ll.findViewById(R.id.warning)) |
| 2977 | .setText(R.string.ssl_mismatch); |
| 2978 | placeholder.addView(ll); |
| 2979 | } |
| 2980 | |
| 2981 | if (error.hasError(SslError.SSL_EXPIRED)) { |
| 2982 | LinearLayout ll = (LinearLayout)factory |
| 2983 | .inflate(R.layout.ssl_warning, null); |
| 2984 | ((TextView)ll.findViewById(R.id.warning)) |
| 2985 | .setText(R.string.ssl_expired); |
| 2986 | placeholder.addView(ll); |
| 2987 | } |
| 2988 | |
| 2989 | if (error.hasError(SslError.SSL_NOTYETVALID)) { |
| 2990 | LinearLayout ll = (LinearLayout)factory |
| 2991 | .inflate(R.layout.ssl_warning, null); |
| 2992 | ((TextView)ll.findViewById(R.id.warning)) |
| 2993 | .setText(R.string.ssl_not_yet_valid); |
| 2994 | placeholder.addView(ll); |
| 2995 | } |
| 2996 | |
| 2997 | new AlertDialog.Builder(BrowserActivity.this) |
| 2998 | .setTitle(R.string.security_warning) |
| 2999 | .setIcon(android.R.drawable.ic_dialog_alert) |
| 3000 | .setView(warningsView) |
| 3001 | .setPositiveButton(R.string.ssl_continue, |
| 3002 | new DialogInterface.OnClickListener() { |
| 3003 | public void onClick(DialogInterface dialog, int whichButton) { |
| 3004 | handler.proceed(); |
| 3005 | } |
| 3006 | }) |
| 3007 | .setNeutralButton(R.string.view_certificate, |
| 3008 | new DialogInterface.OnClickListener() { |
| 3009 | public void onClick(DialogInterface dialog, int whichButton) { |
| 3010 | showSSLCertificateOnError(view, handler, error); |
| 3011 | } |
| 3012 | }) |
| 3013 | .setNegativeButton(R.string.cancel, |
| 3014 | new DialogInterface.OnClickListener() { |
| 3015 | public void onClick(DialogInterface dialog, int whichButton) { |
| 3016 | handler.cancel(); |
| 3017 | BrowserActivity.this.resetTitleAndRevertLockIcon(); |
| 3018 | } |
| 3019 | }) |
| 3020 | .setOnCancelListener( |
| 3021 | new DialogInterface.OnCancelListener() { |
| 3022 | public void onCancel(DialogInterface dialog) { |
| 3023 | handler.cancel(); |
| 3024 | BrowserActivity.this.resetTitleAndRevertLockIcon(); |
| 3025 | } |
| 3026 | }) |
| 3027 | .show(); |
| 3028 | } else { |
| 3029 | handler.proceed(); |
| 3030 | } |
| 3031 | } |
| 3032 | |
| 3033 | /** |
| 3034 | * Handles an HTTP authentication request. |
| 3035 | * |
| 3036 | * @param handler The authentication handler |
| 3037 | * @param host The host |
| 3038 | * @param realm The realm |
| 3039 | */ |
| 3040 | @Override |
| 3041 | public void onReceivedHttpAuthRequest(WebView view, |
| 3042 | final HttpAuthHandler handler, final String host, final String realm) { |
| 3043 | String username = null; |
| 3044 | String password = null; |
| 3045 | |
| 3046 | boolean reuseHttpAuthUsernamePassword = |
| 3047 | handler.useHttpAuthUsernamePassword(); |
| 3048 | |
| 3049 | if (reuseHttpAuthUsernamePassword && |
| 3050 | (mTabControl.getCurrentWebView() != null)) { |
| 3051 | String[] credentials = |
| 3052 | mTabControl.getCurrentWebView() |
| 3053 | .getHttpAuthUsernamePassword(host, realm); |
| 3054 | if (credentials != null && credentials.length == 2) { |
| 3055 | username = credentials[0]; |
| 3056 | password = credentials[1]; |
| 3057 | } |
| 3058 | } |
| 3059 | |
| 3060 | if (username != null && password != null) { |
| 3061 | handler.proceed(username, password); |
| 3062 | } else { |
| 3063 | showHttpAuthentication(handler, host, realm, null, null, null, 0); |
| 3064 | } |
| 3065 | } |
| 3066 | |
| 3067 | @Override |
| 3068 | public boolean shouldOverrideKeyEvent(WebView view, KeyEvent event) { |
| 3069 | if (mMenuIsDown) { |
| 3070 | // only check shortcut key when MENU is held |
| 3071 | return getWindow().isShortcutKey(event.getKeyCode(), event); |
| 3072 | } else { |
| 3073 | return false; |
| 3074 | } |
| 3075 | } |
| 3076 | |
| 3077 | @Override |
| 3078 | public void onUnhandledKeyEvent(WebView view, KeyEvent event) { |
| 3079 | if (view != mTabControl.getCurrentTopWebView()) { |
| 3080 | return; |
| 3081 | } |
| 3082 | if (event.isDown()) { |
| 3083 | BrowserActivity.this.onKeyDown(event.getKeyCode(), event); |
| 3084 | } else { |
| 3085 | BrowserActivity.this.onKeyUp(event.getKeyCode(), event); |
| 3086 | } |
| 3087 | } |
| 3088 | }; |
| 3089 | |
| 3090 | //-------------------------------------------------------------------------- |
| 3091 | // WebChromeClient implementation |
| 3092 | //-------------------------------------------------------------------------- |
| 3093 | |
| 3094 | /* package */ WebChromeClient getWebChromeClient() { |
| 3095 | return mWebChromeClient; |
| 3096 | } |
| 3097 | |
| 3098 | private final WebChromeClient mWebChromeClient = new WebChromeClient() { |
| 3099 | // Helper method to create a new tab or sub window. |
| 3100 | private void createWindow(final boolean dialog, final Message msg) { |
| 3101 | if (dialog) { |
| 3102 | mTabControl.createSubWindow(); |
| 3103 | final TabControl.Tab t = mTabControl.getCurrentTab(); |
| 3104 | attachSubWindow(t); |
| 3105 | WebView.WebViewTransport transport = |
| 3106 | (WebView.WebViewTransport) msg.obj; |
| 3107 | transport.setWebView(t.getSubWebView()); |
| 3108 | msg.sendToTarget(); |
| 3109 | } else { |
| 3110 | final TabControl.Tab parent = mTabControl.getCurrentTab(); |
Leon Scroggins | 1f005d3 | 2009-08-10 17:36:42 -0400 | [diff] [blame] | 3111 | final TabControl.Tab newTab |
| 3112 | = openTabAndShow(EMPTY_URL_DATA, false, null); |
Grace Kloba | c918184 | 2009-04-14 08:53:22 -0700 | [diff] [blame] | 3113 | if (newTab != parent) { |
| 3114 | parent.addChildTab(newTab); |
| 3115 | } |
The Android Open Source Project | 0c90888 | 2009-03-03 19:32:16 -0800 | [diff] [blame] | 3116 | WebView.WebViewTransport transport = |
| 3117 | (WebView.WebViewTransport) msg.obj; |
| 3118 | transport.setWebView(mTabControl.getCurrentWebView()); |
Leon Scroggins | 1f005d3 | 2009-08-10 17:36:42 -0400 | [diff] [blame] | 3119 | msg.sendToTarget(); |
The Android Open Source Project | 0c90888 | 2009-03-03 19:32:16 -0800 | [diff] [blame] | 3120 | } |
| 3121 | } |
| 3122 | |
| 3123 | @Override |
| 3124 | public boolean onCreateWindow(WebView view, final boolean dialog, |
| 3125 | final boolean userGesture, final Message resultMsg) { |
The Android Open Source Project | 0c90888 | 2009-03-03 19:32:16 -0800 | [diff] [blame] | 3126 | // Short-circuit if we can't create any more tabs or sub windows. |
| 3127 | if (dialog && mTabControl.getCurrentSubWindow() != null) { |
| 3128 | new AlertDialog.Builder(BrowserActivity.this) |
| 3129 | .setTitle(R.string.too_many_subwindows_dialog_title) |
| 3130 | .setIcon(android.R.drawable.ic_dialog_alert) |
| 3131 | .setMessage(R.string.too_many_subwindows_dialog_message) |
| 3132 | .setPositiveButton(R.string.ok, null) |
| 3133 | .show(); |
| 3134 | return false; |
| 3135 | } else if (mTabControl.getTabCount() >= TabControl.MAX_TABS) { |
| 3136 | new AlertDialog.Builder(BrowserActivity.this) |
| 3137 | .setTitle(R.string.too_many_windows_dialog_title) |
| 3138 | .setIcon(android.R.drawable.ic_dialog_alert) |
| 3139 | .setMessage(R.string.too_many_windows_dialog_message) |
| 3140 | .setPositiveButton(R.string.ok, null) |
| 3141 | .show(); |
| 3142 | return false; |
| 3143 | } |
| 3144 | |
| 3145 | // Short-circuit if this was a user gesture. |
| 3146 | if (userGesture) { |
The Android Open Source Project | 0c90888 | 2009-03-03 19:32:16 -0800 | [diff] [blame] | 3147 | createWindow(dialog, resultMsg); |
| 3148 | return true; |
| 3149 | } |
| 3150 | |
| 3151 | // Allow the popup and create the appropriate window. |
| 3152 | final AlertDialog.OnClickListener allowListener = |
| 3153 | new AlertDialog.OnClickListener() { |
| 3154 | public void onClick(DialogInterface d, |
| 3155 | int which) { |
The Android Open Source Project | 0c90888 | 2009-03-03 19:32:16 -0800 | [diff] [blame] | 3156 | createWindow(dialog, resultMsg); |
The Android Open Source Project | 0c90888 | 2009-03-03 19:32:16 -0800 | [diff] [blame] | 3157 | } |
| 3158 | }; |
| 3159 | |
| 3160 | // Block the popup by returning a null WebView. |
| 3161 | final AlertDialog.OnClickListener blockListener = |
| 3162 | new AlertDialog.OnClickListener() { |
| 3163 | public void onClick(DialogInterface d, int which) { |
| 3164 | resultMsg.sendToTarget(); |
The Android Open Source Project | 0c90888 | 2009-03-03 19:32:16 -0800 | [diff] [blame] | 3165 | } |
| 3166 | }; |
| 3167 | |
| 3168 | // Build a confirmation dialog to display to the user. |
| 3169 | final AlertDialog d = |
| 3170 | new AlertDialog.Builder(BrowserActivity.this) |
| 3171 | .setTitle(R.string.attention) |
| 3172 | .setIcon(android.R.drawable.ic_dialog_alert) |
| 3173 | .setMessage(R.string.popup_window_attempt) |
| 3174 | .setPositiveButton(R.string.allow, allowListener) |
| 3175 | .setNegativeButton(R.string.block, blockListener) |
| 3176 | .setCancelable(false) |
| 3177 | .create(); |
| 3178 | |
| 3179 | // Show the confirmation dialog. |
| 3180 | d.show(); |
The Android Open Source Project | 0c90888 | 2009-03-03 19:32:16 -0800 | [diff] [blame] | 3181 | return true; |
| 3182 | } |
| 3183 | |
| 3184 | @Override |
| 3185 | public void onCloseWindow(WebView window) { |
Leon Scroggins | 1f005d3 | 2009-08-10 17:36:42 -0400 | [diff] [blame] | 3186 | final TabControl.Tab current = mTabControl.getCurrentTab(); |
| 3187 | final TabControl.Tab parent = current.getParentTab(); |
The Android Open Source Project | 0c90888 | 2009-03-03 19:32:16 -0800 | [diff] [blame] | 3188 | if (parent != null) { |
| 3189 | // JavaScript can only close popup window. |
Leon Scroggins | 1f005d3 | 2009-08-10 17:36:42 -0400 | [diff] [blame] | 3190 | switchToTab(mTabControl.getTabIndex(parent)); |
| 3191 | // Now we need to close the window |
| 3192 | closeTab(current); |
The Android Open Source Project | 0c90888 | 2009-03-03 19:32:16 -0800 | [diff] [blame] | 3193 | } |
| 3194 | } |
| 3195 | |
| 3196 | @Override |
| 3197 | public void onProgressChanged(WebView view, int newProgress) { |
Leon Scroggins | 6857939 | 2009-09-15 15:31:54 -0400 | [diff] [blame] | 3198 | mTitleBar.setProgress(newProgress); |
Leon Scroggins | 3bbb6ca | 2009-09-09 12:51:10 -0400 | [diff] [blame] | 3199 | if (mFakeTitleBar != null) { |
| 3200 | mFakeTitleBar.setProgress(newProgress); |
The Android Open Source Project | 0c90888 | 2009-03-03 19:32:16 -0800 | [diff] [blame] | 3201 | } |
| 3202 | |
| 3203 | if (newProgress == 100) { |
Ben Murdoch | aac7aa6 | 2009-09-17 16:57:40 +0100 | [diff] [blame] | 3204 | // onProgressChanged() may continue to be called after the main |
| 3205 | // frame has finished loading, as any remaining sub frames |
| 3206 | // continue to load. We'll only get called once though with |
| 3207 | // newProgress as 100 when everything is loaded. |
| 3208 | // (onPageFinished is called once when the main frame completes |
| 3209 | // loading regardless of the state of any sub frames so calls |
| 3210 | // to onProgressChanges may continue after onPageFinished has |
| 3211 | // executed) |
| 3212 | |
| 3213 | // sync cookies and cache promptly here. |
The Android Open Source Project | 0c90888 | 2009-03-03 19:32:16 -0800 | [diff] [blame] | 3214 | CookieSyncManager.getInstance().sync(); |
The Android Open Source Project | cb9a0bb | 2009-03-11 12:11:58 -0700 | [diff] [blame] | 3215 | if (mInLoad) { |
| 3216 | mInLoad = false; |
| 3217 | updateInLoadMenuItems(); |
Leon Scroggins | a27ff19 | 2009-09-14 12:58:04 -0400 | [diff] [blame] | 3218 | // If the options menu is open, leave the title bar |
| 3219 | if (!mOptionsMenuOpen || !mIconView) { |
| 3220 | hideFakeTitleBar(); |
| 3221 | } |
The Android Open Source Project | cb9a0bb | 2009-03-11 12:11:58 -0700 | [diff] [blame] | 3222 | } |
Ben Murdoch | aac7aa6 | 2009-09-17 16:57:40 +0100 | [diff] [blame] | 3223 | if (mNeedExtraScreenShot) { |
| 3224 | // if there was an error loading this page, capture a new |
| 3225 | // screenshot to ensure that we get the correct thumbnail |
| 3226 | // as onPageFinished may have been called before the error |
| 3227 | // page was displayed. |
| 3228 | updateScreenshot(view); |
| 3229 | mNeedExtraScreenShot = false; |
| 3230 | } |
Leon Scroggins | a27ff19 | 2009-09-14 12:58:04 -0400 | [diff] [blame] | 3231 | } else if (!mInLoad) { |
The Android Open Source Project | cb9a0bb | 2009-03-11 12:11:58 -0700 | [diff] [blame] | 3232 | // onPageFinished may have already been called but a subframe |
| 3233 | // is still loading and updating the progress. Reset mInLoad |
| 3234 | // and update the menu items. |
Leon Scroggins | a27ff19 | 2009-09-14 12:58:04 -0400 | [diff] [blame] | 3235 | mInLoad = true; |
| 3236 | updateInLoadMenuItems(); |
Leon Scroggins | 184f5e3 | 2009-09-21 10:38:24 -0400 | [diff] [blame] | 3237 | if (!mOptionsMenuOpen || mIconView) { |
Leon Scroggins | a27ff19 | 2009-09-14 12:58:04 -0400 | [diff] [blame] | 3238 | // This page has begun to load, so show the title bar |
| 3239 | showFakeTitleBar(); |
The Android Open Source Project | cb9a0bb | 2009-03-11 12:11:58 -0700 | [diff] [blame] | 3240 | } |
The Android Open Source Project | 0c90888 | 2009-03-03 19:32:16 -0800 | [diff] [blame] | 3241 | } |
| 3242 | } |
| 3243 | |
| 3244 | @Override |
| 3245 | public void onReceivedTitle(WebView view, String title) { |
Patrick Scott | 598c9cc | 2009-06-04 11:10:38 -0400 | [diff] [blame] | 3246 | String url = view.getUrl(); |
The Android Open Source Project | 0c90888 | 2009-03-03 19:32:16 -0800 | [diff] [blame] | 3247 | |
| 3248 | // here, if url is null, we want to reset the title |
Leon Scroggins | 6857939 | 2009-09-15 15:31:54 -0400 | [diff] [blame] | 3249 | setUrlTitle(url, title); |
The Android Open Source Project | 0c90888 | 2009-03-03 19:32:16 -0800 | [diff] [blame] | 3250 | |
| 3251 | if (url == null || |
| 3252 | url.length() >= SQLiteDatabase.SQLITE_MAX_LIKE_PATTERN_LENGTH) { |
| 3253 | return; |
| 3254 | } |
Leon Scroggins | fce182b | 2009-05-08 13:54:52 -0400 | [diff] [blame] | 3255 | // See if we can find the current url in our history database and |
| 3256 | // add the new title to it. |
The Android Open Source Project | 0c90888 | 2009-03-03 19:32:16 -0800 | [diff] [blame] | 3257 | if (url.startsWith("http://www.")) { |
| 3258 | url = url.substring(11); |
| 3259 | } else if (url.startsWith("http://")) { |
| 3260 | url = url.substring(4); |
| 3261 | } |
| 3262 | try { |
| 3263 | url = "%" + url; |
| 3264 | String [] selArgs = new String[] { url }; |
| 3265 | |
| 3266 | String where = Browser.BookmarkColumns.URL + " LIKE ? AND " |
| 3267 | + Browser.BookmarkColumns.BOOKMARK + " = 0"; |
| 3268 | Cursor c = mResolver.query(Browser.BOOKMARKS_URI, |
| 3269 | Browser.HISTORY_PROJECTION, where, selArgs, null); |
| 3270 | if (c.moveToFirst()) { |
The Android Open Source Project | 0c90888 | 2009-03-03 19:32:16 -0800 | [diff] [blame] | 3271 | // Current implementation of database only has one entry per |
| 3272 | // url. |
Leon Scroggins | fce182b | 2009-05-08 13:54:52 -0400 | [diff] [blame] | 3273 | ContentValues map = new ContentValues(); |
| 3274 | map.put(Browser.BookmarkColumns.TITLE, title); |
| 3275 | mResolver.update(Browser.BOOKMARKS_URI, map, |
| 3276 | "_id = " + c.getInt(0), null); |
The Android Open Source Project | 0c90888 | 2009-03-03 19:32:16 -0800 | [diff] [blame] | 3277 | } |
| 3278 | c.close(); |
| 3279 | } catch (IllegalStateException e) { |
| 3280 | Log.e(LOGTAG, "BrowserActivity onReceived title", e); |
| 3281 | } catch (SQLiteException ex) { |
| 3282 | Log.e(LOGTAG, "onReceivedTitle() caught SQLiteException: ", ex); |
| 3283 | } |
| 3284 | } |
| 3285 | |
| 3286 | @Override |
| 3287 | public void onReceivedIcon(WebView view, Bitmap icon) { |
Patrick Scott | 3918d44 | 2009-08-04 13:22:29 -0400 | [diff] [blame] | 3288 | updateIcon(view, icon); |
| 3289 | } |
| 3290 | |
| 3291 | @Override |
Patrick Scott | 59ce830 | 2009-09-18 16:29:38 -0400 | [diff] [blame] | 3292 | public void onReceivedTouchIconUrl(WebView view, String url, |
| 3293 | boolean precomposed) { |
Patrick Scott | 3918d44 | 2009-08-04 13:22:29 -0400 | [diff] [blame] | 3294 | final ContentResolver cr = getContentResolver(); |
| 3295 | final Cursor c = |
| 3296 | BrowserBookmarksAdapter.queryBookmarksForUrl(cr, |
Leon Scroggins | a5d669e | 2009-08-05 14:07:58 -0400 | [diff] [blame] | 3297 | view.getOriginalUrl(), view.getUrl(), true); |
Patrick Scott | 3918d44 | 2009-08-04 13:22:29 -0400 | [diff] [blame] | 3298 | if (c != null) { |
| 3299 | if (c.getCount() > 0) { |
Patrick Scott | 59ce830 | 2009-09-18 16:29:38 -0400 | [diff] [blame] | 3300 | // Let precomposed icons take precedence over non-composed |
| 3301 | // icons. |
| 3302 | if (precomposed && mTouchIconLoader != null) { |
| 3303 | mTouchIconLoader.cancel(false); |
| 3304 | mTouchIconLoader = null; |
| 3305 | } |
| 3306 | // Have only one async task at a time. |
| 3307 | if (mTouchIconLoader == null) { |
| 3308 | mTouchIconLoader = new DownloadTouchIcon( |
| 3309 | BrowserActivity.this, cr, c, view); |
| 3310 | mTouchIconLoader.execute(url); |
| 3311 | } |
Patrick Scott | 3918d44 | 2009-08-04 13:22:29 -0400 | [diff] [blame] | 3312 | } else { |
| 3313 | c.close(); |
| 3314 | } |
| 3315 | } |
The Android Open Source Project | 0c90888 | 2009-03-03 19:32:16 -0800 | [diff] [blame] | 3316 | } |
Ben Murdoch | 092dd5d | 2009-04-22 12:34:12 +0100 | [diff] [blame] | 3317 | |
Andrei Popescu | adc008d | 2009-06-26 14:11:30 +0100 | [diff] [blame] | 3318 | @Override |
Andrei Popescu | c9b5556 | 2009-07-07 10:51:15 +0100 | [diff] [blame] | 3319 | public void onShowCustomView(View view, WebChromeClient.CustomViewCallback callback) { |
Andrei Popescu | adc008d | 2009-06-26 14:11:30 +0100 | [diff] [blame] | 3320 | if (mCustomView != null) |
| 3321 | return; |
| 3322 | |
| 3323 | // Add the custom view to its container. |
| 3324 | mCustomViewContainer.addView(view, COVER_SCREEN_GRAVITY_CENTER); |
| 3325 | mCustomView = view; |
Andrei Popescu | c9b5556 | 2009-07-07 10:51:15 +0100 | [diff] [blame] | 3326 | mCustomViewCallback = callback; |
Andrei Popescu | adc008d | 2009-06-26 14:11:30 +0100 | [diff] [blame] | 3327 | // Save the menu state and set it to empty while the custom |
| 3328 | // view is showing. |
| 3329 | mOldMenuState = mMenuState; |
| 3330 | mMenuState = EMPTY_MENU; |
Andrei Popescu | c9b5556 | 2009-07-07 10:51:15 +0100 | [diff] [blame] | 3331 | // Hide the content view. |
| 3332 | mContentView.setVisibility(View.GONE); |
Andrei Popescu | adc008d | 2009-06-26 14:11:30 +0100 | [diff] [blame] | 3333 | // Finally show the custom view container. |
Andrei Popescu | c9b5556 | 2009-07-07 10:51:15 +0100 | [diff] [blame] | 3334 | mCustomViewContainer.setVisibility(View.VISIBLE); |
| 3335 | mCustomViewContainer.bringToFront(); |
Andrei Popescu | adc008d | 2009-06-26 14:11:30 +0100 | [diff] [blame] | 3336 | } |
| 3337 | |
| 3338 | @Override |
| 3339 | public void onHideCustomView() { |
| 3340 | if (mCustomView == null) |
| 3341 | return; |
| 3342 | |
Andrei Popescu | c9b5556 | 2009-07-07 10:51:15 +0100 | [diff] [blame] | 3343 | // Hide the custom view. |
| 3344 | mCustomView.setVisibility(View.GONE); |
Andrei Popescu | adc008d | 2009-06-26 14:11:30 +0100 | [diff] [blame] | 3345 | // Remove the custom view from its container. |
| 3346 | mCustomViewContainer.removeView(mCustomView); |
| 3347 | mCustomView = null; |
| 3348 | // Reset the old menu state. |
| 3349 | mMenuState = mOldMenuState; |
| 3350 | mOldMenuState = EMPTY_MENU; |
| 3351 | mCustomViewContainer.setVisibility(View.GONE); |
Andrei Popescu | c9b5556 | 2009-07-07 10:51:15 +0100 | [diff] [blame] | 3352 | mCustomViewCallback.onCustomViewHidden(); |
| 3353 | // Show the content view. |
| 3354 | mContentView.setVisibility(View.VISIBLE); |
Andrei Popescu | adc008d | 2009-06-26 14:11:30 +0100 | [diff] [blame] | 3355 | } |
| 3356 | |
Ben Murdoch | 092dd5d | 2009-04-22 12:34:12 +0100 | [diff] [blame] | 3357 | /** |
Andrei Popescu | 79e82b7 | 2009-07-27 12:01:59 +0100 | [diff] [blame] | 3358 | * The origin has exceeded its database quota. |
Ben Murdoch | 092dd5d | 2009-04-22 12:34:12 +0100 | [diff] [blame] | 3359 | * @param url the URL that exceeded the quota |
| 3360 | * @param databaseIdentifier the identifier of the database on |
| 3361 | * which the transaction that caused the quota overflow was run |
| 3362 | * @param currentQuota the current quota for the origin. |
Ben Murdoch | 25a1523 | 2009-08-25 19:38:07 +0100 | [diff] [blame] | 3363 | * @param estimatedSize the estimated size of the database. |
Andrei Popescu | 79e82b7 | 2009-07-27 12:01:59 +0100 | [diff] [blame] | 3364 | * @param totalUsedQuota is the sum of all origins' quota. |
Ben Murdoch | 092dd5d | 2009-04-22 12:34:12 +0100 | [diff] [blame] | 3365 | * @param quotaUpdater The callback to run when a decision to allow or |
| 3366 | * deny quota has been made. Don't forget to call this! |
| 3367 | */ |
| 3368 | @Override |
| 3369 | public void onExceededDatabaseQuota(String url, |
Ben Murdoch | 25a1523 | 2009-08-25 19:38:07 +0100 | [diff] [blame] | 3370 | String databaseIdentifier, long currentQuota, long estimatedSize, |
| 3371 | long totalUsedQuota, WebStorage.QuotaUpdater quotaUpdater) { |
Andrei Popescu | 79e82b7 | 2009-07-27 12:01:59 +0100 | [diff] [blame] | 3372 | mSettings.getWebStorageSizeManager().onExceededDatabaseQuota( |
Ben Murdoch | 25a1523 | 2009-08-25 19:38:07 +0100 | [diff] [blame] | 3373 | url, databaseIdentifier, currentQuota, estimatedSize, |
| 3374 | totalUsedQuota, quotaUpdater); |
Andrei Popescu | 79e82b7 | 2009-07-27 12:01:59 +0100 | [diff] [blame] | 3375 | } |
| 3376 | |
| 3377 | /** |
| 3378 | * The Application Cache has exceeded its max size. |
| 3379 | * @param spaceNeeded is the amount of disk space that would be needed |
| 3380 | * in order for the last appcache operation to succeed. |
| 3381 | * @param totalUsedQuota is the sum of all origins' quota. |
| 3382 | * @param quotaUpdater A callback to inform the WebCore thread that a new |
| 3383 | * app cache size is available. This callback must always be executed at |
| 3384 | * some point to ensure that the sleeping WebCore thread is woken up. |
| 3385 | */ |
| 3386 | @Override |
| 3387 | public void onReachedMaxAppCacheSize(long spaceNeeded, |
| 3388 | long totalUsedQuota, WebStorage.QuotaUpdater quotaUpdater) { |
| 3389 | mSettings.getWebStorageSizeManager().onReachedMaxAppCacheSize( |
| 3390 | spaceNeeded, totalUsedQuota, quotaUpdater); |
Ben Murdoch | 092dd5d | 2009-04-22 12:34:12 +0100 | [diff] [blame] | 3391 | } |
Ben Murdoch | 7db2634 | 2009-06-03 18:21:19 +0100 | [diff] [blame] | 3392 | |
Steve Block | 2bc6991 | 2009-07-30 14:45:13 +0100 | [diff] [blame] | 3393 | /** |
| 3394 | * Instructs the browser to show a prompt to ask the user to set the |
| 3395 | * Geolocation permission state for the specified origin. |
| 3396 | * @param origin The origin for which Geolocation permissions are |
| 3397 | * requested. |
| 3398 | * @param callback The callback to call once the user has set the |
| 3399 | * Geolocation permission state. |
| 3400 | */ |
| 3401 | @Override |
| 3402 | public void onGeolocationPermissionsShowPrompt(String origin, |
| 3403 | GeolocationPermissions.Callback callback) { |
| 3404 | mTabControl.getCurrentTab().getGeolocationPermissionsPrompt().show( |
| 3405 | origin, callback); |
| 3406 | } |
| 3407 | |
| 3408 | /** |
| 3409 | * Instructs the browser to hide the Geolocation permissions prompt. |
| 3410 | */ |
| 3411 | @Override |
| 3412 | public void onGeolocationPermissionsHidePrompt() { |
| 3413 | mTabControl.getCurrentTab().getGeolocationPermissionsPrompt().hide(); |
| 3414 | } |
| 3415 | |
Ben Murdoch | 7db2634 | 2009-06-03 18:21:19 +0100 | [diff] [blame] | 3416 | /* Adds a JavaScript error message to the system log. |
| 3417 | * @param message The error message to report. |
| 3418 | * @param lineNumber The line number of the error. |
| 3419 | * @param sourceID The name of the source file that caused the error. |
| 3420 | */ |
| 3421 | @Override |
| 3422 | public void addMessageToConsole(String message, int lineNumber, String sourceID) { |
Ben Murdoch | bff2d60 | 2009-07-01 20:19:05 +0100 | [diff] [blame] | 3423 | ErrorConsoleView errorConsole = mTabControl.getCurrentErrorConsole(true); |
| 3424 | errorConsole.addErrorMessage(message, sourceID, lineNumber); |
| 3425 | if (mShouldShowErrorConsole && |
| 3426 | errorConsole.getShowState() != ErrorConsoleView.SHOW_MAXIMIZED) { |
| 3427 | errorConsole.showConsole(ErrorConsoleView.SHOW_MINIMIZED); |
| 3428 | } |
| 3429 | Log.w(LOGTAG, "Console: " + message + " " + sourceID + ":" + lineNumber); |
Ben Murdoch | 7db2634 | 2009-06-03 18:21:19 +0100 | [diff] [blame] | 3430 | } |
Andrei Popescu | 540035d | 2009-09-18 18:59:20 +0100 | [diff] [blame] | 3431 | |
| 3432 | /** |
| 3433 | * Ask the browser for an icon to represent a <video> element. |
| 3434 | * This icon will be used if the Web page did not specify a poster attribute. |
| 3435 | * |
| 3436 | * @return Bitmap The icon or null if no such icon is available. |
| 3437 | * @hide pending API Council approval |
| 3438 | */ |
| 3439 | @Override |
| 3440 | public Bitmap getDefaultVideoPoster() { |
| 3441 | if (mDefaultVideoPoster == null) { |
| 3442 | mDefaultVideoPoster = BitmapFactory.decodeResource( |
| 3443 | getResources(), R.drawable.default_video_poster); |
| 3444 | } |
| 3445 | return mDefaultVideoPoster; |
| 3446 | } |
| 3447 | |
| 3448 | /** |
| 3449 | * Ask the host application for a custom progress view to show while |
| 3450 | * a <video> is loading. |
| 3451 | * |
| 3452 | * @return View The progress view. |
| 3453 | * @hide pending API Council approval |
| 3454 | */ |
| 3455 | @Override |
| 3456 | public View getVideoLoadingProgressView() { |
| 3457 | if (mVideoProgressView == null) { |
| 3458 | LayoutInflater inflater = LayoutInflater.from(BrowserActivity.this); |
| 3459 | mVideoProgressView = inflater.inflate(R.layout.video_loading_progress, null); |
| 3460 | } |
| 3461 | return mVideoProgressView; |
| 3462 | } |
The Android Open Source Project | 0c90888 | 2009-03-03 19:32:16 -0800 | [diff] [blame] | 3463 | }; |
| 3464 | |
| 3465 | /** |
| 3466 | * Notify the host application a download should be done, or that |
| 3467 | * the data should be streamed if a streaming viewer is available. |
| 3468 | * @param url The full url to the content that should be downloaded |
| 3469 | * @param contentDisposition Content-disposition http header, if |
| 3470 | * present. |
| 3471 | * @param mimetype The mimetype of the content reported by the server |
| 3472 | * @param contentLength The file size reported by the server |
| 3473 | */ |
| 3474 | public void onDownloadStart(String url, String userAgent, |
| 3475 | String contentDisposition, String mimetype, long contentLength) { |
| 3476 | // if we're dealing wih A/V content that's not explicitly marked |
| 3477 | // for download, check if it's streamable. |
| 3478 | if (contentDisposition == null |
Patrick Scott | e1fb966 | 2009-08-31 14:31:52 -0400 | [diff] [blame] | 3479 | || !contentDisposition.regionMatches( |
| 3480 | true, 0, "attachment", 0, 10)) { |
The Android Open Source Project | 0c90888 | 2009-03-03 19:32:16 -0800 | [diff] [blame] | 3481 | // query the package manager to see if there's a registered handler |
| 3482 | // that matches. |
| 3483 | Intent intent = new Intent(Intent.ACTION_VIEW); |
| 3484 | intent.setDataAndType(Uri.parse(url), mimetype); |
Patrick Scott | e1fb966 | 2009-08-31 14:31:52 -0400 | [diff] [blame] | 3485 | ResolveInfo info = getPackageManager().resolveActivity(intent, |
| 3486 | PackageManager.MATCH_DEFAULT_ONLY); |
| 3487 | if (info != null) { |
| 3488 | ComponentName myName = getComponentName(); |
| 3489 | // If we resolved to ourselves, we don't want to attempt to |
| 3490 | // load the url only to try and download it again. |
| 3491 | if (!myName.getPackageName().equals( |
| 3492 | info.activityInfo.packageName) |
| 3493 | || !myName.getClassName().equals( |
| 3494 | info.activityInfo.name)) { |
| 3495 | // someone (other than us) knows how to handle this mime |
| 3496 | // type with this scheme, don't download. |
| 3497 | try { |
| 3498 | startActivity(intent); |
| 3499 | return; |
| 3500 | } catch (ActivityNotFoundException ex) { |
| 3501 | if (LOGD_ENABLED) { |
| 3502 | Log.d(LOGTAG, "activity not found for " + mimetype |
| 3503 | + " over " + Uri.parse(url).getScheme(), |
| 3504 | ex); |
| 3505 | } |
| 3506 | // Best behavior is to fall back to a download in this |
| 3507 | // case |
The Android Open Source Project | 0c90888 | 2009-03-03 19:32:16 -0800 | [diff] [blame] | 3508 | } |
The Android Open Source Project | 0c90888 | 2009-03-03 19:32:16 -0800 | [diff] [blame] | 3509 | } |
| 3510 | } |
| 3511 | } |
| 3512 | onDownloadStartNoStream(url, userAgent, contentDisposition, mimetype, contentLength); |
| 3513 | } |
| 3514 | |
| 3515 | /** |
| 3516 | * Notify the host application a download should be done, even if there |
| 3517 | * is a streaming viewer available for thise type. |
| 3518 | * @param url The full url to the content that should be downloaded |
| 3519 | * @param contentDisposition Content-disposition http header, if |
| 3520 | * present. |
| 3521 | * @param mimetype The mimetype of the content reported by the server |
| 3522 | * @param contentLength The file size reported by the server |
| 3523 | */ |
| 3524 | /*package */ void onDownloadStartNoStream(String url, String userAgent, |
| 3525 | String contentDisposition, String mimetype, long contentLength) { |
| 3526 | |
| 3527 | String filename = URLUtil.guessFileName(url, |
| 3528 | contentDisposition, mimetype); |
| 3529 | |
| 3530 | // Check to see if we have an SDCard |
| 3531 | String status = Environment.getExternalStorageState(); |
| 3532 | if (!status.equals(Environment.MEDIA_MOUNTED)) { |
| 3533 | int title; |
| 3534 | String msg; |
| 3535 | |
| 3536 | // Check to see if the SDCard is busy, same as the music app |
| 3537 | if (status.equals(Environment.MEDIA_SHARED)) { |
| 3538 | msg = getString(R.string.download_sdcard_busy_dlg_msg); |
| 3539 | title = R.string.download_sdcard_busy_dlg_title; |
| 3540 | } else { |
| 3541 | msg = getString(R.string.download_no_sdcard_dlg_msg, filename); |
| 3542 | title = R.string.download_no_sdcard_dlg_title; |
| 3543 | } |
| 3544 | |
| 3545 | new AlertDialog.Builder(this) |
| 3546 | .setTitle(title) |
| 3547 | .setIcon(android.R.drawable.ic_dialog_alert) |
| 3548 | .setMessage(msg) |
| 3549 | .setPositiveButton(R.string.ok, null) |
| 3550 | .show(); |
| 3551 | return; |
| 3552 | } |
| 3553 | |
| 3554 | // java.net.URI is a lot stricter than KURL so we have to undo |
| 3555 | // KURL's percent-encoding and redo the encoding using java.net.URI. |
| 3556 | URI uri = null; |
| 3557 | try { |
| 3558 | // Undo the percent-encoding that KURL may have done. |
| 3559 | String newUrl = new String(URLUtil.decode(url.getBytes())); |
| 3560 | // Parse the url into pieces |
| 3561 | WebAddress w = new WebAddress(newUrl); |
| 3562 | String frag = null; |
| 3563 | String query = null; |
| 3564 | String path = w.mPath; |
| 3565 | // Break the path into path, query, and fragment |
| 3566 | if (path.length() > 0) { |
| 3567 | // Strip the fragment |
| 3568 | int idx = path.lastIndexOf('#'); |
| 3569 | if (idx != -1) { |
| 3570 | frag = path.substring(idx + 1); |
| 3571 | path = path.substring(0, idx); |
| 3572 | } |
| 3573 | idx = path.lastIndexOf('?'); |
| 3574 | if (idx != -1) { |
| 3575 | query = path.substring(idx + 1); |
| 3576 | path = path.substring(0, idx); |
| 3577 | } |
| 3578 | } |
| 3579 | uri = new URI(w.mScheme, w.mAuthInfo, w.mHost, w.mPort, path, |
| 3580 | query, frag); |
| 3581 | } catch (Exception e) { |
| 3582 | Log.e(LOGTAG, "Could not parse url for download: " + url, e); |
| 3583 | return; |
| 3584 | } |
| 3585 | |
| 3586 | // XXX: Have to use the old url since the cookies were stored using the |
| 3587 | // old percent-encoded url. |
| 3588 | String cookies = CookieManager.getInstance().getCookie(url); |
| 3589 | |
| 3590 | ContentValues values = new ContentValues(); |
Jean-Baptiste Queru | 3dc09b2 | 2009-03-31 16:49:44 -0700 | [diff] [blame] | 3591 | values.put(Downloads.COLUMN_URI, uri.toString()); |
| 3592 | values.put(Downloads.COLUMN_COOKIE_DATA, cookies); |
| 3593 | values.put(Downloads.COLUMN_USER_AGENT, userAgent); |
| 3594 | values.put(Downloads.COLUMN_NOTIFICATION_PACKAGE, |
The Android Open Source Project | 0c90888 | 2009-03-03 19:32:16 -0800 | [diff] [blame] | 3595 | getPackageName()); |
Jean-Baptiste Queru | 3dc09b2 | 2009-03-31 16:49:44 -0700 | [diff] [blame] | 3596 | values.put(Downloads.COLUMN_NOTIFICATION_CLASS, |
The Android Open Source Project | 0c90888 | 2009-03-03 19:32:16 -0800 | [diff] [blame] | 3597 | BrowserDownloadPage.class.getCanonicalName()); |
Jean-Baptiste Queru | 3dc09b2 | 2009-03-31 16:49:44 -0700 | [diff] [blame] | 3598 | values.put(Downloads.COLUMN_VISIBILITY, Downloads.VISIBILITY_VISIBLE_NOTIFY_COMPLETED); |
| 3599 | values.put(Downloads.COLUMN_MIME_TYPE, mimetype); |
| 3600 | values.put(Downloads.COLUMN_FILE_NAME_HINT, filename); |
| 3601 | values.put(Downloads.COLUMN_DESCRIPTION, uri.getHost()); |
The Android Open Source Project | 0c90888 | 2009-03-03 19:32:16 -0800 | [diff] [blame] | 3602 | if (contentLength > 0) { |
Jean-Baptiste Queru | 3dc09b2 | 2009-03-31 16:49:44 -0700 | [diff] [blame] | 3603 | values.put(Downloads.COLUMN_TOTAL_BYTES, contentLength); |
The Android Open Source Project | 0c90888 | 2009-03-03 19:32:16 -0800 | [diff] [blame] | 3604 | } |
| 3605 | if (mimetype == null) { |
| 3606 | // We must have long pressed on a link or image to download it. We |
| 3607 | // are not sure of the mimetype in this case, so do a head request |
| 3608 | new FetchUrlMimeType(this).execute(values); |
| 3609 | } else { |
| 3610 | final Uri contentUri = |
| 3611 | getContentResolver().insert(Downloads.CONTENT_URI, values); |
| 3612 | viewDownloads(contentUri); |
| 3613 | } |
| 3614 | |
| 3615 | } |
| 3616 | |
| 3617 | /** |
| 3618 | * Resets the lock icon. This method is called when we start a new load and |
| 3619 | * know the url to be loaded. |
| 3620 | */ |
| 3621 | private void resetLockIcon(String url) { |
| 3622 | // Save the lock-icon state (we revert to it if the load gets cancelled) |
| 3623 | saveLockIcon(); |
| 3624 | |
| 3625 | mLockIconType = LOCK_ICON_UNSECURE; |
| 3626 | if (URLUtil.isHttpsUrl(url)) { |
| 3627 | mLockIconType = LOCK_ICON_SECURE; |
Dave Bort | 31a6d1c | 2009-04-13 15:56:49 -0700 | [diff] [blame] | 3628 | if (LOGV_ENABLED) { |
The Android Open Source Project | 0c90888 | 2009-03-03 19:32:16 -0800 | [diff] [blame] | 3629 | Log.v(LOGTAG, "BrowserActivity.resetLockIcon:" + |
| 3630 | " reset lock icon to " + mLockIconType); |
| 3631 | } |
| 3632 | } |
| 3633 | |
| 3634 | updateLockIconImage(LOCK_ICON_UNSECURE); |
| 3635 | } |
| 3636 | |
Grace Kloba | eb6eef4 | 2009-09-15 17:56:32 -0700 | [diff] [blame] | 3637 | /* package */ void setLockIconType(int type) { |
| 3638 | mLockIconType = type; |
| 3639 | } |
The Android Open Source Project | 0c90888 | 2009-03-03 19:32:16 -0800 | [diff] [blame] | 3640 | |
Grace Kloba | eb6eef4 | 2009-09-15 17:56:32 -0700 | [diff] [blame] | 3641 | /* package */ int getLockIconType() { |
| 3642 | return mLockIconType; |
| 3643 | } |
The Android Open Source Project | 0c90888 | 2009-03-03 19:32:16 -0800 | [diff] [blame] | 3644 | |
Grace Kloba | eb6eef4 | 2009-09-15 17:56:32 -0700 | [diff] [blame] | 3645 | /* package */ void setPrevLockType(int type) { |
| 3646 | mPrevLockType = type; |
| 3647 | } |
The Android Open Source Project | 0c90888 | 2009-03-03 19:32:16 -0800 | [diff] [blame] | 3648 | |
Grace Kloba | eb6eef4 | 2009-09-15 17:56:32 -0700 | [diff] [blame] | 3649 | /* package */ int getPrevLockType() { |
| 3650 | return mPrevLockType; |
The Android Open Source Project | 0c90888 | 2009-03-03 19:32:16 -0800 | [diff] [blame] | 3651 | } |
| 3652 | |
| 3653 | /** |
Leon Scroggins | 3bbb6ca | 2009-09-09 12:51:10 -0400 | [diff] [blame] | 3654 | * Update the lock icon to correspond to our latest state. |
| 3655 | */ |
| 3656 | /* package */ void updateLockIconToLatest() { |
| 3657 | updateLockIconImage(mLockIconType); |
| 3658 | } |
| 3659 | |
| 3660 | /** |
The Android Open Source Project | 0c90888 | 2009-03-03 19:32:16 -0800 | [diff] [blame] | 3661 | * Updates the lock-icon image in the title-bar. |
| 3662 | */ |
| 3663 | private void updateLockIconImage(int lockIconType) { |
| 3664 | Drawable d = null; |
| 3665 | if (lockIconType == LOCK_ICON_SECURE) { |
| 3666 | d = mSecLockIcon; |
| 3667 | } else if (lockIconType == LOCK_ICON_MIXED) { |
| 3668 | d = mMixLockIcon; |
| 3669 | } |
Leon Scroggins | 6857939 | 2009-09-15 15:31:54 -0400 | [diff] [blame] | 3670 | mTitleBar.setLock(d); |
Leon Scroggins | 3bbb6ca | 2009-09-09 12:51:10 -0400 | [diff] [blame] | 3671 | if (mFakeTitleBar != null) { |
| 3672 | mFakeTitleBar.setLock(d); |
The Android Open Source Project | 0c90888 | 2009-03-03 19:32:16 -0800 | [diff] [blame] | 3673 | } |
| 3674 | } |
| 3675 | |
| 3676 | /** |
| 3677 | * Displays a page-info dialog. |
| 3678 | * @param tab The tab to show info about |
| 3679 | * @param fromShowSSLCertificateOnError The flag that indicates whether |
| 3680 | * this dialog was opened from the SSL-certificate-on-error dialog or |
| 3681 | * not. This is important, since we need to know whether to return to |
| 3682 | * the parent dialog or simply dismiss. |
| 3683 | */ |
| 3684 | private void showPageInfo(final TabControl.Tab tab, |
| 3685 | final boolean fromShowSSLCertificateOnError) { |
| 3686 | final LayoutInflater factory = LayoutInflater |
| 3687 | .from(this); |
| 3688 | |
| 3689 | final View pageInfoView = factory.inflate(R.layout.page_info, null); |
| 3690 | |
| 3691 | final WebView view = tab.getWebView(); |
| 3692 | |
| 3693 | String url = null; |
| 3694 | String title = null; |
| 3695 | |
| 3696 | if (view == null) { |
| 3697 | url = tab.getUrl(); |
| 3698 | title = tab.getTitle(); |
| 3699 | } else if (view == mTabControl.getCurrentWebView()) { |
| 3700 | // Use the cached title and url if this is the current WebView |
| 3701 | url = mUrl; |
| 3702 | title = mTitle; |
| 3703 | } else { |
| 3704 | url = view.getUrl(); |
| 3705 | title = view.getTitle(); |
| 3706 | } |
| 3707 | |
| 3708 | if (url == null) { |
| 3709 | url = ""; |
| 3710 | } |
| 3711 | if (title == null) { |
| 3712 | title = ""; |
| 3713 | } |
| 3714 | |
| 3715 | ((TextView) pageInfoView.findViewById(R.id.address)).setText(url); |
| 3716 | ((TextView) pageInfoView.findViewById(R.id.title)).setText(title); |
| 3717 | |
| 3718 | mPageInfoView = tab; |
| 3719 | mPageInfoFromShowSSLCertificateOnError = new Boolean(fromShowSSLCertificateOnError); |
| 3720 | |
| 3721 | AlertDialog.Builder alertDialogBuilder = |
| 3722 | new AlertDialog.Builder(this) |
| 3723 | .setTitle(R.string.page_info).setIcon(android.R.drawable.ic_dialog_info) |
| 3724 | .setView(pageInfoView) |
| 3725 | .setPositiveButton( |
| 3726 | R.string.ok, |
| 3727 | new DialogInterface.OnClickListener() { |
| 3728 | public void onClick(DialogInterface dialog, |
| 3729 | int whichButton) { |
| 3730 | mPageInfoDialog = null; |
| 3731 | mPageInfoView = null; |
| 3732 | mPageInfoFromShowSSLCertificateOnError = null; |
| 3733 | |
| 3734 | // if we came here from the SSL error dialog |
| 3735 | if (fromShowSSLCertificateOnError) { |
| 3736 | // go back to the SSL error dialog |
| 3737 | showSSLCertificateOnError( |
| 3738 | mSSLCertificateOnErrorView, |
| 3739 | mSSLCertificateOnErrorHandler, |
| 3740 | mSSLCertificateOnErrorError); |
| 3741 | } |
| 3742 | } |
| 3743 | }) |
| 3744 | .setOnCancelListener( |
| 3745 | new DialogInterface.OnCancelListener() { |
| 3746 | public void onCancel(DialogInterface dialog) { |
| 3747 | mPageInfoDialog = null; |
| 3748 | mPageInfoView = null; |
| 3749 | mPageInfoFromShowSSLCertificateOnError = null; |
| 3750 | |
| 3751 | // if we came here from the SSL error dialog |
| 3752 | if (fromShowSSLCertificateOnError) { |
| 3753 | // go back to the SSL error dialog |
| 3754 | showSSLCertificateOnError( |
| 3755 | mSSLCertificateOnErrorView, |
| 3756 | mSSLCertificateOnErrorHandler, |
| 3757 | mSSLCertificateOnErrorError); |
| 3758 | } |
| 3759 | } |
| 3760 | }); |
| 3761 | |
| 3762 | // if we have a main top-level page SSL certificate set or a certificate |
| 3763 | // error |
| 3764 | if (fromShowSSLCertificateOnError || |
| 3765 | (view != null && view.getCertificate() != null)) { |
| 3766 | // add a 'View Certificate' button |
| 3767 | alertDialogBuilder.setNeutralButton( |
| 3768 | R.string.view_certificate, |
| 3769 | new DialogInterface.OnClickListener() { |
| 3770 | public void onClick(DialogInterface dialog, |
| 3771 | int whichButton) { |
| 3772 | mPageInfoDialog = null; |
| 3773 | mPageInfoView = null; |
| 3774 | mPageInfoFromShowSSLCertificateOnError = null; |
| 3775 | |
| 3776 | // if we came here from the SSL error dialog |
| 3777 | if (fromShowSSLCertificateOnError) { |
| 3778 | // go back to the SSL error dialog |
| 3779 | showSSLCertificateOnError( |
| 3780 | mSSLCertificateOnErrorView, |
| 3781 | mSSLCertificateOnErrorHandler, |
| 3782 | mSSLCertificateOnErrorError); |
| 3783 | } else { |
| 3784 | // otherwise, display the top-most certificate from |
| 3785 | // the chain |
| 3786 | if (view.getCertificate() != null) { |
| 3787 | showSSLCertificate(tab); |
| 3788 | } |
| 3789 | } |
| 3790 | } |
| 3791 | }); |
| 3792 | } |
| 3793 | |
| 3794 | mPageInfoDialog = alertDialogBuilder.show(); |
| 3795 | } |
| 3796 | |
| 3797 | /** |
| 3798 | * Displays the main top-level page SSL certificate dialog |
| 3799 | * (accessible from the Page-Info dialog). |
| 3800 | * @param tab The tab to show certificate for. |
| 3801 | */ |
| 3802 | private void showSSLCertificate(final TabControl.Tab tab) { |
| 3803 | final View certificateView = |
| 3804 | inflateCertificateView(tab.getWebView().getCertificate()); |
| 3805 | if (certificateView == null) { |
| 3806 | return; |
| 3807 | } |
| 3808 | |
| 3809 | LayoutInflater factory = LayoutInflater.from(this); |
| 3810 | |
| 3811 | final LinearLayout placeholder = |
| 3812 | (LinearLayout)certificateView.findViewById(R.id.placeholder); |
| 3813 | |
| 3814 | LinearLayout ll = (LinearLayout) factory.inflate( |
| 3815 | R.layout.ssl_success, placeholder); |
| 3816 | ((TextView)ll.findViewById(R.id.success)) |
| 3817 | .setText(R.string.ssl_certificate_is_valid); |
| 3818 | |
| 3819 | mSSLCertificateView = tab; |
| 3820 | mSSLCertificateDialog = |
| 3821 | new AlertDialog.Builder(this) |
| 3822 | .setTitle(R.string.ssl_certificate).setIcon( |
| 3823 | R.drawable.ic_dialog_browser_certificate_secure) |
| 3824 | .setView(certificateView) |
| 3825 | .setPositiveButton(R.string.ok, |
| 3826 | new DialogInterface.OnClickListener() { |
| 3827 | public void onClick(DialogInterface dialog, |
| 3828 | int whichButton) { |
| 3829 | mSSLCertificateDialog = null; |
| 3830 | mSSLCertificateView = null; |
| 3831 | |
| 3832 | showPageInfo(tab, false); |
| 3833 | } |
| 3834 | }) |
| 3835 | .setOnCancelListener( |
| 3836 | new DialogInterface.OnCancelListener() { |
| 3837 | public void onCancel(DialogInterface dialog) { |
| 3838 | mSSLCertificateDialog = null; |
| 3839 | mSSLCertificateView = null; |
| 3840 | |
| 3841 | showPageInfo(tab, false); |
| 3842 | } |
| 3843 | }) |
| 3844 | .show(); |
| 3845 | } |
| 3846 | |
| 3847 | /** |
| 3848 | * Displays the SSL error certificate dialog. |
| 3849 | * @param view The target web-view. |
| 3850 | * @param handler The SSL error handler responsible for cancelling the |
| 3851 | * connection that resulted in an SSL error or proceeding per user request. |
| 3852 | * @param error The SSL error object. |
| 3853 | */ |
| 3854 | private void showSSLCertificateOnError( |
| 3855 | final WebView view, final SslErrorHandler handler, final SslError error) { |
| 3856 | |
| 3857 | final View certificateView = |
| 3858 | inflateCertificateView(error.getCertificate()); |
| 3859 | if (certificateView == null) { |
| 3860 | return; |
| 3861 | } |
| 3862 | |
| 3863 | LayoutInflater factory = LayoutInflater.from(this); |
| 3864 | |
| 3865 | final LinearLayout placeholder = |
| 3866 | (LinearLayout)certificateView.findViewById(R.id.placeholder); |
| 3867 | |
| 3868 | if (error.hasError(SslError.SSL_UNTRUSTED)) { |
| 3869 | LinearLayout ll = (LinearLayout)factory |
| 3870 | .inflate(R.layout.ssl_warning, placeholder); |
| 3871 | ((TextView)ll.findViewById(R.id.warning)) |
| 3872 | .setText(R.string.ssl_untrusted); |
| 3873 | } |
| 3874 | |
| 3875 | if (error.hasError(SslError.SSL_IDMISMATCH)) { |
| 3876 | LinearLayout ll = (LinearLayout)factory |
| 3877 | .inflate(R.layout.ssl_warning, placeholder); |
| 3878 | ((TextView)ll.findViewById(R.id.warning)) |
| 3879 | .setText(R.string.ssl_mismatch); |
| 3880 | } |
| 3881 | |
| 3882 | if (error.hasError(SslError.SSL_EXPIRED)) { |
| 3883 | LinearLayout ll = (LinearLayout)factory |
| 3884 | .inflate(R.layout.ssl_warning, placeholder); |
| 3885 | ((TextView)ll.findViewById(R.id.warning)) |
| 3886 | .setText(R.string.ssl_expired); |
| 3887 | } |
| 3888 | |
| 3889 | if (error.hasError(SslError.SSL_NOTYETVALID)) { |
| 3890 | LinearLayout ll = (LinearLayout)factory |
| 3891 | .inflate(R.layout.ssl_warning, placeholder); |
| 3892 | ((TextView)ll.findViewById(R.id.warning)) |
| 3893 | .setText(R.string.ssl_not_yet_valid); |
| 3894 | } |
| 3895 | |
| 3896 | mSSLCertificateOnErrorHandler = handler; |
| 3897 | mSSLCertificateOnErrorView = view; |
| 3898 | mSSLCertificateOnErrorError = error; |
| 3899 | mSSLCertificateOnErrorDialog = |
| 3900 | new AlertDialog.Builder(this) |
| 3901 | .setTitle(R.string.ssl_certificate).setIcon( |
| 3902 | R.drawable.ic_dialog_browser_certificate_partially_secure) |
| 3903 | .setView(certificateView) |
| 3904 | .setPositiveButton(R.string.ok, |
| 3905 | new DialogInterface.OnClickListener() { |
| 3906 | public void onClick(DialogInterface dialog, |
| 3907 | int whichButton) { |
| 3908 | mSSLCertificateOnErrorDialog = null; |
| 3909 | mSSLCertificateOnErrorView = null; |
| 3910 | mSSLCertificateOnErrorHandler = null; |
| 3911 | mSSLCertificateOnErrorError = null; |
| 3912 | |
| 3913 | mWebViewClient.onReceivedSslError( |
| 3914 | view, handler, error); |
| 3915 | } |
| 3916 | }) |
| 3917 | .setNeutralButton(R.string.page_info_view, |
| 3918 | new DialogInterface.OnClickListener() { |
| 3919 | public void onClick(DialogInterface dialog, |
| 3920 | int whichButton) { |
| 3921 | mSSLCertificateOnErrorDialog = null; |
| 3922 | |
| 3923 | // do not clear the dialog state: we will |
| 3924 | // need to show the dialog again once the |
| 3925 | // user is done exploring the page-info details |
| 3926 | |
| 3927 | showPageInfo(mTabControl.getTabFromView(view), |
| 3928 | true); |
| 3929 | } |
| 3930 | }) |
| 3931 | .setOnCancelListener( |
| 3932 | new DialogInterface.OnCancelListener() { |
| 3933 | public void onCancel(DialogInterface dialog) { |
| 3934 | mSSLCertificateOnErrorDialog = null; |
| 3935 | mSSLCertificateOnErrorView = null; |
| 3936 | mSSLCertificateOnErrorHandler = null; |
| 3937 | mSSLCertificateOnErrorError = null; |
| 3938 | |
| 3939 | mWebViewClient.onReceivedSslError( |
| 3940 | view, handler, error); |
| 3941 | } |
| 3942 | }) |
| 3943 | .show(); |
| 3944 | } |
| 3945 | |
| 3946 | /** |
| 3947 | * Inflates the SSL certificate view (helper method). |
| 3948 | * @param certificate The SSL certificate. |
| 3949 | * @return The resultant certificate view with issued-to, issued-by, |
| 3950 | * issued-on, expires-on, and possibly other fields set. |
| 3951 | * If the input certificate is null, returns null. |
| 3952 | */ |
| 3953 | private View inflateCertificateView(SslCertificate certificate) { |
| 3954 | if (certificate == null) { |
| 3955 | return null; |
| 3956 | } |
| 3957 | |
| 3958 | LayoutInflater factory = LayoutInflater.from(this); |
| 3959 | |
| 3960 | View certificateView = factory.inflate( |
| 3961 | R.layout.ssl_certificate, null); |
| 3962 | |
| 3963 | // issued to: |
| 3964 | SslCertificate.DName issuedTo = certificate.getIssuedTo(); |
| 3965 | if (issuedTo != null) { |
| 3966 | ((TextView) certificateView.findViewById(R.id.to_common)) |
| 3967 | .setText(issuedTo.getCName()); |
| 3968 | ((TextView) certificateView.findViewById(R.id.to_org)) |
| 3969 | .setText(issuedTo.getOName()); |
| 3970 | ((TextView) certificateView.findViewById(R.id.to_org_unit)) |
| 3971 | .setText(issuedTo.getUName()); |
| 3972 | } |
| 3973 | |
| 3974 | // issued by: |
| 3975 | SslCertificate.DName issuedBy = certificate.getIssuedBy(); |
| 3976 | if (issuedBy != null) { |
| 3977 | ((TextView) certificateView.findViewById(R.id.by_common)) |
| 3978 | .setText(issuedBy.getCName()); |
| 3979 | ((TextView) certificateView.findViewById(R.id.by_org)) |
| 3980 | .setText(issuedBy.getOName()); |
| 3981 | ((TextView) certificateView.findViewById(R.id.by_org_unit)) |
| 3982 | .setText(issuedBy.getUName()); |
| 3983 | } |
| 3984 | |
| 3985 | // issued on: |
| 3986 | String issuedOn = reformatCertificateDate( |
| 3987 | certificate.getValidNotBefore()); |
| 3988 | ((TextView) certificateView.findViewById(R.id.issued_on)) |
| 3989 | .setText(issuedOn); |
| 3990 | |
| 3991 | // expires on: |
| 3992 | String expiresOn = reformatCertificateDate( |
| 3993 | certificate.getValidNotAfter()); |
| 3994 | ((TextView) certificateView.findViewById(R.id.expires_on)) |
| 3995 | .setText(expiresOn); |
| 3996 | |
| 3997 | return certificateView; |
| 3998 | } |
| 3999 | |
| 4000 | /** |
| 4001 | * Re-formats the certificate date (Date.toString()) string to |
| 4002 | * a properly localized date string. |
| 4003 | * @return Properly localized version of the certificate date string and |
| 4004 | * the original certificate date string if fails to localize. |
| 4005 | * If the original string is null, returns an empty string "". |
| 4006 | */ |
| 4007 | private String reformatCertificateDate(String certificateDate) { |
| 4008 | String reformattedDate = null; |
| 4009 | |
| 4010 | if (certificateDate != null) { |
| 4011 | Date date = null; |
| 4012 | try { |
| 4013 | date = java.text.DateFormat.getInstance().parse(certificateDate); |
| 4014 | } catch (ParseException e) { |
| 4015 | date = null; |
| 4016 | } |
| 4017 | |
| 4018 | if (date != null) { |
| 4019 | reformattedDate = |
| 4020 | DateFormat.getDateFormat(this).format(date); |
| 4021 | } |
| 4022 | } |
| 4023 | |
| 4024 | return reformattedDate != null ? reformattedDate : |
| 4025 | (certificateDate != null ? certificateDate : ""); |
| 4026 | } |
| 4027 | |
| 4028 | /** |
| 4029 | * Displays an http-authentication dialog. |
| 4030 | */ |
| 4031 | private void showHttpAuthentication(final HttpAuthHandler handler, |
| 4032 | final String host, final String realm, final String title, |
| 4033 | final String name, final String password, int focusId) { |
| 4034 | LayoutInflater factory = LayoutInflater.from(this); |
| 4035 | final View v = factory |
| 4036 | .inflate(R.layout.http_authentication, null); |
| 4037 | if (name != null) { |
| 4038 | ((EditText) v.findViewById(R.id.username_edit)).setText(name); |
| 4039 | } |
| 4040 | if (password != null) { |
| 4041 | ((EditText) v.findViewById(R.id.password_edit)).setText(password); |
| 4042 | } |
| 4043 | |
| 4044 | String titleText = title; |
| 4045 | if (titleText == null) { |
| 4046 | titleText = getText(R.string.sign_in_to).toString().replace( |
| 4047 | "%s1", host).replace("%s2", realm); |
| 4048 | } |
| 4049 | |
| 4050 | mHttpAuthHandler = handler; |
| 4051 | AlertDialog dialog = new AlertDialog.Builder(this) |
| 4052 | .setTitle(titleText) |
| 4053 | .setIcon(android.R.drawable.ic_dialog_alert) |
| 4054 | .setView(v) |
| 4055 | .setPositiveButton(R.string.action, |
| 4056 | new DialogInterface.OnClickListener() { |
| 4057 | public void onClick(DialogInterface dialog, |
| 4058 | int whichButton) { |
| 4059 | String nm = ((EditText) v |
| 4060 | .findViewById(R.id.username_edit)) |
| 4061 | .getText().toString(); |
| 4062 | String pw = ((EditText) v |
| 4063 | .findViewById(R.id.password_edit)) |
| 4064 | .getText().toString(); |
| 4065 | BrowserActivity.this.setHttpAuthUsernamePassword |
| 4066 | (host, realm, nm, pw); |
| 4067 | handler.proceed(nm, pw); |
| 4068 | mHttpAuthenticationDialog = null; |
| 4069 | mHttpAuthHandler = null; |
| 4070 | }}) |
| 4071 | .setNegativeButton(R.string.cancel, |
| 4072 | new DialogInterface.OnClickListener() { |
| 4073 | public void onClick(DialogInterface dialog, |
| 4074 | int whichButton) { |
| 4075 | handler.cancel(); |
| 4076 | BrowserActivity.this.resetTitleAndRevertLockIcon(); |
| 4077 | mHttpAuthenticationDialog = null; |
| 4078 | mHttpAuthHandler = null; |
| 4079 | }}) |
| 4080 | .setOnCancelListener(new DialogInterface.OnCancelListener() { |
| 4081 | public void onCancel(DialogInterface dialog) { |
| 4082 | handler.cancel(); |
| 4083 | BrowserActivity.this.resetTitleAndRevertLockIcon(); |
| 4084 | mHttpAuthenticationDialog = null; |
| 4085 | mHttpAuthHandler = null; |
| 4086 | }}) |
| 4087 | .create(); |
| 4088 | // Make the IME appear when the dialog is displayed if applicable. |
| 4089 | dialog.getWindow().setSoftInputMode( |
| 4090 | WindowManager.LayoutParams.SOFT_INPUT_STATE_VISIBLE); |
| 4091 | dialog.show(); |
| 4092 | if (focusId != 0) { |
| 4093 | dialog.findViewById(focusId).requestFocus(); |
| 4094 | } else { |
| 4095 | v.findViewById(R.id.username_edit).requestFocus(); |
| 4096 | } |
| 4097 | mHttpAuthenticationDialog = dialog; |
| 4098 | } |
| 4099 | |
| 4100 | public int getProgress() { |
| 4101 | WebView w = mTabControl.getCurrentWebView(); |
| 4102 | if (w != null) { |
| 4103 | return w.getProgress(); |
| 4104 | } else { |
| 4105 | return 100; |
| 4106 | } |
| 4107 | } |
| 4108 | |
| 4109 | /** |
| 4110 | * Set HTTP authentication password. |
| 4111 | * |
| 4112 | * @param host The host for the password |
| 4113 | * @param realm The realm for the password |
| 4114 | * @param username The username for the password. If it is null, it means |
| 4115 | * password can't be saved. |
| 4116 | * @param password The password |
| 4117 | */ |
| 4118 | public void setHttpAuthUsernamePassword(String host, String realm, |
| 4119 | String username, |
| 4120 | String password) { |
| 4121 | WebView w = mTabControl.getCurrentWebView(); |
| 4122 | if (w != null) { |
| 4123 | w.setHttpAuthUsernamePassword(host, realm, username, password); |
| 4124 | } |
| 4125 | } |
| 4126 | |
| 4127 | /** |
| 4128 | * connectivity manager says net has come or gone... inform the user |
| 4129 | * @param up true if net has come up, false if net has gone down |
| 4130 | */ |
| 4131 | public void onNetworkToggle(boolean up) { |
| 4132 | if (up == mIsNetworkUp) { |
| 4133 | return; |
| 4134 | } else if (up) { |
| 4135 | mIsNetworkUp = true; |
| 4136 | if (mAlertDialog != null) { |
| 4137 | mAlertDialog.cancel(); |
| 4138 | mAlertDialog = null; |
| 4139 | } |
| 4140 | } else { |
| 4141 | mIsNetworkUp = false; |
Patrick Scott | eb6ab2a | 2009-09-16 10:00:17 -0400 | [diff] [blame] | 4142 | if (mInLoad) { |
| 4143 | createAndShowNetworkDialog(); |
| 4144 | } |
The Android Open Source Project | 0c90888 | 2009-03-03 19:32:16 -0800 | [diff] [blame] | 4145 | } |
| 4146 | WebView w = mTabControl.getCurrentWebView(); |
| 4147 | if (w != null) { |
| 4148 | w.setNetworkAvailable(up); |
| 4149 | } |
| 4150 | } |
| 4151 | |
Patrick Scott | eb6ab2a | 2009-09-16 10:00:17 -0400 | [diff] [blame] | 4152 | // This method shows the network dialog alerting the user that the net is |
| 4153 | // down. It will only show the dialog if mAlertDialog is null. |
| 4154 | private void createAndShowNetworkDialog() { |
| 4155 | if (mAlertDialog == null) { |
| 4156 | mAlertDialog = new AlertDialog.Builder(this) |
| 4157 | .setTitle(R.string.loadSuspendedTitle) |
| 4158 | .setMessage(R.string.loadSuspended) |
| 4159 | .setPositiveButton(R.string.ok, null) |
| 4160 | .show(); |
| 4161 | } |
| 4162 | } |
| 4163 | |
The Android Open Source Project | 0c90888 | 2009-03-03 19:32:16 -0800 | [diff] [blame] | 4164 | @Override |
| 4165 | protected void onActivityResult(int requestCode, int resultCode, |
| 4166 | Intent intent) { |
| 4167 | switch (requestCode) { |
| 4168 | case COMBO_PAGE: |
| 4169 | if (resultCode == RESULT_OK && intent != null) { |
| 4170 | String data = intent.getAction(); |
| 4171 | Bundle extras = intent.getExtras(); |
| 4172 | if (extras != null && extras.getBoolean("new_window", false)) { |
Leon Scroggins | 25d3547 | 2009-09-15 11:37:27 -0400 | [diff] [blame] | 4173 | openTab(data); |
The Android Open Source Project | 0c90888 | 2009-03-03 19:32:16 -0800 | [diff] [blame] | 4174 | } else { |
| 4175 | final TabControl.Tab currentTab = |
| 4176 | mTabControl.getCurrentTab(); |
Leon Scroggins | 1f005d3 | 2009-08-10 17:36:42 -0400 | [diff] [blame] | 4177 | dismissSubWindow(currentTab); |
| 4178 | if (data != null && data.length() != 0) { |
| 4179 | getTopWindow().loadUrl(data); |
The Android Open Source Project | 0c90888 | 2009-03-03 19:32:16 -0800 | [diff] [blame] | 4180 | } |
| 4181 | } |
| 4182 | } |
| 4183 | break; |
| 4184 | default: |
| 4185 | break; |
| 4186 | } |
Leon Scroggins | 3044423 | 2009-09-04 18:36:20 -0400 | [diff] [blame] | 4187 | getTopWindow().requestFocus(); |
The Android Open Source Project | 0c90888 | 2009-03-03 19:32:16 -0800 | [diff] [blame] | 4188 | } |
| 4189 | |
| 4190 | /* |
| 4191 | * This method is called as a result of the user selecting the options |
| 4192 | * menu to see the download window, or when a download changes state. It |
| 4193 | * shows the download window ontop of the current window. |
| 4194 | */ |
| 4195 | /* package */ void viewDownloads(Uri downloadRecord) { |
| 4196 | Intent intent = new Intent(this, |
| 4197 | BrowserDownloadPage.class); |
| 4198 | intent.setData(downloadRecord); |
| 4199 | startActivityForResult(intent, this.DOWNLOAD_PAGE); |
| 4200 | |
| 4201 | } |
| 4202 | |
Leon Scroggins | 160a7e7 | 2009-08-14 18:28:01 -0400 | [diff] [blame] | 4203 | /** |
| 4204 | * Open the Go page. |
| 4205 | * @param startWithHistory If true, open starting on the history tab. |
| 4206 | * Otherwise, start with the bookmarks tab. |
Leon Scroggins | 160a7e7 | 2009-08-14 18:28:01 -0400 | [diff] [blame] | 4207 | */ |
Leon Scroggins | 3044423 | 2009-09-04 18:36:20 -0400 | [diff] [blame] | 4208 | /* package */ void bookmarksOrHistoryPicker(boolean startWithHistory) { |
The Android Open Source Project | 0c90888 | 2009-03-03 19:32:16 -0800 | [diff] [blame] | 4209 | WebView current = mTabControl.getCurrentWebView(); |
| 4210 | if (current == null) { |
| 4211 | return; |
| 4212 | } |
| 4213 | Intent intent = new Intent(this, |
| 4214 | CombinedBookmarkHistoryActivity.class); |
| 4215 | String title = current.getTitle(); |
| 4216 | String url = current.getUrl(); |
Ben Murdoch | dcc2b6f | 2009-09-21 14:29:20 +0100 | [diff] [blame] | 4217 | Bitmap thumbnail = createScreenshot(current); |
| 4218 | |
The Android Open Source Project | 0c90888 | 2009-03-03 19:32:16 -0800 | [diff] [blame] | 4219 | // Just in case the user opens bookmarks before a page finishes loading |
| 4220 | // so the current history item, and therefore the page, is null. |
| 4221 | if (null == url) { |
| 4222 | url = mLastEnteredUrl; |
| 4223 | // This can happen. |
| 4224 | if (null == url) { |
| 4225 | url = mSettings.getHomePage(); |
| 4226 | } |
| 4227 | } |
| 4228 | // In case the web page has not yet received its associated title. |
| 4229 | if (title == null) { |
| 4230 | title = url; |
| 4231 | } |
| 4232 | intent.putExtra("title", title); |
| 4233 | intent.putExtra("url", url); |
Ben Murdoch | dcc2b6f | 2009-09-21 14:29:20 +0100 | [diff] [blame] | 4234 | intent.putExtra("thumbnail", thumbnail); |
Leon Scroggins | 3044423 | 2009-09-04 18:36:20 -0400 | [diff] [blame] | 4235 | // Disable opening in a new window if we have maxed out the windows |
| 4236 | intent.putExtra("disable_new_window", mTabControl.getTabCount() |
| 4237 | >= TabControl.MAX_TABS); |
Patrick Scott | 3918d44 | 2009-08-04 13:22:29 -0400 | [diff] [blame] | 4238 | intent.putExtra("touch_icon_url", current.getTouchIconUrl()); |
The Android Open Source Project | 0c90888 | 2009-03-03 19:32:16 -0800 | [diff] [blame] | 4239 | if (startWithHistory) { |
| 4240 | intent.putExtra(CombinedBookmarkHistoryActivity.STARTING_TAB, |
| 4241 | CombinedBookmarkHistoryActivity.HISTORY_TAB); |
| 4242 | } |
| 4243 | startActivityForResult(intent, COMBO_PAGE); |
| 4244 | } |
| 4245 | |
| 4246 | // Called when loading from context menu or LOAD_URL message |
| 4247 | private void loadURL(WebView view, String url) { |
| 4248 | // In case the user enters nothing. |
| 4249 | if (url != null && url.length() != 0 && view != null) { |
| 4250 | url = smartUrlFilter(url); |
| 4251 | if (!mWebViewClient.shouldOverrideUrlLoading(view, url)) { |
| 4252 | view.loadUrl(url); |
| 4253 | } |
| 4254 | } |
| 4255 | } |
| 4256 | |
The Android Open Source Project | 0c90888 | 2009-03-03 19:32:16 -0800 | [diff] [blame] | 4257 | private String smartUrlFilter(Uri inUri) { |
| 4258 | if (inUri != null) { |
| 4259 | return smartUrlFilter(inUri.toString()); |
| 4260 | } |
| 4261 | return null; |
| 4262 | } |
| 4263 | |
| 4264 | |
| 4265 | // get window count |
| 4266 | |
| 4267 | int getWindowCount(){ |
| 4268 | if(mTabControl != null){ |
| 4269 | return mTabControl.getTabCount(); |
| 4270 | } |
| 4271 | return 0; |
| 4272 | } |
| 4273 | |
Feng Qian | b34f87a | 2009-03-24 21:27:26 -0700 | [diff] [blame] | 4274 | protected static final Pattern ACCEPTED_URI_SCHEMA = Pattern.compile( |
The Android Open Source Project | 0c90888 | 2009-03-03 19:32:16 -0800 | [diff] [blame] | 4275 | "(?i)" + // switch on case insensitive matching |
| 4276 | "(" + // begin group for schema |
| 4277 | "(?:http|https|file):\\/\\/" + |
Mitsuru Oshima | 25ad8ab | 2009-06-10 16:26:07 -0700 | [diff] [blame] | 4278 | "|(?:inline|data|about|content|javascript):" + |
The Android Open Source Project | 0c90888 | 2009-03-03 19:32:16 -0800 | [diff] [blame] | 4279 | ")" + |
| 4280 | "(.*)" ); |
| 4281 | |
| 4282 | /** |
| 4283 | * Attempts to determine whether user input is a URL or search |
| 4284 | * terms. Anything with a space is passed to search. |
| 4285 | * |
| 4286 | * Converts to lowercase any mistakenly uppercased schema (i.e., |
| 4287 | * "Http://" converts to "http://" |
| 4288 | * |
| 4289 | * @return Original or modified URL |
| 4290 | * |
| 4291 | */ |
| 4292 | String smartUrlFilter(String url) { |
| 4293 | |
| 4294 | String inUrl = url.trim(); |
| 4295 | boolean hasSpace = inUrl.indexOf(' ') != -1; |
| 4296 | |
| 4297 | Matcher matcher = ACCEPTED_URI_SCHEMA.matcher(inUrl); |
| 4298 | if (matcher.matches()) { |
The Android Open Source Project | 0c90888 | 2009-03-03 19:32:16 -0800 | [diff] [blame] | 4299 | // force scheme to lowercase |
| 4300 | String scheme = matcher.group(1); |
| 4301 | String lcScheme = scheme.toLowerCase(); |
| 4302 | if (!lcScheme.equals(scheme)) { |
Mitsuru Oshima | 123ecfb | 2009-05-18 19:11:14 -0700 | [diff] [blame] | 4303 | inUrl = lcScheme + matcher.group(2); |
| 4304 | } |
| 4305 | if (hasSpace) { |
| 4306 | inUrl = inUrl.replace(" ", "%20"); |
The Android Open Source Project | 0c90888 | 2009-03-03 19:32:16 -0800 | [diff] [blame] | 4307 | } |
| 4308 | return inUrl; |
| 4309 | } |
| 4310 | if (hasSpace) { |
Satish Sampath | 565505b | 2009-05-29 15:37:27 +0100 | [diff] [blame] | 4311 | // FIXME: Is this the correct place to add to searches? |
| 4312 | // what if someone else calls this function? |
| 4313 | int shortcut = parseUrlShortcut(inUrl); |
| 4314 | if (shortcut != SHORTCUT_INVALID) { |
| 4315 | Browser.addSearchUrl(mResolver, inUrl); |
| 4316 | String query = inUrl.substring(2); |
| 4317 | switch (shortcut) { |
| 4318 | case SHORTCUT_GOOGLE_SEARCH: |
Grace Kloba | 47fdfdb | 2009-06-30 11:15:34 -0700 | [diff] [blame] | 4319 | return URLUtil.composeSearchUrl(query, QuickSearch_G, QUERY_PLACE_HOLDER); |
Satish Sampath | 565505b | 2009-05-29 15:37:27 +0100 | [diff] [blame] | 4320 | case SHORTCUT_WIKIPEDIA_SEARCH: |
| 4321 | return URLUtil.composeSearchUrl(query, QuickSearch_W, QUERY_PLACE_HOLDER); |
| 4322 | case SHORTCUT_DICTIONARY_SEARCH: |
| 4323 | return URLUtil.composeSearchUrl(query, QuickSearch_D, QUERY_PLACE_HOLDER); |
| 4324 | case SHORTCUT_GOOGLE_MOBILE_LOCAL_SEARCH: |
The Android Open Source Project | 0c90888 | 2009-03-03 19:32:16 -0800 | [diff] [blame] | 4325 | // FIXME: we need location in this case |
Satish Sampath | 565505b | 2009-05-29 15:37:27 +0100 | [diff] [blame] | 4326 | return URLUtil.composeSearchUrl(query, QuickSearch_L, QUERY_PLACE_HOLDER); |
The Android Open Source Project | 0c90888 | 2009-03-03 19:32:16 -0800 | [diff] [blame] | 4327 | } |
| 4328 | } |
| 4329 | } else { |
| 4330 | if (Regex.WEB_URL_PATTERN.matcher(inUrl).matches()) { |
| 4331 | return URLUtil.guessUrl(inUrl); |
| 4332 | } |
| 4333 | } |
| 4334 | |
| 4335 | Browser.addSearchUrl(mResolver, inUrl); |
Grace Kloba | 47fdfdb | 2009-06-30 11:15:34 -0700 | [diff] [blame] | 4336 | return URLUtil.composeSearchUrl(inUrl, QuickSearch_G, QUERY_PLACE_HOLDER); |
The Android Open Source Project | 0c90888 | 2009-03-03 19:32:16 -0800 | [diff] [blame] | 4337 | } |
| 4338 | |
Ben Murdoch | bff2d60 | 2009-07-01 20:19:05 +0100 | [diff] [blame] | 4339 | /* package */ void setShouldShowErrorConsole(boolean flag) { |
| 4340 | if (flag == mShouldShowErrorConsole) { |
| 4341 | // Nothing to do. |
| 4342 | return; |
| 4343 | } |
| 4344 | |
| 4345 | mShouldShowErrorConsole = flag; |
| 4346 | |
| 4347 | ErrorConsoleView errorConsole = mTabControl.getCurrentErrorConsole(true); |
| 4348 | |
| 4349 | if (flag) { |
| 4350 | // Setting the show state of the console will cause it's the layout to be inflated. |
| 4351 | if (errorConsole.numberOfErrors() > 0) { |
| 4352 | errorConsole.showConsole(ErrorConsoleView.SHOW_MINIMIZED); |
| 4353 | } else { |
| 4354 | errorConsole.showConsole(ErrorConsoleView.SHOW_NONE); |
| 4355 | } |
| 4356 | |
| 4357 | // Now we can add it to the main view. |
| 4358 | mErrorConsoleContainer.addView(errorConsole, |
| 4359 | new LinearLayout.LayoutParams(ViewGroup.LayoutParams.FILL_PARENT, |
| 4360 | ViewGroup.LayoutParams.WRAP_CONTENT)); |
| 4361 | } else { |
| 4362 | mErrorConsoleContainer.removeView(errorConsole); |
| 4363 | } |
| 4364 | |
| 4365 | } |
| 4366 | |
Grace Kloba | eb6eef4 | 2009-09-15 17:56:32 -0700 | [diff] [blame] | 4367 | final static int LOCK_ICON_UNSECURE = 0; |
| 4368 | final static int LOCK_ICON_SECURE = 1; |
| 4369 | final static int LOCK_ICON_MIXED = 2; |
The Android Open Source Project | 0c90888 | 2009-03-03 19:32:16 -0800 | [diff] [blame] | 4370 | |
| 4371 | private int mLockIconType = LOCK_ICON_UNSECURE; |
| 4372 | private int mPrevLockType = LOCK_ICON_UNSECURE; |
| 4373 | |
| 4374 | private BrowserSettings mSettings; |
| 4375 | private TabControl mTabControl; |
| 4376 | private ContentResolver mResolver; |
| 4377 | private FrameLayout mContentView; |
Andrei Popescu | adc008d | 2009-06-26 14:11:30 +0100 | [diff] [blame] | 4378 | private View mCustomView; |
| 4379 | private FrameLayout mCustomViewContainer; |
Andrei Popescu | c9b5556 | 2009-07-07 10:51:15 +0100 | [diff] [blame] | 4380 | private WebChromeClient.CustomViewCallback mCustomViewCallback; |
The Android Open Source Project | 0c90888 | 2009-03-03 19:32:16 -0800 | [diff] [blame] | 4381 | |
| 4382 | // FIXME, temp address onPrepareMenu performance problem. When we move everything out of |
| 4383 | // view, we should rewrite this. |
| 4384 | private int mCurrentMenuState = 0; |
| 4385 | private int mMenuState = R.id.MAIN_MENU; |
Andrei Popescu | adc008d | 2009-06-26 14:11:30 +0100 | [diff] [blame] | 4386 | private int mOldMenuState = EMPTY_MENU; |
The Android Open Source Project | 0c90888 | 2009-03-03 19:32:16 -0800 | [diff] [blame] | 4387 | private static final int EMPTY_MENU = -1; |
| 4388 | private Menu mMenu; |
| 4389 | |
| 4390 | private FindDialog mFindDialog; |
| 4391 | // Used to prevent chording to result in firing two shortcuts immediately |
| 4392 | // one after another. Fixes bug 1211714. |
| 4393 | boolean mCanChord; |
| 4394 | |
| 4395 | private boolean mInLoad; |
| 4396 | private boolean mIsNetworkUp; |
| 4397 | |
| 4398 | private boolean mPageStarted; |
| 4399 | private boolean mActivityInPause = true; |
| 4400 | |
Ben Murdoch | aac7aa6 | 2009-09-17 16:57:40 +0100 | [diff] [blame] | 4401 | // If the frame fails to load, we should snap a second screenshot |
| 4402 | // to ensure that we get the right thumbnail (i.e. of the error page). |
| 4403 | private boolean mNeedExtraScreenShot = false; |
| 4404 | |
The Android Open Source Project | 0c90888 | 2009-03-03 19:32:16 -0800 | [diff] [blame] | 4405 | private boolean mMenuIsDown; |
| 4406 | |
The Android Open Source Project | 0c90888 | 2009-03-03 19:32:16 -0800 | [diff] [blame] | 4407 | private static boolean mInTrace; |
| 4408 | |
| 4409 | // Performance probe |
| 4410 | private static final int[] SYSTEM_CPU_FORMAT = new int[] { |
| 4411 | Process.PROC_SPACE_TERM | Process.PROC_COMBINE, |
| 4412 | Process.PROC_SPACE_TERM | Process.PROC_OUT_LONG, // 1: user time |
| 4413 | Process.PROC_SPACE_TERM | Process.PROC_OUT_LONG, // 2: nice time |
| 4414 | Process.PROC_SPACE_TERM | Process.PROC_OUT_LONG, // 3: sys time |
| 4415 | Process.PROC_SPACE_TERM | Process.PROC_OUT_LONG, // 4: idle time |
| 4416 | Process.PROC_SPACE_TERM | Process.PROC_OUT_LONG, // 5: iowait time |
| 4417 | Process.PROC_SPACE_TERM | Process.PROC_OUT_LONG, // 6: irq time |
| 4418 | Process.PROC_SPACE_TERM | Process.PROC_OUT_LONG // 7: softirq time |
| 4419 | }; |
| 4420 | |
| 4421 | private long mStart; |
| 4422 | private long mProcessStart; |
| 4423 | private long mUserStart; |
| 4424 | private long mSystemStart; |
| 4425 | private long mIdleStart; |
| 4426 | private long mIrqStart; |
| 4427 | |
| 4428 | private long mUiStart; |
| 4429 | |
| 4430 | private Drawable mMixLockIcon; |
| 4431 | private Drawable mSecLockIcon; |
The Android Open Source Project | 0c90888 | 2009-03-03 19:32:16 -0800 | [diff] [blame] | 4432 | |
| 4433 | /* hold a ref so we can auto-cancel if necessary */ |
| 4434 | private AlertDialog mAlertDialog; |
| 4435 | |
| 4436 | // Wait for credentials before loading google.com |
| 4437 | private ProgressDialog mCredsDlg; |
| 4438 | |
| 4439 | // The up-to-date URL and title (these can be different from those stored |
| 4440 | // in WebView, since it takes some time for the information in WebView to |
| 4441 | // get updated) |
| 4442 | private String mUrl; |
| 4443 | private String mTitle; |
| 4444 | |
| 4445 | // As PageInfo has different style for landscape / portrait, we have |
| 4446 | // to re-open it when configuration changed |
| 4447 | private AlertDialog mPageInfoDialog; |
| 4448 | private TabControl.Tab mPageInfoView; |
| 4449 | // If the Page-Info dialog is launched from the SSL-certificate-on-error |
| 4450 | // dialog, we should not just dismiss it, but should get back to the |
| 4451 | // SSL-certificate-on-error dialog. This flag is used to store this state |
| 4452 | private Boolean mPageInfoFromShowSSLCertificateOnError; |
| 4453 | |
| 4454 | // as SSLCertificateOnError has different style for landscape / portrait, |
| 4455 | // we have to re-open it when configuration changed |
| 4456 | private AlertDialog mSSLCertificateOnErrorDialog; |
| 4457 | private WebView mSSLCertificateOnErrorView; |
| 4458 | private SslErrorHandler mSSLCertificateOnErrorHandler; |
| 4459 | private SslError mSSLCertificateOnErrorError; |
| 4460 | |
| 4461 | // as SSLCertificate has different style for landscape / portrait, we |
| 4462 | // have to re-open it when configuration changed |
| 4463 | private AlertDialog mSSLCertificateDialog; |
| 4464 | private TabControl.Tab mSSLCertificateView; |
| 4465 | |
| 4466 | // as HttpAuthentication has different style for landscape / portrait, we |
| 4467 | // have to re-open it when configuration changed |
| 4468 | private AlertDialog mHttpAuthenticationDialog; |
| 4469 | private HttpAuthHandler mHttpAuthHandler; |
| 4470 | |
| 4471 | /*package*/ static final FrameLayout.LayoutParams COVER_SCREEN_PARAMS = |
| 4472 | new FrameLayout.LayoutParams( |
| 4473 | ViewGroup.LayoutParams.FILL_PARENT, |
| 4474 | ViewGroup.LayoutParams.FILL_PARENT); |
Andrei Popescu | adc008d | 2009-06-26 14:11:30 +0100 | [diff] [blame] | 4475 | /*package*/ static final FrameLayout.LayoutParams COVER_SCREEN_GRAVITY_CENTER = |
| 4476 | new FrameLayout.LayoutParams( |
| 4477 | ViewGroup.LayoutParams.FILL_PARENT, |
| 4478 | ViewGroup.LayoutParams.FILL_PARENT, |
| 4479 | Gravity.CENTER); |
Grace Kloba | 47fdfdb | 2009-06-30 11:15:34 -0700 | [diff] [blame] | 4480 | // Google search |
| 4481 | final static String QuickSearch_G = "http://www.google.com/m?q=%s"; |
The Android Open Source Project | 0c90888 | 2009-03-03 19:32:16 -0800 | [diff] [blame] | 4482 | // Wikipedia search |
| 4483 | final static String QuickSearch_W = "http://en.wikipedia.org/w/index.php?search=%s&go=Go"; |
| 4484 | // Dictionary search |
| 4485 | final static String QuickSearch_D = "http://dictionary.reference.com/search?q=%s"; |
| 4486 | // Google Mobile Local search |
| 4487 | final static String QuickSearch_L = "http://www.google.com/m/search?site=local&q=%s&near=mountain+view"; |
| 4488 | |
| 4489 | final static String QUERY_PLACE_HOLDER = "%s"; |
| 4490 | |
| 4491 | // "source" parameter for Google search through search key |
| 4492 | final static String GOOGLE_SEARCH_SOURCE_SEARCHKEY = "browser-key"; |
| 4493 | // "source" parameter for Google search through goto menu |
| 4494 | final static String GOOGLE_SEARCH_SOURCE_GOTO = "browser-goto"; |
| 4495 | // "source" parameter for Google search through simplily type |
| 4496 | final static String GOOGLE_SEARCH_SOURCE_TYPE = "browser-type"; |
| 4497 | // "source" parameter for Google search suggested by the browser |
| 4498 | final static String GOOGLE_SEARCH_SOURCE_SUGGEST = "browser-suggest"; |
| 4499 | // "source" parameter for Google search from unknown source |
| 4500 | final static String GOOGLE_SEARCH_SOURCE_UNKNOWN = "unknown"; |
| 4501 | |
| 4502 | private final static String LOGTAG = "browser"; |
| 4503 | |
The Android Open Source Project | 0c90888 | 2009-03-03 19:32:16 -0800 | [diff] [blame] | 4504 | private String mLastEnteredUrl; |
| 4505 | |
| 4506 | private PowerManager.WakeLock mWakeLock; |
| 4507 | private final static int WAKELOCK_TIMEOUT = 5 * 60 * 1000; // 5 minutes |
| 4508 | |
| 4509 | private Toast mStopToast; |
| 4510 | |
Leon Scroggins | 6857939 | 2009-09-15 15:31:54 -0400 | [diff] [blame] | 4511 | private TitleBar mTitleBar; |
Leon Scroggins | 81db366 | 2009-06-04 17:45:11 -0400 | [diff] [blame] | 4512 | |
Ben Murdoch | bff2d60 | 2009-07-01 20:19:05 +0100 | [diff] [blame] | 4513 | private LinearLayout mErrorConsoleContainer = null; |
| 4514 | private boolean mShouldShowErrorConsole = false; |
| 4515 | |
The Android Open Source Project | 0c90888 | 2009-03-03 19:32:16 -0800 | [diff] [blame] | 4516 | // As the ids are dynamically created, we can't guarantee that they will |
| 4517 | // be in sequence, so this static array maps ids to a window number. |
| 4518 | final static private int[] WINDOW_SHORTCUT_ID_ARRAY = |
| 4519 | { R.id.window_one_menu_id, R.id.window_two_menu_id, R.id.window_three_menu_id, |
| 4520 | R.id.window_four_menu_id, R.id.window_five_menu_id, R.id.window_six_menu_id, |
| 4521 | R.id.window_seven_menu_id, R.id.window_eight_menu_id }; |
| 4522 | |
| 4523 | // monitor platform changes |
| 4524 | private IntentFilter mNetworkStateChangedFilter; |
| 4525 | private BroadcastReceiver mNetworkStateIntentReceiver; |
| 4526 | |
Grace Kloba | b4da0ad | 2009-05-14 14:45:40 -0700 | [diff] [blame] | 4527 | private BroadcastReceiver mPackageInstallationReceiver; |
| 4528 | |
Patrick Scott | 59ce830 | 2009-09-18 16:29:38 -0400 | [diff] [blame] | 4529 | // AsyncTask for downloading touch icons |
| 4530 | /* package */ DownloadTouchIcon mTouchIconLoader; |
| 4531 | |
The Android Open Source Project | 0c90888 | 2009-03-03 19:32:16 -0800 | [diff] [blame] | 4532 | // activity requestCode |
Nicolas Roard | 78a98e4 | 2009-05-11 13:34:17 +0100 | [diff] [blame] | 4533 | final static int COMBO_PAGE = 1; |
| 4534 | final static int DOWNLOAD_PAGE = 2; |
| 4535 | final static int PREFERENCES_PAGE = 3; |
The Android Open Source Project | 0c90888 | 2009-03-03 19:32:16 -0800 | [diff] [blame] | 4536 | |
Andrei Popescu | 540035d | 2009-09-18 18:59:20 +0100 | [diff] [blame] | 4537 | // the default <video> poster |
| 4538 | private Bitmap mDefaultVideoPoster; |
| 4539 | // the video progress view |
| 4540 | private View mVideoProgressView; |
| 4541 | |
Mitsuru Oshima | 25ad8ab | 2009-06-10 16:26:07 -0700 | [diff] [blame] | 4542 | /** |
| 4543 | * A UrlData class to abstract how the content will be set to WebView. |
| 4544 | * This base class uses loadUrl to show the content. |
| 4545 | */ |
| 4546 | private static class UrlData { |
| 4547 | String mUrl; |
Grace Kloba | 60e095c | 2009-06-16 11:50:55 -0700 | [diff] [blame] | 4548 | byte[] mPostData; |
| 4549 | |
Mitsuru Oshima | 25ad8ab | 2009-06-10 16:26:07 -0700 | [diff] [blame] | 4550 | UrlData(String url) { |
| 4551 | this.mUrl = url; |
| 4552 | } |
Grace Kloba | 60e095c | 2009-06-16 11:50:55 -0700 | [diff] [blame] | 4553 | |
| 4554 | void setPostData(byte[] postData) { |
| 4555 | mPostData = postData; |
| 4556 | } |
| 4557 | |
Mitsuru Oshima | 25ad8ab | 2009-06-10 16:26:07 -0700 | [diff] [blame] | 4558 | boolean isEmpty() { |
| 4559 | return mUrl == null || mUrl.length() == 0; |
| 4560 | } |
| 4561 | |
Mitsuru Oshima | 7944b7d | 2009-06-16 16:34:51 -0700 | [diff] [blame] | 4562 | public void loadIn(WebView webView) { |
Grace Kloba | 60e095c | 2009-06-16 11:50:55 -0700 | [diff] [blame] | 4563 | if (mPostData != null) { |
| 4564 | webView.postUrl(mUrl, mPostData); |
| 4565 | } else { |
| 4566 | webView.loadUrl(mUrl); |
| 4567 | } |
Mitsuru Oshima | 25ad8ab | 2009-06-10 16:26:07 -0700 | [diff] [blame] | 4568 | } |
| 4569 | }; |
| 4570 | |
| 4571 | /** |
| 4572 | * A subclass of UrlData class that can display inlined content using |
| 4573 | * {@link WebView#loadDataWithBaseURL(String, String, String, String, String)}. |
| 4574 | */ |
| 4575 | private static class InlinedUrlData extends UrlData { |
| 4576 | InlinedUrlData(String inlined, String mimeType, String encoding, String failUrl) { |
| 4577 | super(failUrl); |
| 4578 | mInlined = inlined; |
| 4579 | mMimeType = mimeType; |
| 4580 | mEncoding = encoding; |
| 4581 | } |
| 4582 | String mMimeType; |
| 4583 | String mInlined; |
| 4584 | String mEncoding; |
Mitsuru Oshima | 7944b7d | 2009-06-16 16:34:51 -0700 | [diff] [blame] | 4585 | @Override |
Mitsuru Oshima | 25ad8ab | 2009-06-10 16:26:07 -0700 | [diff] [blame] | 4586 | boolean isEmpty() { |
Ben Murdoch | bff2d60 | 2009-07-01 20:19:05 +0100 | [diff] [blame] | 4587 | return mInlined == null || mInlined.length() == 0 || super.isEmpty(); |
Mitsuru Oshima | 25ad8ab | 2009-06-10 16:26:07 -0700 | [diff] [blame] | 4588 | } |
| 4589 | |
Mitsuru Oshima | 7944b7d | 2009-06-16 16:34:51 -0700 | [diff] [blame] | 4590 | @Override |
| 4591 | public void loadIn(WebView webView) { |
Mitsuru Oshima | 25ad8ab | 2009-06-10 16:26:07 -0700 | [diff] [blame] | 4592 | webView.loadDataWithBaseURL(null, mInlined, mMimeType, mEncoding, mUrl); |
| 4593 | } |
| 4594 | } |
| 4595 | |
Leon Scroggins | 1f005d3 | 2009-08-10 17:36:42 -0400 | [diff] [blame] | 4596 | /* package */ static final UrlData EMPTY_URL_DATA = new UrlData(null); |
The Android Open Source Project | 0c90888 | 2009-03-03 19:32:16 -0800 | [diff] [blame] | 4597 | } |