2 * Copyright 2015-2016 Soren Stoutner <soren@stoutner.com>.
4 * This file is part of Privacy Browser <https://www.stoutner.com/privacy-browser>.
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.
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.
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/>.
20 package com.stoutner.privacybrowser;
22 import android.annotation.SuppressLint;
23 import android.app.Activity;
24 import android.app.DownloadManager;
25 import android.content.Intent;
26 import android.content.SharedPreferences;
27 import android.content.res.Configuration;
28 import android.graphics.Bitmap;
29 import android.net.Uri;
30 import android.os.Build;
31 import android.os.Bundle;
32 import android.preference.PreferenceManager;
33 import android.support.design.widget.NavigationView;
34 import android.support.design.widget.Snackbar;
35 import android.support.v4.app.DialogFragment;
36 import android.support.v4.view.GravityCompat;
37 import android.support.v4.widget.DrawerLayout;
38 import android.support.v4.widget.SwipeRefreshLayout;
39 import android.support.v7.app.ActionBar;
40 import android.support.v7.app.ActionBarDrawerToggle;
41 import android.support.v7.app.AppCompatActivity;
42 import android.support.v7.app.AppCompatDialogFragment;
43 import android.support.v7.widget.Toolbar;
44 import android.util.Patterns;
45 import android.view.KeyEvent;
46 import android.view.Menu;
47 import android.view.MenuItem;
48 import android.view.View;
49 import android.view.inputmethod.InputMethodManager;
50 import android.webkit.CookieManager;
51 import android.webkit.DownloadListener;
52 import android.webkit.WebChromeClient;
53 import android.webkit.WebStorage;
54 import android.webkit.WebView;
55 import android.webkit.WebViewClient;
56 import android.widget.EditText;
57 import android.widget.FrameLayout;
58 import android.widget.ImageView;
59 import android.widget.ProgressBar;
61 import java.io.UnsupportedEncodingException;
62 import java.net.MalformedURLException;
64 import java.net.URLEncoder;
66 // We need to use AppCompatActivity from android.support.v7.app.AppCompatActivity to have access to the SupportActionBar until the minimum API is >= 21.
67 public class MainWebViewActivity extends AppCompatActivity implements NavigationView.OnNavigationItemSelectedListener, CreateHomeScreenShortcut.CreateHomeScreenSchortcutListener {
68 // favoriteIcon is public static so it can be accessed from CreateHomeScreenShortcut.
69 public static Bitmap favoriteIcon;
70 // mainWebView is public static so it can be accessed from SettingsFragment. It is also used in onCreate(), onOptionsItemSelected(), onNavigationItemSelected(), and loadUrlFromTextBox().
71 public static WebView mainWebView;
73 // mainMenu is public static so it can be accessed from SettingsFragment. It is also used in onCreateOptionsMenu() and onOptionsItemSelected().
74 public static Menu mainMenu;
75 // cookieManager is public static so it can be accessed from SettingsFragment. It is also used in onCreate(), onOptionsItemSelected(), and onNavigationItemSelected().
76 public static CookieManager cookieManager;
77 // javaScriptEnabled is public static so it can be accessed from SettingsFragment. It is also used in onCreate(), onCreateOptionsMenu(), onOptionsItemSelected(), and loadUrlFromTextBox().
78 public static boolean javaScriptEnabled;
79 // firstPartyCookiesEnabled is public static so it can be accessed from SettingsFragment. It is also used in onCreate(), onCreateOptionsMenu(), onPrepareOptionsMenu(), and onOptionsItemSelected().
80 public static boolean firstPartyCookiesEnabled;
81 // thirdPartyCookiesEnabled is used in onCreate(), onCreateOptionsMenu(), onPrepareOptionsMenu(), and onOptionsItemSelected().
82 public static boolean thirdPartyCookiesEnabled;
83 // domStorageEnabled is public static so it can be accessed from SettingsFragment. It is also used in onCreate(), onCreateOptionsMenu(), and onOptionsItemSelected().
84 public static boolean domStorageEnabled;
85 // javaScriptDisabledSearchURL is public static so it can be accessed from SettingsFragment. It is also used in onCreate() and loadURLFromTextBox().
86 public static String javaScriptDisabledSearchURL;
87 // javaScriptEnabledSearchURL is public static so it can be accessed from SettingsFragment. It is also used in onCreate() and loadURLFromTextBox().
88 public static String javaScriptEnabledSearchURL;
89 // homepage is public static so it can be accessed from SettingsFragment. It is also used in onCreate() and onOptionsItemSelected().
90 public static String homepage;
91 // swipeToRefresh is public static so it can be accessed from SettingsFragment. It is also used in onCreate().
92 public static SwipeRefreshLayout swipeToRefresh;
93 // swipeToRefreshEnabled is public static so it can be accessed from SettingsFragment. It is also used in onCreate().
94 public static boolean swipeToRefreshEnabled;
96 // drawerToggle is used in onCreate(), onPostCreate(), onConfigurationChanged(), onNewIntent(), and onNavigationItemSelected().
97 private ActionBarDrawerToggle drawerToggle;
98 // drawerLayout is used in onCreate(), onNewIntent(), and onBackPressed().
99 private DrawerLayout drawerLayout;
100 // formattedUrlString is used in onCreate(), onOptionsItemSelected(), onCreateHomeScreenShortcutCreate(), and loadUrlFromTextBox().
101 private String formattedUrlString;
102 // privacyIcon is used in onCreateOptionsMenu() and updatePrivacyIcon().
103 private MenuItem privacyIcon;
104 // urlTextBox is used in onCreate(), onOptionsItemSelected(), and loadUrlFromTextBox().
105 private EditText urlTextBox;
106 // adView is used in onCreate() and onConfigurationChanged().
110 // Remove Android Studio's warning about the dangers of using SetJavaScriptEnabled. The whole premise of Privacy Browser is built around an understanding of these dangers.
111 @SuppressLint("SetJavaScriptEnabled")
112 protected void onCreate(Bundle savedInstanceState) {
113 super.onCreate(savedInstanceState);
114 setContentView(R.layout.main_coordinatorlayout);
116 // We need to use the SupportActionBar from android.support.v7.app.ActionBar until the minimum API is >= 21.
117 Toolbar supportAppBar = (Toolbar) findViewById(R.id.appBar);
118 setSupportActionBar(supportAppBar);
119 final ActionBar appBar = getSupportActionBar();
121 // This is needed to get rid of the Android Studio warning that appBar might be null.
122 assert appBar != null;
124 // Add the custom url_bar layout, which shows the favoriteIcon, urlTextBar, and progressBar.
125 appBar.setCustomView(R.layout.url_bar);
126 appBar.setDisplayOptions(ActionBar.DISPLAY_SHOW_CUSTOM);
128 // Set the "go" button on the keyboard to load the URL in urlTextBox.
129 urlTextBox = (EditText) appBar.getCustomView().findViewById(R.id.urlTextBox);
130 urlTextBox.setOnKeyListener(new View.OnKeyListener() {
131 public boolean onKey(View v, int keyCode, KeyEvent event) {
132 // If the event is a key-down event on the "enter" button, load the URL.
133 if ((event.getAction() == KeyEvent.ACTION_DOWN) && (keyCode == KeyEvent.KEYCODE_ENTER)) {
134 // Load the URL into the mainWebView and consume the event.
136 loadUrlFromTextBox();
137 } catch (UnsupportedEncodingException e) {
140 // If the enter key was pressed, consume the event.
143 // If any other key was pressed, do not consume the event.
149 final FrameLayout fullScreenVideoFrameLayout = (FrameLayout) findViewById(R.id.fullScreenVideoFrameLayout);
151 // Implement swipe to refresh
152 swipeToRefresh = (SwipeRefreshLayout) findViewById(R.id.swipeRefreshLayout);
153 assert swipeToRefresh != null; //This assert removes the incorrect warning on the following line that swipeToRefresh might be null.
154 swipeToRefresh.setColorSchemeResources(R.color.blue);
155 swipeToRefresh.setOnRefreshListener(new SwipeRefreshLayout.OnRefreshListener() {
157 public void onRefresh() {
158 mainWebView.reload();
162 mainWebView = (WebView) findViewById(R.id.mainWebView);
164 // Create the navigation drawer.
165 drawerLayout = (DrawerLayout) findViewById(R.id.drawerLayout);
166 // The DrawerTitle identifies the drawer in accessibility mode.
167 drawerLayout.setDrawerTitle(GravityCompat.START, getString(R.string.navigation_drawer));
169 // Listen for touches on the navigation menu.
170 final NavigationView navigationView = (NavigationView) findViewById(R.id.navigationView);
171 assert navigationView != null; // This assert removes the incorrect warning on the following line that navigationView might be null.
172 navigationView.setNavigationItemSelectedListener(this);
174 // drawerToggle creates the hamburger icon at the start of the AppBar.
175 drawerToggle = new ActionBarDrawerToggle(this, drawerLayout, supportAppBar, R.string.open_navigation, R.string.close_navigation);
177 mainWebView.setWebViewClient(new WebViewClient() {
178 // shouldOverrideUrlLoading makes this WebView the default handler for URLs inside the app, so that links are not kicked out to other apps.
180 public boolean shouldOverrideUrlLoading(WebView view, String url) {
181 mainWebView.loadUrl(url);
185 // Update the URL in urlTextBox when the page starts to load.
187 public void onPageStarted(WebView view, String url, Bitmap favicon) {
188 urlTextBox.setText(url);
191 // Update formattedUrlString and urlTextBox. It is necessary to do this after the page finishes loading because the final URL can change during load.
193 public void onPageFinished(WebView view, String url) {
194 formattedUrlString = url;
196 // Only update urlTextBox if the user is not typing in it.
197 if (!urlTextBox.hasFocus()) {
198 urlTextBox.setText(formattedUrlString);
203 mainWebView.setWebChromeClient(new WebChromeClient() {
204 // Update the progress bar when a page is loading.
206 public void onProgressChanged(WebView view, int progress) {
207 ProgressBar progressBar = (ProgressBar) appBar.getCustomView().findViewById(R.id.progressBar);
208 progressBar.setProgress(progress);
209 if (progress < 100) {
210 progressBar.setVisibility(View.VISIBLE);
212 progressBar.setVisibility(View.GONE);
214 //Stop the SwipeToRefresh indicator if it is running
215 swipeToRefresh.setRefreshing(false);
219 // Set the favorite icon when it changes.
221 public void onReceivedIcon(WebView view, Bitmap icon) {
222 // Save a copy of the favorite icon for use if a shortcut is added to the home screen.
225 // Place the favorite icon in the appBar.
226 ImageView imageViewFavoriteIcon = (ImageView) appBar.getCustomView().findViewById(R.id.favoriteIcon);
227 imageViewFavoriteIcon.setImageBitmap(Bitmap.createScaledBitmap(icon, 64, 64, true));
230 // Enter full screen video
232 public void onShowCustomView(View view, CustomViewCallback callback) {
235 // Show the fullScreenVideoFrameLayout.
236 assert fullScreenVideoFrameLayout != null; //This assert removes the incorrect warning on the following line that fullScreenVideoFrameLayout might be null.
237 fullScreenVideoFrameLayout.addView(view);
238 fullScreenVideoFrameLayout.setVisibility(View.VISIBLE);
240 // Hide the mainWebView.
241 mainWebView.setVisibility(View.GONE);
243 // Hide the ad if this is the free flavor.
244 BannerAd.hideAd(adView);
246 /* SYSTEM_UI_FLAG_HIDE_NAVIGATION hides the navigation bars on the bottom or right of the screen.
247 * SYSTEM_UI_FLAG_FULLSCREEN hides the status bar across the top of the screen.
248 * SYSTEM_UI_FLAG_IMMERSIVE_STICKY makes the navigation and status bars ghosted overlays and automatically rehides them.
251 // Set the one flag supported by API >= 14.
252 view.setSystemUiVisibility(View.SYSTEM_UI_FLAG_HIDE_NAVIGATION);
254 // Set the two flags that are supported by API >= 16.
255 if (Build.VERSION.SDK_INT >= 16) {
256 view.setSystemUiVisibility(View.SYSTEM_UI_FLAG_HIDE_NAVIGATION | View.SYSTEM_UI_FLAG_FULLSCREEN);
259 // Set all three flags that are supported by API >= 19.
260 if (Build.VERSION.SDK_INT >= 19) {
261 view.setSystemUiVisibility(View.SYSTEM_UI_FLAG_HIDE_NAVIGATION | View.SYSTEM_UI_FLAG_FULLSCREEN | View.SYSTEM_UI_FLAG_IMMERSIVE_STICKY);
265 // Exit full screen video
266 public void onHideCustomView() {
269 // Show the mainWebView.
270 mainWebView.setVisibility(View.VISIBLE);
272 // Show the ad if this is the free flavor.
273 BannerAd.showAd(adView);
275 // Hide the fullScreenVideoFrameLayout.
276 assert fullScreenVideoFrameLayout != null; //This assert removes the incorrect warning on the following line that fullScreenVideoFrameLayout might be null.
277 fullScreenVideoFrameLayout.removeAllViews();
278 fullScreenVideoFrameLayout.setVisibility(View.GONE);
282 // Allow the downloading of files.
283 mainWebView.setDownloadListener(new DownloadListener() {
284 // Launch the Android download manager when a link leads to a download.
286 public void onDownloadStart(String url, String userAgent, String contentDisposition, String mimetype, long contentLength) {
287 DownloadManager downloadManager = (DownloadManager) getSystemService(DOWNLOAD_SERVICE);
288 DownloadManager.Request requestUri = new DownloadManager.Request(Uri.parse(url));
290 // Add the URL as the description for the download.
291 requestUri.setDescription(url);
293 // Show the download notification after the download is completed.
294 requestUri.setNotificationVisibility(DownloadManager.Request.VISIBILITY_VISIBLE_NOTIFY_COMPLETED);
296 // Initiate the download and display a Snackbar.
297 downloadManager.enqueue(requestUri);
298 Snackbar.make(findViewById(R.id.mainWebView), R.string.download_started, Snackbar.LENGTH_SHORT).show();
302 // Allow pinch to zoom.
303 mainWebView.getSettings().setBuiltInZoomControls(true);
305 // Hide zoom controls.
306 mainWebView.getSettings().setDisplayZoomControls(false);
309 // Initialize the default preference values the first time the program is run.
310 PreferenceManager.setDefaultValues(this, R.xml.preferences, false);
312 // Get the shared preference values.
313 SharedPreferences savedPreferences = PreferenceManager.getDefaultSharedPreferences(this);
315 // Set JavaScript initial status. The default value is false.
316 javaScriptEnabled = savedPreferences.getBoolean("javascript_enabled", false);
317 mainWebView.getSettings().setJavaScriptEnabled(javaScriptEnabled);
319 // Initialize cookieManager.
320 cookieManager = CookieManager.getInstance();
322 // Set cookies initial status. The default value is false.
323 firstPartyCookiesEnabled = savedPreferences.getBoolean("first_party_cookies_enabled", false);
324 cookieManager.setAcceptCookie(firstPartyCookiesEnabled);
326 // Set third-party cookies initial status if API >= 21. The default value is false.
327 if (Build.VERSION.SDK_INT >= 21) {
328 thirdPartyCookiesEnabled = savedPreferences.getBoolean("third_party_cookies_enabled", false);
329 cookieManager.setAcceptThirdPartyCookies(mainWebView, thirdPartyCookiesEnabled);
332 // Set DOM storage initial status. The default value is false.
333 domStorageEnabled = savedPreferences.getBoolean("dom_storage_enabled", false);
334 mainWebView.getSettings().setDomStorageEnabled(domStorageEnabled);
336 // Set the user agent initial status.
337 String userAgentString = savedPreferences.getString("user_agent", "Default user agent");
338 switch (userAgentString) {
339 case "Default user agent":
343 case "Custom user agent":
344 // Set the custom user agent on mainWebView, The default is "PrivacyBrowser/1.0".
345 mainWebView.getSettings().setUserAgentString(savedPreferences.getString("custom_user_agent", "PrivacyBrowser/1.0"));
349 // Set the selected user agent on mainWebView. The default is "PrivacyBrowser/1.0".
350 mainWebView.getSettings().setUserAgentString(savedPreferences.getString("user_agent", "PrivacyBrowser/1.0"));
354 // Set the initial string for JavaScript disabled search.
355 if (savedPreferences.getString("javascript_disabled_search", "https://duckduckgo.com/html/?q=").equals("Custom URL")) {
356 // Get the custom URL string. The default is "".
357 javaScriptDisabledSearchURL = savedPreferences.getString("javascript_disabled_search_custom_url", "");
359 // Use the string from javascript_disabled_search.
360 javaScriptDisabledSearchURL = savedPreferences.getString("javascript_disabled_search", "https://duckduckgo.com/html/?q=");
363 // Set the initial string for JavaScript enabled search.
364 if (savedPreferences.getString("javascript_enabled_search", "https://duckduckgo.com/?q=").equals("Custom URL")) {
365 // Get the custom URL string. The default is "".
366 javaScriptEnabledSearchURL = savedPreferences.getString("javascript_enabled_search_custom_url", "");
368 // Use the string from javascript_enabled_search.
369 javaScriptEnabledSearchURL = savedPreferences.getString("javascript_enabled_search", "https://duckduckgo.com/?q=");
373 // Set homepage initial status. The default value is "https://www.duckduckgo.com".
374 homepage = savedPreferences.getString("homepage", "https://www.duckduckgo.com");
376 // Set swipe to refresh initial status. The default is true.
377 swipeToRefreshEnabled = savedPreferences.getBoolean("swipe_to_refresh_enabled", true);
378 swipeToRefresh.setEnabled(swipeToRefreshEnabled);
381 // Get the intent information that started the app.
382 final Intent intent = getIntent();
384 if (intent.getData() != null) {
385 // Get the intent data and convert it to a string.
386 final Uri intentUriData = intent.getData();
387 formattedUrlString = intentUriData.toString();
390 // If formattedUrlString is null assign the homepage to it.
391 if (formattedUrlString == null) {
392 formattedUrlString = homepage;
395 // Load the initial website.
396 mainWebView.loadUrl(formattedUrlString);
398 // Initialize AdView for the free flavor and request an ad. If this is not the free flavor BannerAd.requestAd() does nothing.
399 adView = findViewById(R.id.adView);
400 BannerAd.requestAd(adView);
405 protected void onNewIntent(Intent intent) {
406 // Sets the new intent as the activity intent, so that any future getIntent()s pick up this one instead of creating a new activity.
409 if (intent.getData() != null) {
410 // Get the intent data and convert it to a string.
411 final Uri intentUriData = intent.getData();
412 formattedUrlString = intentUriData.toString();
415 // Close the navigation drawer if it is open.
416 if (drawerLayout.isDrawerVisible(GravityCompat.START)) {
417 drawerLayout.closeDrawer(GravityCompat.START);
421 mainWebView.loadUrl(formattedUrlString);
423 // Clear the keyboard if displayed and remove the focus on the urlTextBar if it has it.
424 mainWebView.requestFocus();
428 public boolean onCreateOptionsMenu(Menu menu) {
429 // Inflate the menu; this adds items to the action bar if it is present.
430 getMenuInflater().inflate(R.menu.menu_options, menu);
432 // Set mainMenu so it can be used by onOptionsItemSelected.
435 // Initialize privacyIcon
436 privacyIcon = menu.findItem(R.id.toggleJavaScript);
438 // Get MenuItems for checkable menu items.
439 MenuItem toggleFirstPartyCookies = menu.findItem(R.id.toggleFirstPartyCookies);
440 MenuItem toggleThirdPartyCookies = menu.findItem(R.id.toggleThirdPartyCookies);
441 MenuItem toggleDomStorage = menu.findItem(R.id.toggleDomStorage);
443 // Set the initial status of the privacy icon.
446 // Set the initial status of the menu item checkboxes.
447 toggleFirstPartyCookies.setChecked(firstPartyCookiesEnabled);
448 toggleThirdPartyCookies.setChecked(thirdPartyCookiesEnabled);
449 toggleDomStorage.setChecked(domStorageEnabled);
455 public boolean onPrepareOptionsMenu(Menu menu) {
456 // Only enable Third-Party Cookies if SDK >= 21 and First-Party Cookies are enabled.
457 MenuItem toggleThirdPartyCookies = menu.findItem(R.id.toggleThirdPartyCookies);
458 if ((Build.VERSION.SDK_INT >= 21) && firstPartyCookiesEnabled) {
459 toggleThirdPartyCookies.setEnabled(true);
461 toggleThirdPartyCookies.setEnabled(false);
464 // Enable Clear Cookies if there are any.
465 MenuItem clearCookies = menu.findItem(R.id.clearCookies);
466 clearCookies.setEnabled(cookieManager.hasCookies());
468 // Enable DOM Storage if JavaScript is enabled.
469 MenuItem toggleDomStorage = menu.findItem(R.id.toggleDomStorage);
470 toggleDomStorage.setEnabled(javaScriptEnabled);
472 // Run all the other default commands.
473 super.onPrepareOptionsMenu(menu);
475 // return true displays the menu.
480 // Remove Android Studio's warning about the dangers of using SetJavaScriptEnabled.
481 @SuppressLint("SetJavaScriptEnabled")
482 // removeAllCookies is deprecated, but it is required for API < 21.
483 @SuppressWarnings("deprecation")
484 public boolean onOptionsItemSelected(MenuItem menuItem) {
485 int menuItemId = menuItem.getItemId();
487 // Set the commands that relate to the menu entries.
488 switch (menuItemId) {
489 case R.id.toggleJavaScript:
490 // Switch the status of javaScriptEnabled.
491 javaScriptEnabled = !javaScriptEnabled;
493 // Apply the new JavaScript status.
494 mainWebView.getSettings().setJavaScriptEnabled(javaScriptEnabled);
496 // Update the privacy icon.
499 // Display a Snackbar.
500 if (javaScriptEnabled) {
501 Snackbar.make(findViewById(R.id.mainWebView), R.string.javascript_enabled, Snackbar.LENGTH_SHORT).show();
503 if (firstPartyCookiesEnabled) {
504 Snackbar.make(findViewById(R.id.mainWebView), R.string.javascript_disabled, Snackbar.LENGTH_SHORT).show();
506 Snackbar.make(findViewById(R.id.mainWebView), R.string.privacy_mode, Snackbar.LENGTH_SHORT).show();
510 // Reload the WebView.
511 mainWebView.reload();
514 case R.id.toggleFirstPartyCookies:
515 // Switch the status of firstPartyCookiesEnabled.
516 firstPartyCookiesEnabled = !firstPartyCookiesEnabled;
518 // Update the menu checkbox.
519 menuItem.setChecked(firstPartyCookiesEnabled);
521 // Apply the new cookie status.
522 cookieManager.setAcceptCookie(firstPartyCookiesEnabled);
524 // Update the privacy icon.
527 // Reload the WebView.
528 mainWebView.reload();
531 case R.id.toggleThirdPartyCookies:
532 if (Build.VERSION.SDK_INT >= 21) {
533 // Switch the status of thirdPartyCookiesEnabled.
534 thirdPartyCookiesEnabled = !thirdPartyCookiesEnabled;
536 // Update the menu checkbox.
537 menuItem.setChecked(thirdPartyCookiesEnabled);
539 // Apply the new cookie status.
540 cookieManager.setAcceptThirdPartyCookies(mainWebView, thirdPartyCookiesEnabled);
542 // Reload the WebView.
543 mainWebView.reload();
544 } // Else do nothing because SDK < 21.
547 case R.id.toggleDomStorage:
548 // Switch the status of domStorageEnabled.
549 domStorageEnabled = !domStorageEnabled;
551 // Update the menu checkbox.
552 menuItem.setChecked(domStorageEnabled);
554 // Apply the new DOM Storage status.
555 mainWebView.getSettings().setDomStorageEnabled(domStorageEnabled);
557 // Reload the WebView.
558 mainWebView.reload();
561 case R.id.clearCookies:
562 if (Build.VERSION.SDK_INT < 21) {
563 cookieManager.removeAllCookie();
565 cookieManager.removeAllCookies(null);
567 Snackbar.make(findViewById(R.id.mainWebView), R.string.cookies_deleted, Snackbar.LENGTH_SHORT).show();
570 case R.id.clearDomStorage:
571 WebStorage webStorage = WebStorage.getInstance();
572 webStorage.deleteAllData();
573 Snackbar.make(findViewById(R.id.mainWebView), R.string.dom_storage_deleted, Snackbar.LENGTH_SHORT).show();
577 Intent shareIntent = new Intent();
578 shareIntent.setAction(Intent.ACTION_SEND);
579 shareIntent.putExtra(Intent.EXTRA_TEXT, urlTextBox.getText().toString());
580 shareIntent.setType("text/plain");
581 startActivity(Intent.createChooser(shareIntent, "Share URL"));
584 case R.id.addToHomescreen:
585 // Show the CreateHomeScreenShortcut AlertDialog and name this instance createShortcut.
586 AppCompatDialogFragment shortcutDialog = new CreateHomeScreenShortcut();
587 shortcutDialog.show(getSupportFragmentManager(), "createShortcut");
589 //Everything else will be handled by CreateHomeScreenShortcut and the associated listeners below.
593 mainWebView.reload();
597 // Don't consume the event.
598 return super.onOptionsItemSelected(menuItem);
603 // removeAllCookies is deprecated, but it is required for API < 21.
604 @SuppressWarnings("deprecation")
605 public boolean onNavigationItemSelected(MenuItem menuItem) {
606 int menuItemId = menuItem.getItemId();
608 switch (menuItemId) {
610 mainWebView.loadUrl(homepage);
614 if (mainWebView.canGoBack()) {
615 mainWebView.goBack();
620 if (mainWebView.canGoForward()) {
621 mainWebView.goForward();
626 // Launch the system Download Manager.
627 Intent downloadManagerIntent = new Intent(DownloadManager.ACTION_VIEW_DOWNLOADS);
629 // Launch as a new task so that Download Manager and Privacy Browser show as separate windows in the recent tasks list.
630 downloadManagerIntent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
632 startActivity(downloadManagerIntent);
636 // Launch GuideActivity.
637 Intent guideIntent = new Intent(this, GuideActivity.class);
638 startActivity(guideIntent);
642 // Launch SettingsActivity.
643 Intent settingsIntent = new Intent(this, SettingsActivity.class);
644 startActivity(settingsIntent);
648 // Launch AboutActivity.
649 Intent aboutIntent = new Intent(this, AboutActivity.class);
650 startActivity(aboutIntent);
653 case R.id.clearAndExit:
654 // Clear cookies. The commands changed slightly in API 21.
655 if (Build.VERSION.SDK_INT >= 21) {
656 cookieManager.removeAllCookies(null);
658 cookieManager.removeAllCookie();
661 // Clear DOM storage.
662 WebStorage domStorage = WebStorage.getInstance();
663 domStorage.deleteAllData();
665 // Clear cache. The argument of "true" includes disk files.
666 mainWebView.clearCache(true);
668 // Clear the back/forward history.
669 mainWebView.clearHistory();
671 // Destroy the internal state of the webview.
672 mainWebView.destroy();
674 // Close Privacy Browser. finishAndRemoveTask also removes Privacy Browser from the recent app list.
675 if (Build.VERSION.SDK_INT >= 21) {
676 finishAndRemoveTask();
686 // Close the navigation drawer.
687 drawerLayout.closeDrawer(GravityCompat.START);
692 public void onPostCreate(Bundle savedInstanceState) {
693 super.onPostCreate(savedInstanceState);
695 // Sync the state of the DrawerToggle after onRestoreInstanceState has finished.
696 drawerToggle.syncState();
700 public void onConfigurationChanged(Configuration newConfig) {
701 super.onConfigurationChanged(newConfig);
703 // Reload the ad if this is the free flavor.
704 BannerAd.reloadAfterRotate(adView, getApplicationContext(), getString(R.string.ad_id));
706 // Reinitialize the adView variable, as the View will have been removed and re-added in the free flavor by BannerAd.reloadAfterRotate().
707 adView = findViewById(R.id.adView);
711 public void onCreateHomeScreenShortcutCancel(DialogFragment dialog) {
712 // Do nothing because the user selected "Cancel".
716 public void onCreateHomeScreenShortcutCreate(DialogFragment dialog) {
717 // Get shortcutNameEditText from the alert dialog.
718 EditText shortcutNameEditText = (EditText) dialog.getDialog().findViewById(R.id.shortcutNameEditText);
720 // Create the bookmark shortcut based on formattedUrlString.
721 Intent bookmarkShortcut = new Intent();
722 bookmarkShortcut.setAction(Intent.ACTION_VIEW);
723 bookmarkShortcut.setData(Uri.parse(formattedUrlString));
725 // Place the bookmark shortcut on the home screen.
726 Intent placeBookmarkShortcut = new Intent();
727 placeBookmarkShortcut.putExtra("android.intent.extra.shortcut.INTENT", bookmarkShortcut);
728 placeBookmarkShortcut.putExtra("android.intent.extra.shortcut.NAME", shortcutNameEditText.getText().toString());
729 placeBookmarkShortcut.putExtra("android.intent.extra.shortcut.ICON", favoriteIcon);
730 placeBookmarkShortcut.setAction("com.android.launcher.action.INSTALL_SHORTCUT");
731 sendBroadcast(placeBookmarkShortcut);
734 // Override onBackPressed to handle the navigation drawer and mainWebView.
736 public void onBackPressed() {
737 final WebView mainWebView = (WebView) findViewById(R.id.mainWebView);
739 // Close the navigation drawer if it is available. GravityCompat.START is the drawer on the left on Left-to-Right layout text.
740 if (drawerLayout.isDrawerVisible(GravityCompat.START)) {
741 drawerLayout.closeDrawer(GravityCompat.START);
743 // Load the previous URL if available.
744 assert mainWebView != null; //This assert removes the incorrect warning in Android Studio on the following line that mainWebView might be null.
745 if (mainWebView.canGoBack()) {
746 mainWebView.goBack();
748 // Pass onBackPressed to the system.
749 super.onBackPressed();
755 public void onPause() {
756 // We need to pause the adView or it will continue to consume resources in the background on the free flavor.
757 BannerAd.pauseAd(adView);
763 public void onResume() {
766 // We need to resume the adView for the free flavor.
767 BannerAd.resumeAd(adView);
770 private void loadUrlFromTextBox() throws UnsupportedEncodingException {
771 // Get the text from urlTextBox and convert it to a string.
772 String unformattedUrlString = urlTextBox.getText().toString();
773 URL unformattedUrl = null;
774 Uri.Builder formattedUri = new Uri.Builder();
776 // Check to see if unformattedUrlString is a valid URL. Otherwise, convert it into a Duck Duck Go search.
777 if (Patterns.WEB_URL.matcher(unformattedUrlString).matches()) {
778 // Add http:// at the beginning if it is missing. Otherwise the app will segfault.
779 if (!unformattedUrlString.startsWith("http")) {
780 unformattedUrlString = "http://" + unformattedUrlString;
783 // 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.
785 unformattedUrl = new URL(unformattedUrlString);
786 } catch (MalformedURLException e) {
790 // The ternary operator (? :) makes sure that a null pointer exception is not thrown, which would happen if .get was called on a null value.
791 final String scheme = unformattedUrl != null ? unformattedUrl.getProtocol() : null;
792 final String authority = unformattedUrl != null ? unformattedUrl.getAuthority() : null;
793 final String path = unformattedUrl != null ? unformattedUrl.getPath() : null;
794 final String query = unformattedUrl != null ? unformattedUrl.getQuery() : null;
795 final String fragment = unformattedUrl != null ? unformattedUrl.getRef() : null;
797 formattedUri.scheme(scheme).authority(authority).path(path).query(query).fragment(fragment);
798 formattedUrlString = formattedUri.build().toString();
800 // Sanitize the search input and convert it to a DuckDuckGo search.
801 final String encodedUrlString = URLEncoder.encode(unformattedUrlString, "UTF-8");
803 // Use the correct search URL based on javaScriptEnabled.
804 if (javaScriptEnabled) {
805 formattedUrlString = javaScriptEnabledSearchURL + encodedUrlString;
806 } else { // JavaScript is disabled.
807 formattedUrlString = javaScriptDisabledSearchURL + encodedUrlString;
811 mainWebView.loadUrl(formattedUrlString);
813 // Hides the keyboard so we can see the webpage.
814 InputMethodManager inputMethodManager = (InputMethodManager) getSystemService(Activity.INPUT_METHOD_SERVICE);
815 inputMethodManager.hideSoftInputFromWindow(mainWebView.getWindowToken(), 0);
818 private void updatePrivacyIcon() {
819 if (javaScriptEnabled) {
820 privacyIcon.setIcon(R.drawable.javascript_enabled);
822 if (firstPartyCookiesEnabled) {
823 privacyIcon.setIcon(R.drawable.warning);
825 privacyIcon.setIcon(R.drawable.privacy_mode);