]> gitweb.stoutner.com Git - PrivacyBrowserAndroid.git/blob - app/src/main/java/com/stoutner/privacybrowser/Webview.java
Deactavite Back and Forward when they can't be used.
[PrivacyBrowserAndroid.git] / app / src / main / java / com / stoutner / privacybrowser / Webview.java
1 /**
2  * Copyright 2015-2016 Soren Stoutner <soren@stoutner.com>.
3  *
4  * This file is part of Privacy Browser.
5  *
6  * Privacy Browser is free software: you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License as published by
8  * the Free Software Foundation, either version 3 of the License, or
9  * (at your option) any later version.
10  *
11  * Privacy Browser is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  * GNU General Public License for more details.
15  *
16  * You should have received a copy of the GNU General Public License
17  * along with Privacy Browser.  If not, see <http://www.gnu.org/licenses/>.
18  */
19
20 package com.stoutner.privacybrowser;
21
22 import android.annotation.SuppressLint;
23 import android.annotation.TargetApi;
24 import android.app.Activity;
25 import android.app.DownloadManager;
26 import android.content.ClipData;
27 import android.content.ClipboardManager;
28 import android.content.Context;
29 import android.content.Intent;
30 import android.graphics.Bitmap;
31 import android.net.Uri;
32 import android.os.Build;
33 import android.os.Bundle;
34 import android.support.v4.app.DialogFragment;
35 import android.support.v7.app.ActionBar;
36 import android.support.v7.app.AppCompatActivity;
37 import android.support.v7.app.AppCompatDialogFragment;
38 import android.util.Patterns;
39 import android.view.KeyEvent;
40 import android.view.Menu;
41 import android.view.MenuItem;
42 import android.view.View;
43 import android.view.inputmethod.InputMethodManager;
44 import android.webkit.CookieManager;
45 import android.webkit.DownloadListener;
46 import android.webkit.WebChromeClient;
47 import android.webkit.WebView;
48 import android.webkit.WebViewClient;
49 import android.widget.EditText;
50 import android.widget.FrameLayout;
51 import android.widget.ImageView;
52 import android.widget.ProgressBar;
53 import android.widget.Toast;
54 import java.io.UnsupportedEncodingException;
55 import java.net.MalformedURLException;
56 import java.net.URL;
57 import java.net.URLEncoder;
58
59 public class Webview extends AppCompatActivity implements CreateHomeScreenShortcut.CreateHomeScreenSchortcutListener {
60     // favoriteIcon is public static so it can be accessed from CreateHomeScreenShortcut.
61     public static Bitmap favoriteIcon;
62
63     // mainWebView is used in onCreate and onOptionsItemSelected.
64     private WebView mainWebView;
65     // formattedUrlString is used in onCreate, onOptionsItemSelected, onCreateHomeScreenShortcutCreate, and loadUrlFromTextBox.
66     private String formattedUrlString;
67     // homepage is used in onCreate and onOptionsItemSelected.
68     private String homepage = "https://www.duckduckgo.com/";
69     // enableJavaScript is used in onCreate, onCreateOptionsMenu, and onOptionsItemSelected.
70     private boolean enableJavaScript;
71     // enableDomStorage is used in onCreate, onCreateOptionsMenu, and onOptionsItemSelected.
72     private boolean enableDomStorage;
73
74     /*  enableSaveFormData does nothing until database storage is implemented.
75     // enableSaveFormData is used in onCreate, onCreateOptionsMenu, and onOptionsItemSelected.
76     private boolean enableSaveFormData;
77     */
78
79     // cookieManager is used in onCreate and onOptionsItemSelected.
80     private CookieManager cookieManager;
81     //enableCookies is used in onCreate, onCreateOptionsMenu, and onOptionsItemSelected.
82     private boolean enableCookies;
83
84     // actionBar is used in onCreate and onOptionsItemSelected.
85     private ActionBar actionBar;
86
87     // Remove Android Studio's warning about the dangers of using SetJavaScriptEnabled.
88     @SuppressLint("SetJavaScriptEnabled")
89
90     @Override
91     protected void onCreate(Bundle savedInstanceState) {
92         super.onCreate(savedInstanceState);
93         setContentView(R.layout.activity_webview);
94
95         final FrameLayout fullScreenVideoFrameLayout = (FrameLayout) findViewById(R.id.fullScreenVideoFrameLayout);
96         final Activity mainWebViewActivity = this;
97
98         mainWebView = (WebView) findViewById(R.id.mainWebView);
99         actionBar = getSupportActionBar();
100
101         if (actionBar != null) {
102             // Remove the title from the action bar.
103             actionBar.setDisplayShowTitleEnabled(false);
104
105             // Add the custom app_bar layout, which shows the favoriteIcon, urlTextBar, and progressBar.
106             actionBar.setCustomView(R.layout.app_bar);
107             actionBar.setDisplayOptions(ActionBar.DISPLAY_SHOW_CUSTOM);
108
109             // Set the "go" button on the keyboard to load the URL in urlTextBox.
110             EditText urlTextBox = (EditText) actionBar.getCustomView().findViewById(R.id.urlTextBox);
111             urlTextBox.setOnKeyListener(new View.OnKeyListener() {
112                 public boolean onKey(View v, int keyCode, KeyEvent event) {
113                     // If the event is a key-down event on the "enter" button, load the URL.
114                     if ((event.getAction() == KeyEvent.ACTION_DOWN) && (keyCode == KeyEvent.KEYCODE_ENTER)) {
115                         // Load the URL into the mainWebView and consume the event.
116                         try {
117                             loadUrlFromTextBox();
118                         } catch (UnsupportedEncodingException e) {
119                             e.printStackTrace();
120                         }
121                         // If the enter key was pressed, consume the event.
122                         return true;
123                     } else {
124                         // If any other key was pressed, do not consume the event.
125                         return false;
126                     }
127                 }
128             });
129         }
130
131         mainWebView.setWebViewClient(new WebViewClient() {
132             // shouldOverrideUrlLoading makes this WebView the default handler for URLs inside the app, so that links are not kicked out to other apps.
133             @Override
134             public boolean shouldOverrideUrlLoading(WebView view, String url) {
135                 mainWebView.loadUrl(url);
136                 return true;
137             }
138
139             /* These errors do not provide any useful information and clutter the screen.
140             public void onReceivedError(WebView view, WebResourceRequest request, WebResourceError error) {
141                 Toast.makeText(mainWebViewActivity, "Error loading " + request + "   Error: " + error, Toast.LENGTH_SHORT).show();
142             }
143             */
144
145             // Update the URL in urlTextBox when the page starts to load.
146             @Override
147             public void onPageStarted(WebView view, String url, Bitmap favicon) {
148                 if (actionBar != null) {
149                     EditText urlTextBox = (EditText) actionBar.getCustomView().findViewById(R.id.urlTextBox);
150                     urlTextBox.setText(url);
151                 }
152             }
153
154             // Update formattedUrlString and urlTextBox.  It is necessary to do this after the page finishes loading because the final URL can change during load.
155             @Override
156             public void onPageFinished(WebView view, String url) {
157                 formattedUrlString = url;
158
159                 if (actionBar != null) {
160                     EditText urlTextBox = (EditText) actionBar.getCustomView().findViewById(R.id.urlTextBox);
161                     urlTextBox.setText(formattedUrlString);
162                 }
163             }
164         });
165
166         mainWebView.setWebChromeClient(new WebChromeClient() {
167             // Update the progress bar when a page is loading.
168             @Override
169             public void onProgressChanged(WebView view, int progress) {
170                 // Make sure that actionBar is not null.
171                 if (actionBar != null) {
172                     ProgressBar progressBar = (ProgressBar) actionBar.getCustomView().findViewById(R.id.progressBar);
173                     progressBar.setProgress(progress);
174                     if (progress < 100) {
175                         progressBar.setVisibility(View.VISIBLE);
176                     } else {
177                         progressBar.setVisibility(View.GONE);
178                     }
179                 }
180             }
181
182             // Set the favorite icon when it changes.
183             @Override
184             public void onReceivedIcon(WebView view, Bitmap icon) {
185                 // Save a copy of the favorite icon for use if a shortcut is added to the home screen.
186                 favoriteIcon = icon;
187
188                 // Place the favorite icon in the actionBar if it is not null.
189                 if (actionBar != null) {
190                     ImageView imageViewFavoriteIcon = (ImageView) actionBar.getCustomView().findViewById(R.id.favoriteIcon);
191                     imageViewFavoriteIcon.setImageBitmap(Bitmap.createScaledBitmap(icon, 64, 64, true));
192                 }
193             }
194
195             // Enter full screen video
196             @Override
197             public void onShowCustomView(View view, CustomViewCallback callback) {
198                 if (getSupportActionBar() != null) {
199                     getSupportActionBar().hide();
200                 }
201
202                 fullScreenVideoFrameLayout.addView(view);
203                 fullScreenVideoFrameLayout.setVisibility(View.VISIBLE);
204
205                 mainWebView.setVisibility(View.GONE);
206
207                 /* SYSTEM_UI_FLAG_HIDE_NAVIGATION hides the navigation bars on the bottom or right of the screen.
208                 ** SYSTEM_UI_FLAG_FULLSCREEN hides the status bar across the top of the screen.
209                 ** SYSTEM_UI_FLAG_IMMERSIVE_STICKY makes the navigation and status bars ghosted overlays and automatically rehides them.
210                 */
211
212                 // Set the one flag supported by API >= 14.
213                 if (Build.VERSION.SDK_INT >= 14) {
214                     view.setSystemUiVisibility(View.SYSTEM_UI_FLAG_HIDE_NAVIGATION);
215                 }
216
217                 // Set the two flags that are supported by API >= 16.
218                 if (Build.VERSION.SDK_INT >= 16) {
219                     view.setSystemUiVisibility(View.SYSTEM_UI_FLAG_HIDE_NAVIGATION | View.SYSTEM_UI_FLAG_FULLSCREEN);
220                 }
221
222                 // Set all three flags that are supported by API >= 19.
223                 if (Build.VERSION.SDK_INT >= 19) {
224                     view.setSystemUiVisibility(View.SYSTEM_UI_FLAG_HIDE_NAVIGATION | View.SYSTEM_UI_FLAG_FULLSCREEN | View.SYSTEM_UI_FLAG_IMMERSIVE_STICKY);
225                 }
226             }
227
228             // Exit full screen video
229             public void onHideCustomView() {
230                 if (getSupportActionBar() != null) {
231                     getSupportActionBar().show();
232                 }
233
234                 mainWebView.setVisibility(View.VISIBLE);
235
236                 fullScreenVideoFrameLayout.removeAllViews();
237                 fullScreenVideoFrameLayout.setVisibility(View.GONE);
238             }
239         });
240
241         // Allow the downloading of files.
242         mainWebView.setDownloadListener(new DownloadListener() {
243             // Launch the Android download manager when a link leads to a download.
244             @Override
245             public void onDownloadStart(String url, String userAgent, String contentDisposition, String mimetype, long contentLength) {
246                 DownloadManager downloadManager = (DownloadManager) getSystemService(DOWNLOAD_SERVICE);
247                 DownloadManager.Request requestUri = new DownloadManager.Request(Uri.parse(url));
248
249                 // Add the URL as the description for the download.
250                 requestUri.setDescription(url);
251
252                 // Show the download notification after the download is completed if the API is 11 or greater.
253                 if (Build.VERSION.SDK_INT >= 11) {
254                     requestUri.setNotificationVisibility(DownloadManager.Request.VISIBILITY_VISIBLE_NOTIFY_COMPLETED);
255                 }
256
257                 downloadManager.enqueue(requestUri);
258                 Toast.makeText(mainWebViewActivity, "Download started", Toast.LENGTH_SHORT).show();
259             }
260         });
261
262         // Allow pinch to zoom.
263         mainWebView.getSettings().setBuiltInZoomControls(true);
264
265         // Hide zoom controls if the API is 11 or greater.
266         if (Build.VERSION.SDK_INT >= 11) {
267             mainWebView.getSettings().setDisplayZoomControls(false);
268         }
269
270         // Set JavaScript initial status.
271         enableJavaScript = true;
272         mainWebView.getSettings().setJavaScriptEnabled(enableJavaScript);
273
274         // Set DOM Storage initial status.
275         enableDomStorage = true;
276         mainWebView.getSettings().setDomStorageEnabled(enableDomStorage);
277
278         /* Save Form Data does nothing until database storage is implemented.
279         // Set Save Form Data initial status.
280         enableSaveFormData = true;
281         mainWebView.getSettings().setSaveFormData(enableSaveFormData);
282         */
283
284         // Set Cookies initial status.
285         cookieManager = CookieManager.getInstance();
286         enableCookies = true;
287         cookieManager.setAcceptCookie(enableCookies);
288
289         // Get the intent information that started the app.
290         final Intent intent = getIntent();
291
292         if (intent.getData() != null) {
293             // Get the intent data and convert it to a string.
294             final Uri intentUriData = intent.getData();
295             formattedUrlString = intentUriData.toString();
296         }
297
298         // If formattedUrlString is null assign the homepage to it.
299         if (formattedUrlString == null) {
300             formattedUrlString = homepage;
301         }
302
303         // Load the initial website.
304         mainWebView.loadUrl(formattedUrlString);
305     }
306
307     @Override
308     public boolean onCreateOptionsMenu(Menu menu) {
309         // Inflate the menu; this adds items to the action bar if it is present.
310         getMenuInflater().inflate(R.menu.menu_webview, menu);
311
312         // Get MenuItems for checkable menu items.
313         MenuItem toggleJavaScript = menu.findItem(R.id.toggleJavaScript);
314         MenuItem toggleDomStorage = menu.findItem(R.id.toggleDomStorage);
315         /* toggleSaveFormData does nothing until database storage is implemented.
316         MenuItem toggleSaveFormData = menu.findItem(R.id.toggleSaveFormData);
317         */
318         MenuItem toggleCookies = menu.findItem(R.id.toggleCookies);
319         MenuItem clearCookies = menu.findItem(R.id.clearCookies);
320
321         // Set the initial status of the menu item checkboxes.
322         toggleJavaScript.setChecked(enableJavaScript);
323         toggleDomStorage.setChecked(enableDomStorage);
324         /* toggleSaveFormData does nothing until database storage is implemented.
325         toggleSaveFormData.setChecked(enableSaveFormData);
326         */
327         toggleCookies.setChecked(enableCookies);
328
329         return true;
330     }
331
332     @Override
333     public boolean onPrepareOptionsMenu(Menu menu) {
334         // Enable Clear Cookies if there are any.
335         MenuItem clearCookies = menu.findItem(R.id.clearCookies);
336         clearCookies.setEnabled(cookieManager.hasCookies());
337
338         // Enable Back if canGoBack().
339         MenuItem back = menu.findItem(R.id.back);
340         back.setEnabled(mainWebView.canGoBack());
341
342         // Enable forward if canGoForward().
343         MenuItem forward = menu.findItem(R.id.forward);
344         forward.setEnabled(mainWebView.canGoForward());
345
346         // Run all the other default commands.
347         super.onPrepareOptionsMenu(menu);
348
349         // return true displays the menu.
350         return true;
351     }
352
353     @Override
354     // @TargetApi(11) turns off the errors regarding copy and paste, which are removed from view in menu_webview.xml for lower version of Android.
355     @TargetApi(11)
356     // Remove Android Studio's warning about the dangers of using SetJavaScriptEnabled.
357     @SuppressLint("SetJavaScriptEnabled")
358     // removeAllCookies is deprecated, but it is required for API < 21.
359     @SuppressWarnings("deprecation")
360     public boolean onOptionsItemSelected(MenuItem menuItem) {
361         int menuItemId = menuItem.getItemId();
362         ClipboardManager clipboard = (ClipboardManager) getSystemService(Context.CLIPBOARD_SERVICE);
363
364         // Sets the commands that relate to the menu entries.
365         switch (menuItemId) {
366             case R.id.toggleJavaScript:
367                 if (enableJavaScript) {
368                     enableJavaScript = false;
369                     menuItem.setChecked(false);
370                     mainWebView.getSettings().setJavaScriptEnabled(false);
371                     mainWebView.reload();
372                 } else {
373                     enableJavaScript = true;
374                     menuItem.setChecked(true);
375                     mainWebView.getSettings().setJavaScriptEnabled(true);
376                     mainWebView.reload();
377                 }
378                 return true;
379
380             case R.id.toggleDomStorage:
381                 if (enableDomStorage) {
382                     enableDomStorage = false;
383                     menuItem.setChecked(false);
384                     mainWebView.getSettings().setDomStorageEnabled(false);
385                     mainWebView.reload();
386                 } else {
387                     enableDomStorage = true;
388                     menuItem.setChecked(true);
389                     mainWebView.getSettings().setDomStorageEnabled(true);
390                     mainWebView.reload();
391                 }
392                 return true;
393
394             /* toggleSaveFormData does nothing until database storage is implemented.
395             case R.id.toggleSaveFormData:
396                 if (enableSaveFormData) {
397                     enableSaveFormData = false;
398                     menuItem.setChecked(false);
399                     mainWebView.getSettings().setSaveFormData(false);
400                     mainWebView.reload();
401                 } else {
402                     enableSaveFormData = true;
403                     menuItem.setChecked(true);
404                     mainWebView.getSettings().setSaveFormData(true);
405                     mainWebView.reload();
406                 }
407                 return true;
408             */
409
410             case R.id.toggleCookies:
411                 if (enableCookies) {
412                     enableCookies = false;
413                     menuItem.setChecked(false);
414                     cookieManager.setAcceptCookie(false);
415                     mainWebView.reload();
416                 } else {
417                     enableCookies = true;
418                     menuItem.setChecked(true);
419                     cookieManager.setAcceptCookie(true);
420                     mainWebView.reload();
421                 }
422                 return true;
423
424             case R.id.clearCookies:
425                 if (Build.VERSION.SDK_INT < 21) {
426                     cookieManager.removeAllCookie();
427                 } else {
428                     cookieManager.removeAllCookies(null);
429                 }
430                 Toast.makeText(getApplicationContext(), "Cookies deleted", Toast.LENGTH_SHORT).show();
431                 return true;
432
433             case R.id.home:
434                 mainWebView.loadUrl(homepage);
435                 return true;
436
437             case R.id.refresh:
438                 mainWebView.reload();
439                 return true;
440
441             case R.id.back:
442                 mainWebView.goBack();
443                 return true;
444
445             case R.id.forward:
446                 mainWebView.goForward();
447                 return true;
448
449             case R.id.copyURL:
450                 // Make sure that actionBar is not null.
451                 if (actionBar != null) {
452                     EditText urlTextBox = (EditText) actionBar.getCustomView().findViewById(R.id.urlTextBox);
453                     clipboard.setPrimaryClip(ClipData.newPlainText("URL", urlTextBox.getText()));
454                 }
455                 return true;
456
457             case R.id.pasteURL:
458                 // Make sure that actionBar is not null.
459                 if (actionBar != null) {
460                     ClipData.Item clipboardData = clipboard.getPrimaryClip().getItemAt(0);
461                     EditText urlTextBox = (EditText) actionBar.getCustomView().findViewById(R.id.urlTextBox);
462                     urlTextBox.setText(clipboardData.coerceToText(this));
463                     try {
464                         loadUrlFromTextBox();
465                     } catch (UnsupportedEncodingException e) {
466                         e.printStackTrace();
467                     }
468                 }
469                 return true;
470
471             case R.id.shareURL:
472                 // Make sure that actionBar is not null.
473                 if (actionBar != null) {
474                     EditText urlTextBox = (EditText) actionBar.getCustomView().findViewById(R.id.urlTextBox);
475                     Intent shareIntent = new Intent();
476                     shareIntent.setAction(Intent.ACTION_SEND);
477                     shareIntent.putExtra(Intent.EXTRA_TEXT, urlTextBox.getText().toString());
478                     shareIntent.setType("text/plain");
479                     startActivity(Intent.createChooser(shareIntent, "Share URL"));
480                 }
481                 return true;
482
483             case R.id.addToHomescreen:
484                 // Show the CreateHomeScreenShortcut AlertDialog and name this instance createShortcut.
485                 AppCompatDialogFragment shortcutDialog = new CreateHomeScreenShortcut();
486                 shortcutDialog.show(getSupportFragmentManager(), "createShortcut");
487
488                 //Everything else will be handled by CreateHomeScreenShortcut and the associated listeners below.
489                 return true;
490
491             case R.id.downloads:
492                 // Launch the system Download Manager.
493                 Intent downloadManangerIntent = new Intent(DownloadManager.ACTION_VIEW_DOWNLOADS);
494
495                 // Launch as a new task so that Download Manager and Privacy Browser show as separate windows in the recent tasks list.
496                 downloadManangerIntent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
497
498                 startActivity(downloadManangerIntent);
499                 return true;
500
501             case R.id.about:
502                 // Show the AboutDialog AlertDialog and name this instance aboutDialog.
503                 AppCompatDialogFragment aboutDialog = new AboutDialog();
504                 aboutDialog.show(getSupportFragmentManager(), "aboutDialog");
505                 return true;
506
507             default:
508                 return super.onOptionsItemSelected(menuItem);
509         }
510     }
511
512     @Override
513     public void onCreateHomeScreenShortcutCancel(DialogFragment dialog) {
514         // Do nothing because the user selected "Cancel".
515     }
516
517     @Override
518     public void onCreateHomeScreenShortcutCreate(DialogFragment dialog) {
519         // Get shortcutNameEditText from the alert dialog.
520         EditText shortcutNameEditText = (EditText) dialog.getDialog().findViewById(R.id.shortcutNameEditText);
521
522         // Create the bookmark shortcut based on formattedUrlString.
523         Intent bookmarkShortcut = new Intent();
524         bookmarkShortcut.setAction(Intent.ACTION_VIEW);
525         bookmarkShortcut.setData(Uri.parse(formattedUrlString));
526
527         // Place the bookmark shortcut on the home screen.
528         Intent placeBookmarkShortcut = new Intent();
529         placeBookmarkShortcut.putExtra("android.intent.extra.shortcut.INTENT", bookmarkShortcut);
530         placeBookmarkShortcut.putExtra("android.intent.extra.shortcut.NAME", shortcutNameEditText.getText().toString());
531         placeBookmarkShortcut.putExtra("android.intent.extra.shortcut.ICON", favoriteIcon);
532         placeBookmarkShortcut.setAction("com.android.launcher.action.INSTALL_SHORTCUT");
533         sendBroadcast(placeBookmarkShortcut);
534     }
535
536     // Override onBackPressed so that if mainWebView can go back it does when the system back button is pressed.
537     @Override
538     public void onBackPressed() {
539         final WebView mainWebView = (WebView) findViewById(R.id.mainWebView);
540
541         if (mainWebView.canGoBack()) {
542             mainWebView.goBack();
543         } else {
544             super.onBackPressed();
545         }
546     }
547
548     public void loadUrlFromTextBox() throws UnsupportedEncodingException {
549         // Make sure that actionBar is not null.
550         ActionBar actionBar = getSupportActionBar();
551         if (actionBar != null) {
552             final WebView mainWebView = (WebView) findViewById(R.id.mainWebView);
553             EditText urlTextBox = (EditText) actionBar.getCustomView().findViewById(R.id.urlTextBox);
554
555             // Get the text from urlTextInput and convert it to a string.
556             String unformattedUrlString = urlTextBox.getText().toString();
557             URL unformattedUrl = null;
558             Uri.Builder formattedUri = new Uri.Builder();
559
560             // Check to see if unformattedUrlString is a valid URL.  Otherwise, convert it into a Duck Duck Go search.
561             if (Patterns.WEB_URL.matcher(unformattedUrlString).matches()) {
562
563                 // Add http:// at the beginning if it is missing.  Otherwise the app will segfault.
564                 if (!unformattedUrlString.startsWith("http")) {
565                     unformattedUrlString = "http://" + unformattedUrlString;
566                 }
567
568                 // Convert unformattedUrlString to a URL, then to a URI, and then back to a string, which sanitizes the input and adds in any missing components.
569                 try {
570                     unformattedUrl = new URL(unformattedUrlString);
571                 } catch (MalformedURLException e) {
572                     e.printStackTrace();
573                 }
574
575                 // The ternary operator (? :) makes sure that a null pointer exception is not thrown, which would happen if .get was called on a null value.
576                 final String scheme = unformattedUrl != null ? unformattedUrl.getProtocol() : null;
577                 final String authority = unformattedUrl != null ? unformattedUrl.getAuthority() : null;
578                 final String path = unformattedUrl != null ? unformattedUrl.getPath() : null;
579                 final String query = unformattedUrl != null ? unformattedUrl.getQuery() : null;
580                 final String fragment = unformattedUrl != null ? unformattedUrl.getRef() : null;
581
582                 formattedUri.scheme(scheme).authority(authority).path(path).query(query).fragment(fragment);
583                 formattedUrlString = formattedUri.build().toString();
584
585             } else {
586                 // Sanitize the search input and convert it to a DuckDuckGo search.
587                 final String encodedUrlString = URLEncoder.encode(unformattedUrlString, "UTF-8");
588                 formattedUrlString = "https://duckduckgo.com/?q=" + encodedUrlString;
589             }
590
591             mainWebView.loadUrl(formattedUrlString);
592
593             // Hides the keyboard so we can see the webpage.
594             InputMethodManager inputMethodManager = (InputMethodManager) getSystemService(Activity.INPUT_METHOD_SERVICE);
595             inputMethodManager.hideSoftInputFromWindow(mainWebView.getWindowToken(), 0);
596         }
597     }
598 }