2 * Copyright © 2015-2018 Soren Stoutner <soren@stoutner.com>.
4 * Download cookie code contributed 2017 Hendrik Knackstedt. Copyright assigned to Soren Stoutner <soren@stoutner.com>.
6 * This file is part of Privacy Browser <https://www.stoutner.com/privacy-browser>.
8 * Privacy Browser is free software: you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation, either version 3 of the License, or
11 * (at your option) any later version.
13 * Privacy Browser is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
18 * You should have received a copy of the GNU General Public License
19 * along with Privacy Browser. If not, see <http://www.gnu.org/licenses/>.
22 package com.stoutner.privacybrowser.activities;
24 import android.Manifest;
25 import android.annotation.SuppressLint;
26 import android.app.DialogFragment;
27 import android.app.DownloadManager;
28 import android.content.ActivityNotFoundException;
29 import android.content.BroadcastReceiver;
30 import android.content.ClipData;
31 import android.content.ClipboardManager;
32 import android.content.Context;
33 import android.content.Intent;
34 import android.content.IntentFilter;
35 import android.content.SharedPreferences;
36 import android.content.pm.PackageManager;
37 import android.content.res.Configuration;
38 import android.database.Cursor;
39 import android.graphics.Bitmap;
40 import android.graphics.BitmapFactory;
41 import android.graphics.Typeface;
42 import android.graphics.drawable.BitmapDrawable;
43 import android.graphics.drawable.Drawable;
44 import android.net.Uri;
45 import android.net.http.SslCertificate;
46 import android.net.http.SslError;
47 import android.os.Build;
48 import android.os.Bundle;
49 import android.os.Environment;
50 import android.os.Handler;
51 import android.preference.PreferenceManager;
52 import android.print.PrintDocumentAdapter;
53 import android.print.PrintManager;
54 import android.support.annotation.NonNull;
55 import android.support.design.widget.CoordinatorLayout;
56 import android.support.design.widget.FloatingActionButton;
57 import android.support.design.widget.NavigationView;
58 import android.support.design.widget.Snackbar;
59 import android.support.v4.app.ActivityCompat;
60 import android.support.v4.content.ContextCompat;
61 // `ShortcutInfoCompat`, `ShortcutManagerCompat`, and `IconCompat` can be switched to the non-compat version once API >= 26.
62 import android.support.v4.content.pm.ShortcutInfoCompat;
63 import android.support.v4.content.pm.ShortcutManagerCompat;
64 import android.support.v4.graphics.drawable.IconCompat;
65 import android.support.v4.view.GravityCompat;
66 import android.support.v4.widget.DrawerLayout;
67 import android.support.v4.widget.SwipeRefreshLayout;
68 import android.support.v7.app.ActionBar;
69 import android.support.v7.app.ActionBarDrawerToggle;
70 import android.support.v7.app.AppCompatActivity;
71 import android.support.v7.app.AppCompatDialogFragment;
72 import android.support.v7.widget.Toolbar;
73 import android.text.Editable;
74 import android.text.Spanned;
75 import android.text.TextWatcher;
76 import android.text.style.ForegroundColorSpan;
77 import android.util.Patterns;
78 import android.view.ContextMenu;
79 import android.view.GestureDetector;
80 import android.view.KeyEvent;
81 import android.view.Menu;
82 import android.view.MenuItem;
83 import android.view.MotionEvent;
84 import android.view.View;
85 import android.view.ViewGroup;
86 import android.view.WindowManager;
87 import android.view.inputmethod.InputMethodManager;
88 import android.webkit.CookieManager;
89 import android.webkit.HttpAuthHandler;
90 import android.webkit.SslErrorHandler;
91 import android.webkit.ValueCallback;
92 import android.webkit.WebBackForwardList;
93 import android.webkit.WebChromeClient;
94 import android.webkit.WebResourceResponse;
95 import android.webkit.WebStorage;
96 import android.webkit.WebView;
97 import android.webkit.WebViewClient;
98 import android.webkit.WebViewDatabase;
99 import android.widget.ArrayAdapter;
100 import android.widget.CursorAdapter;
101 import android.widget.EditText;
102 import android.widget.FrameLayout;
103 import android.widget.ImageView;
104 import android.widget.LinearLayout;
105 import android.widget.ListView;
106 import android.widget.ProgressBar;
107 import android.widget.RadioButton;
108 import android.widget.RelativeLayout;
109 import android.widget.TextView;
111 import com.stoutner.privacybrowser.BannerAd;
112 import com.stoutner.privacybrowser.BuildConfig;
113 import com.stoutner.privacybrowser.R;
114 import com.stoutner.privacybrowser.dialogs.CreateBookmarkDialog;
115 import com.stoutner.privacybrowser.dialogs.CreateBookmarkFolderDialog;
116 import com.stoutner.privacybrowser.dialogs.CreateHomeScreenShortcutDialog;
117 import com.stoutner.privacybrowser.dialogs.DownloadImageDialog;
118 import com.stoutner.privacybrowser.dialogs.DownloadLocationPermissionDialog;
119 import com.stoutner.privacybrowser.dialogs.EditBookmarkDialog;
120 import com.stoutner.privacybrowser.dialogs.EditBookmarkFolderDialog;
121 import com.stoutner.privacybrowser.dialogs.HttpAuthenticationDialog;
122 import com.stoutner.privacybrowser.dialogs.PinnedSslCertificateMismatchDialog;
123 import com.stoutner.privacybrowser.dialogs.UrlHistoryDialog;
124 import com.stoutner.privacybrowser.dialogs.ViewSslCertificateDialog;
125 import com.stoutner.privacybrowser.helpers.BlockListHelper;
126 import com.stoutner.privacybrowser.helpers.BookmarksDatabaseHelper;
127 import com.stoutner.privacybrowser.helpers.DomainsDatabaseHelper;
128 import com.stoutner.privacybrowser.helpers.OrbotProxyHelper;
129 import com.stoutner.privacybrowser.dialogs.DownloadFileDialog;
130 import com.stoutner.privacybrowser.dialogs.SslCertificateErrorDialog;
132 import java.io.ByteArrayInputStream;
133 import java.io.ByteArrayOutputStream;
135 import java.io.IOException;
136 import java.io.UnsupportedEncodingException;
137 import java.net.MalformedURLException;
139 import java.net.URLDecoder;
140 import java.net.URLEncoder;
141 import java.util.ArrayList;
142 import java.util.Date;
143 import java.util.HashMap;
144 import java.util.HashSet;
145 import java.util.List;
146 import java.util.Map;
147 import java.util.Set;
149 // AppCompatActivity from android.support.v7.app.AppCompatActivity must be used to have access to the SupportActionBar until the minimum API is >= 21.
150 public class MainWebViewActivity extends AppCompatActivity implements CreateBookmarkDialog.CreateBookmarkListener, CreateBookmarkFolderDialog.CreateBookmarkFolderListener,
151 CreateHomeScreenShortcutDialog.CreateHomeScreenSchortcutListener, DownloadFileDialog.DownloadFileListener, DownloadImageDialog.DownloadImageListener,
152 DownloadLocationPermissionDialog.DownloadLocationPermissionDialogListener, EditBookmarkDialog.EditBookmarkListener, EditBookmarkFolderDialog.EditBookmarkFolderListener,
153 HttpAuthenticationDialog.HttpAuthenticationListener, NavigationView.OnNavigationItemSelectedListener, PinnedSslCertificateMismatchDialog.PinnedSslCertificateMismatchListener,
154 SslCertificateErrorDialog.SslCertificateErrorListener, UrlHistoryDialog.UrlHistoryListener {
156 // `darkTheme` is public static so it can be accessed from `AboutActivity`, `GuideActivity`, `AddDomainDialog`, `SettingsActivity`, `DomainsActivity`, `DomainsListFragment`, `BookmarksActivity`,
157 // `BookmarksDatabaseViewActivity`, `CreateBookmarkDialog`, `CreateBookmarkFolderDialog`, `DownloadFileDialog`, `DownloadImageDialog`, `EditBookmarkDialog`, `EditBookmarkFolderDialog`,
158 // `EditBookmarkDatabaseViewDialog`, `HttpAuthenticationDialog`, `MoveToFolderDialog`, `SslCertificateErrorDialog`, `UrlHistoryDialog`, `ViewSslCertificateDialog`, `CreateHomeScreenShortcutDialog`,
159 // and `OrbotProxyHelper`. It is also used in `onCreate()`, `applyAppSettings()`, `applyDomainSettings()`, and `updatePrivacyIcons()`.
160 public static boolean darkTheme;
162 // `favoriteIconBitmap` is public static so it can be accessed from `CreateHomeScreenShortcutDialog`, `BookmarksActivity`, `BookmarksDatabaseViewActivity`, `CreateBookmarkDialog`,
163 // `CreateBookmarkFolderDialog`, `EditBookmarkDialog`, `EditBookmarkFolderDialog`, `EditBookmarkDatabaseViewDialog`, and `ViewSslCertificateDialog`. It is also used in `onCreate()`,
164 // `onCreateBookmark()`, `onCreateBookmarkFolder()`, `onCreateHomeScreenShortcutCreate()`, `onSaveEditBookmark()`, `onSaveEditBookmarkFolder()`, and `applyDomainSettings()`.
165 public static Bitmap favoriteIconBitmap;
167 // `formattedUrlString` is public static so it can be accessed from `BookmarksActivity`, `CreateBookmarkDialog`, and `AddDomainDialog`.
168 // It is also used in `onCreate()`, `onOptionsItemSelected()`, `onNavigationItemSelected()`, `onCreateHomeScreenShortcutCreate()`, and `loadUrlFromTextBox()`.
169 public static String formattedUrlString;
171 // `sslCertificate` is public static so it can be accessed from `DomainsActivity`, `DomainsListFragment`, `DomainSettingsFragment`, `PinnedSslCertificateMismatchDialog`,
172 // and `ViewSslCertificateDialog`. It is also used in `onCreate()`.
173 public static SslCertificate sslCertificate;
175 // `orbotStatus` is public static so it can be accessed from `OrbotProxyHelper`. It is also used in `onCreate()`.
176 public static String orbotStatus;
178 // `webViewTitle` is public static so it can be accessed from `CreateBookmarkDialog` and `CreateHomeScreenShortcutDialog`. It is also used in `onCreate()`.
179 public static String webViewTitle;
181 // `appliedUserAgentString` is public static so it can be accessed from `ViewSourceActivity`. It is also used in `applyDomainSettings()`.
182 public static String appliedUserAgentString;
184 // `reloadOnRestart` is public static so it can be accessed from `SettingsFragment`. It is also used in `onRestart()`
185 public static boolean reloadOnRestart;
187 // `reloadUrlOnRestart` is public static so it can be accessed from `SettingsFragment` and `BookmarksActivity`. It is also used in `onRestart()`.
188 public static boolean loadUrlOnRestart;
190 // `restartFromBookmarksActivity` is public static so it can be accessed from `BookmarksActivity`. It is also used in `onRestart()`.
191 public static boolean restartFromBookmarksActivity;
193 // The block list versions are public static so they can be accessed from `AboutTabFragment`. They are also used in `onCreate()`.
194 public static String easyListVersion;
195 public static String easyPrivacyVersion;
196 public static String fanboyAnnoyanceVersion;
197 public static String fanboySocialVersion;
199 // `currentBookmarksFolder` is public static so it can be accessed from `BookmarksActivity`. It is also used in `onCreate()`, `onBackPressed()`, `onCreateBookmark()`, `onCreateBookmarkFolder()`,
200 // `onSaveEditBookmark()`, `onSaveEditBookmarkFolder()`, and `loadBookmarksFolder()`.
201 public static String currentBookmarksFolder;
203 // `domainSettingsDatabaseId` is public static so it can be accessed from `PinnedSslCertificateMismatchDialog`. It is also used in `onCreate()`, `onOptionsItemSelected()`, and `applyDomainSettings()`.
204 public static int domainSettingsDatabaseId;
206 // The pinned domain SSL Certificate variables are public static so they can be accessed from `PinnedSslCertificateMismatchDialog`. They are also used in `onCreate()` and `applyDomainSettings()`.
207 public static String pinnedDomainSslIssuedToCNameString;
208 public static String pinnedDomainSslIssuedToONameString;
209 public static String pinnedDomainSslIssuedToUNameString;
210 public static String pinnedDomainSslIssuedByCNameString;
211 public static String pinnedDomainSslIssuedByONameString;
212 public static String pinnedDomainSslIssuedByUNameString;
213 public static Date pinnedDomainSslStartDate;
214 public static Date pinnedDomainSslEndDate;
216 // The user agent constants are public static so they can be accessed from `SettingsFragment`, `DomainsActivity`, and `DomainSettingsFragment`.
217 public final static int UNRECOGNIZED_USER_AGENT = -1;
218 public final static int SETTINGS_WEBVIEW_DEFAULT_USER_AGENT = 1;
219 public final static int SETTINGS_CUSTOM_USER_AGENT = 12;
220 public final static int DOMAINS_SYSTEM_DEFAULT_USER_AGENT = 0;
221 public final static int DOMAINS_WEBVIEW_DEFAULT_USER_AGENT = 2;
222 public final static int DOMAINS_CUSTOM_USER_AGENT = 13;
225 // `appBar` is used in `onCreate()`, `onOptionsItemSelected()`, `closeFindOnPage()`, and `applyAppSettings()`.
226 private ActionBar appBar;
228 // `navigatingHistory` is used in `onCreate()`, `onNavigationItemSelected()`, `onSslMismatchBack()`, and `applyDomainSettings()`.
229 private boolean navigatingHistory;
231 // `favoriteIconDefaultBitmap` is used in `onCreate()` and `applyDomainSettings`.
232 private Bitmap favoriteIconDefaultBitmap;
234 // `drawerLayout` is used in `onCreate()`, `onNewIntent()`, `onBackPressed()`, and `onRestart()`.
235 private DrawerLayout drawerLayout;
237 // `rootCoordinatorLayout` is used in `onCreate()` and `applyAppSettings()`.
238 private CoordinatorLayout rootCoordinatorLayout;
240 // `mainWebView` is used in `onCreate()`, `onPrepareOptionsMenu()`, `onOptionsItemSelected()`, `onNavigationItemSelected()`, `onRestart()`, `onCreateContextMenu()`, `findPreviousOnPage()`,
241 // `findNextOnPage()`, `closeFindOnPage()`, `loadUrlFromTextBox()`, `onSslMismatchBack()`, and `setDisplayWebpageImages()`.
242 private WebView mainWebView;
244 // `fullScreenVideoFrameLayout` is used in `onCreate()` and `onConfigurationChanged()`.
245 private FrameLayout fullScreenVideoFrameLayout;
247 // `swipeRefreshLayout` is used in `onCreate()`, `onPrepareOptionsMenu`, and `onRestart()`.
248 private SwipeRefreshLayout swipeRefreshLayout;
250 // `urlAppBarRelativeLayout` is used in `onCreate()` and `applyDomainSettings()`.
251 private RelativeLayout urlAppBarRelativeLayout;
253 // `favoriteIconImageView` is used in `onCreate()` and `applyDomainSettings()`
254 private ImageView favoriteIconImageView;
256 // `cookieManager` is used in `onCreate()`, `onOptionsItemSelected()`, and `onNavigationItemSelected()`, `loadUrlFromTextBox()`, `onDownloadImage()`, `onDownloadFile()`, and `onRestart()`.
257 private CookieManager cookieManager;
259 // `customHeader` is used in `onCreate()`, `onOptionsItemSelected()`, `onCreateContextMenu()`, and `loadUrl()`.
260 private final Map<String, String> customHeaders = new HashMap<>();
262 // `javaScriptEnabled` is also used in `onCreate()`, `onPrepareOptionsMenu()`, `onOptionsItemSelected()`, `applyDomainSettings()`, and `updatePrivacyIcons()`.
263 private boolean javaScriptEnabled;
265 // `firstPartyCookiesEnabled` is used in `onCreate()`, `onPrepareOptionsMenu()`, `onOptionsItemSelected()`, `onDownloadImage()`, `onDownloadFile()`, and `applyDomainSettings()`.
266 private boolean firstPartyCookiesEnabled;
268 // `thirdPartyCookiesEnabled` used in `onCreate()`, `onPrepareOptionsMenu()`, `onPrepareOptionsMenu()`, `onOptionsItemSelected()`, and `applyDomainSettings()`.
269 private boolean thirdPartyCookiesEnabled;
271 // `domStorageEnabled` is used in `onCreate()`, `onPrepareOptionsMenu()`, `onOptionsItemSelected()`, and `applyDomainSettings()`.
272 private boolean domStorageEnabled;
274 // `saveFormDataEnabled` is used in `onCreate()`, `onPrepareOptionsMenu()`, `onOptionsItemSelected()`, and `applyDomainSettings()`.
275 private boolean saveFormDataEnabled;
277 // `nightMode` is used in `onCreate()` and `applyDomainSettings()`.
278 private boolean nightMode;
280 // `swipeToRefreshEnabled` is used in `onPrepareOptionsMenu()` and `applyAppSettings()`.
281 private boolean swipeToRefreshEnabled;
283 // `displayWebpageImagesBoolean` is used in `applyAppSettings()` and `applyDomainSettings()`.
284 private boolean displayWebpageImagesBoolean;
286 // 'homepage' is used in `onCreate()`, `onNavigationItemSelected()`, and `applyAppSettings()`.
287 private String homepage;
289 // `searchURL` is used in `loadURLFromTextBox()` and `applyAppSettings()`.
290 private String searchURL;
292 // The block list variables are used in `onCreate()` and `applyAppSettings()`.
293 private boolean easyListEnabled;
294 private boolean easyPrivacyEnabled;
295 private boolean fanboysAnnoyanceListEnabled;
296 private boolean fanboysSocialBlockingListEnabled;
298 // `privacyBrowserRuntime` is used in `onCreate()`, `onOptionsItemSelected()`, and `applyAppSettings()`.
299 private Runtime privacyBrowserRuntime;
301 // `proxyThroughOrbot` is used in `onRestart()` and `applyAppSettings()`.
302 private boolean proxyThroughOrbot;
304 // `incognitoModeEnabled` is used in `onCreate()` and `applyAppSettings()`.
305 private boolean incognitoModeEnabled;
307 // `fullScreenBrowsingModeEnabled` is used in `onCreate()` and `applyAppSettings()`.
308 private boolean fullScreenBrowsingModeEnabled;
310 // `inFullScreenBrowsingMode` is used in `onCreate()`, `onConfigurationChanged()`, and `applyAppSettings()`.
311 private boolean inFullScreenBrowsingMode;
313 // `hideSystemBarsOnFullscreen` is used in `onCreate()` and `applyAppSettings()`.
314 private boolean hideSystemBarsOnFullscreen;
316 // `translucentNavigationBarOnFullscreen` is used in `onCreate()` and `applyAppSettings()`.
317 private boolean translucentNavigationBarOnFullscreen;
319 // `reapplyDomainSettingsOnRestart` is used in `onCreate()`, `onOptionsItemSelected()`, `onNavigationItemSelected()`, `onRestart()`, and `onAddDomain()`, .
320 private boolean reapplyDomainSettingsOnRestart;
322 // `reapplyAppSettingsOnRestart` is used in `onNavigationItemSelected()` and `onRestart()`.
323 private boolean reapplyAppSettingsOnRestart;
325 // `currentDomainName` is used in `onCreate()`, `onOptionsItemSelected()`, `onNavigationItemSelected()`, `onAddDomain()`, and `applyDomainSettings()`.
326 private String currentDomainName;
328 // `ignorePinnedSslCertificateForDomain` is used in `onCreate()`, `onSslMismatchProceed()`, and `applyDomainSettings()`.
329 private boolean ignorePinnedSslCertificate;
331 // `waitingForOrbot` is used in `onCreate()` and `applyAppSettings()`.
332 private boolean waitingForOrbot;
334 // `domainSettingsApplied` is used in `prepareOptionsMenu()`, `applyDomainSettings()`, and `setDisplayWebpageImages()`.
335 private boolean domainSettingsApplied;
337 // `displayWebpageImagesInt` is used in `applyDomainSettings()` and `setDisplayWebpageImages()`.
338 private int displayWebpageImagesInt;
340 // `onTheFlyDisplayImagesSet` is used in `applyDomainSettings()` and `setDisplayWebpageImages()`.
341 private boolean onTheFlyDisplayImagesSet;
343 // `waitingForOrbotData` is used in `onCreate()` and `applyAppSettings()`.
344 private String waitingForOrbotHTMLString;
346 // `privateDataDirectoryString` is used in `onCreate()`, `onOptionsItemSelected()`, and `onNavigationItemSelected()`.
347 private String privateDataDirectoryString;
349 // `findOnPageLinearLayout` is used in `onCreate()`, `onOptionsItemSelected()`, and `closeFindOnPage()`.
350 private LinearLayout findOnPageLinearLayout;
352 // `findOnPageEditText` is used in `onCreate()`, `onOptionsItemSelected()`, and `closeFindOnPage()`.
353 private EditText findOnPageEditText;
355 // `mainMenu` is used in `onCreateOptionsMenu()` and `updatePrivacyIcons()`.
356 private Menu mainMenu;
358 // `drawerToggle` is used in `onCreate()`, `onPostCreate()`, `onConfigurationChanged()`, `onNewIntent()`, and `onNavigationItemSelected()`.
359 private ActionBarDrawerToggle drawerToggle;
361 // `supportAppBar` is used in `onCreate()`, `onOptionsItemSelected()`, and `closeFindOnPage()`.
362 private Toolbar supportAppBar;
364 // `urlTextBox` is used in `onCreate()`, `onOptionsItemSelected()`, `loadUrlFromTextBox()`, `loadUrl()`, and `highlightUrlText()`.
365 private EditText urlTextBox;
367 // The color spans are used in `onCreate()` and `highlightUrlText()`.
368 private ForegroundColorSpan redColorSpan;
369 private ForegroundColorSpan initialGrayColorSpan;
370 private ForegroundColorSpan finalGrayColorSpan;
372 // `adView` is used in `onCreate()` and `onConfigurationChanged()`.
375 // `sslErrorHandler` is used in `onCreate()`, `onSslErrorCancel()`, and `onSslErrorProceed`.
376 private SslErrorHandler sslErrorHandler;
378 // `httpAuthHandler` is used in `onCreate()`, `onHttpAuthenticationCancel()`, and `onHttpAuthenticationProceed()`.
379 private static HttpAuthHandler httpAuthHandler;
381 // `inputMethodManager` is used in `onOptionsItemSelected()`, `loadUrlFromTextBox()`, and `closeFindOnPage()`.
382 private InputMethodManager inputMethodManager;
384 // `mainWebViewRelativeLayout` is used in `onCreate()` and `onNavigationItemSelected()`.
385 private RelativeLayout mainWebViewRelativeLayout;
387 // `urlIsLoading` is used in `onCreate()`, `loadUrl()`, and `applyDomainSettings()`.
388 private boolean urlIsLoading;
390 // `pinnedDomainSslCertificate` is used in `onCreate()` and `applyDomainSettings()`.
391 private boolean pinnedDomainSslCertificate;
393 // `bookmarksDatabaseHelper` is used in `onCreate()`, `onCreateBookmark()`, `onCreateBookmarkFolder()`, `onSaveEditBookmark()`, `onSaveEditBookmarkFolder()`, and `loadBookmarksFolder()`.
394 private BookmarksDatabaseHelper bookmarksDatabaseHelper;
396 // `bookmarksListView` is used in `onCreate()`, `onCreateBookmark()`, `onCreateBookmarkFolder()`, and `loadBookmarksFolder()`.
397 private ListView bookmarksListView;
399 // `bookmarksTitleTextView` is used in `onCreate()` and `loadBookmarksFolder()`.
400 private TextView bookmarksTitleTextView;
402 // `bookmarksCursor` is used in `onCreateBookmark()`, `onCreateBookmarkFolder()`, `onSaveEditBookmark()`, `onSaveEditBookmarkFolder()`, and `loadBookmarksFolder()`.
403 private Cursor bookmarksCursor;
405 // `bookmarksCursorAdapter` is used in `onCreateBookmark()`, `onCreateBookmarkFolder()` `onSaveEditBookmark()`, `onSaveEditBookmarkFolder()`, and `loadBookmarksFolder()`.
406 private CursorAdapter bookmarksCursorAdapter;
408 // `oldFolderNameString` is used in `onCreate()` and `onSaveEditBookmarkFolder()`.
409 private String oldFolderNameString;
411 // `fileChooserCallback` is used in `onCreate()` and `onActivityResult()`.
412 private ValueCallback<Uri[]> fileChooserCallback;
414 // The download strings are used in `onCreate()` and `onRequestPermissionResult()`.
415 private String downloadUrl;
416 private String downloadContentDisposition;
417 private long downloadContentLength;
419 // `downloadImageUrl` is used in `onCreateContextMenu()` and `onRequestPermissionResult()`.
420 private String downloadImageUrl;
422 // The user agent variables are used in `onCreate()` and `applyDomainSettings()`.
423 private ArrayAdapter<CharSequence> userAgentNamesArray;
424 private String[] userAgentDataArray;
426 // The request codes are used in `onCreate()`, `onCreateContextMenu()`, `onCloseDownloadLocationPermissionDialog()`, and `onRequestPermissionResult()`.
427 private final int DOWNLOAD_FILE_REQUEST_CODE = 1;
428 private final int DOWNLOAD_IMAGE_REQUEST_CODE = 2;
431 // 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.
432 // Also, remove the warning about needing to override `performClick()` when using an `OnTouchListener` with `WebView`.
433 @SuppressLint({"SetJavaScriptEnabled", "ClickableViewAccessibility"})
434 // Remove Android Studio's warning about deprecations. We have to use the deprecated `getColor()` until API >= 23.
435 @SuppressWarnings("deprecation")
436 protected void onCreate(Bundle savedInstanceState) {
437 // Get a handle for `sharedPreferences`. `this` references the current context.
438 SharedPreferences sharedPreferences = PreferenceManager.getDefaultSharedPreferences(this);
440 // Get the theme preference.
441 darkTheme = sharedPreferences.getBoolean("dark_theme", false);
443 // Set the activity theme.
445 setTheme(R.style.PrivacyBrowserDark);
447 setTheme(R.style.PrivacyBrowserLight);
450 // Run the default commands.
451 super.onCreate(savedInstanceState);
453 // Set the content view.
454 setContentView(R.layout.main_drawerlayout);
456 // Get a handle for `inputMethodManager`.
457 inputMethodManager = (InputMethodManager) getSystemService(Context.INPUT_METHOD_SERVICE);
459 // `SupportActionBar` from `android.support.v7.app.ActionBar` must be used until the minimum API is >= 21.
460 supportAppBar = findViewById(R.id.app_bar);
461 setSupportActionBar(supportAppBar);
462 appBar = getSupportActionBar();
464 // This is needed to get rid of the Android Studio warning that `appBar` might be null.
465 assert appBar != null;
467 // Add the custom `url_app_bar` layout, which shows the favorite icon and the URL text bar.
468 appBar.setCustomView(R.layout.url_app_bar);
469 appBar.setDisplayOptions(ActionBar.DISPLAY_SHOW_CUSTOM);
471 // Initialize the foreground color spans for highlighting the URLs. We have to use the deprecated `getColor()` until API >= 23.
472 redColorSpan = new ForegroundColorSpan(getResources().getColor(R.color.red_a700));
473 initialGrayColorSpan = new ForegroundColorSpan(getResources().getColor(R.color.gray_500));
474 finalGrayColorSpan = new ForegroundColorSpan(getResources().getColor(R.color.gray_500));
476 // Get a handle for `urlTextBox`.
477 urlTextBox = findViewById(R.id.url_edittext);
479 // Remove the formatting from `urlTextBar` when the user is editing the text.
480 urlTextBox.setOnFocusChangeListener((View v, boolean hasFocus) -> {
481 if (hasFocus) { // The user is editing `urlTextBox`.
482 // Remove the highlighting.
483 urlTextBox.getText().removeSpan(redColorSpan);
484 urlTextBox.getText().removeSpan(initialGrayColorSpan);
485 urlTextBox.getText().removeSpan(finalGrayColorSpan);
486 } else { // The user has stopped editing `urlTextBox`.
487 // Reapply the highlighting.
492 // Set the go button on the keyboard to load the URL in `urlTextBox`.
493 urlTextBox.setOnKeyListener((View v, int keyCode, KeyEvent event) -> {
494 // If the event is a key-down event on the `enter` button, load the URL.
495 if ((event.getAction() == KeyEvent.ACTION_DOWN) && (keyCode == KeyEvent.KEYCODE_ENTER)) {
496 // Load the URL into the mainWebView and consume the event.
498 loadUrlFromTextBox();
499 } catch (UnsupportedEncodingException e) {
502 // If the enter key was pressed, consume the event.
505 // If any other key was pressed, do not consume the event.
510 // Set `waitingForOrbotHTMLString`.
511 waitingForOrbotHTMLString = "<html><body><br/><center><h1>" + getString(R.string.waiting_for_orbot) + "</h1></center></body></html>";
513 // Initialize `currentDomainName`, `orbotStatus`, and `waitingForOrbot`.
514 currentDomainName = "";
515 orbotStatus = "unknown";
516 waitingForOrbot = false;
518 // Create an Orbot status `BroadcastReceiver`.
519 BroadcastReceiver orbotStatusBroadcastReceiver = new BroadcastReceiver() {
521 public void onReceive(Context context, Intent intent) {
522 // Store the content of the status message in `orbotStatus`.
523 orbotStatus = intent.getStringExtra("org.torproject.android.intent.extra.STATUS");
525 // If we are waiting on Orbot, load the website now that Orbot is connected.
526 if (orbotStatus.equals("ON") && waitingForOrbot) {
527 // Reset `waitingForOrbot`.
528 waitingForOrbot = false;
530 // Load `formattedUrlString
531 loadUrl(formattedUrlString);
536 // Register `orbotStatusBroadcastReceiver` on `this` context.
537 this.registerReceiver(orbotStatusBroadcastReceiver, new IntentFilter("org.torproject.android.intent.action.STATUS"));
539 // Get handles for views that need to be accessed.
540 drawerLayout = findViewById(R.id.drawerlayout);
541 rootCoordinatorLayout = findViewById(R.id.root_coordinatorlayout);
542 bookmarksListView = findViewById(R.id.bookmarks_drawer_listview);
543 bookmarksTitleTextView = findViewById(R.id.bookmarks_title_textview);
544 FloatingActionButton launchBookmarksActivityFab = findViewById(R.id.launch_bookmarks_activity_fab);
545 FloatingActionButton createBookmarkFolderFab = findViewById(R.id.create_bookmark_folder_fab);
546 FloatingActionButton createBookmarkFab = findViewById(R.id.create_bookmark_fab);
547 mainWebViewRelativeLayout = findViewById(R.id.main_webview_relativelayout);
548 mainWebView = findViewById(R.id.main_webview);
549 findOnPageLinearLayout = findViewById(R.id.find_on_page_linearlayout);
550 findOnPageEditText = findViewById(R.id.find_on_page_edittext);
551 fullScreenVideoFrameLayout = findViewById(R.id.full_screen_video_framelayout);
552 urlAppBarRelativeLayout = findViewById(R.id.url_app_bar_relativelayout);
553 favoriteIconImageView = findViewById(R.id.favorite_icon);
555 // Set the bookmarks drawer resources according to the theme. This can't be done in the layout due to compatibility issues with the `DrawerLayout` support widget.
557 launchBookmarksActivityFab.setImageDrawable(getResources().getDrawable(R.drawable.bookmarks_dark));
558 createBookmarkFolderFab.setImageDrawable(getResources().getDrawable(R.drawable.create_folder_dark));
559 createBookmarkFab.setImageDrawable(getResources().getDrawable(R.drawable.create_bookmark_dark));
560 bookmarksListView.setBackgroundColor(getResources().getColor(R.color.gray_850));
562 launchBookmarksActivityFab.setImageDrawable(getResources().getDrawable(R.drawable.bookmarks_light));
563 createBookmarkFolderFab.setImageDrawable(getResources().getDrawable(R.drawable.create_folder_light));
564 createBookmarkFab.setImageDrawable(getResources().getDrawable(R.drawable.create_bookmark_light));
565 bookmarksListView.setBackgroundColor(getResources().getColor(R.color.white));
568 // Set the launch bookmarks activity FAB to launch the bookmarks activity.
569 launchBookmarksActivityFab.setOnClickListener(v -> {
570 // Create an intent to launch the bookmarks activity.
571 Intent bookmarksIntent = new Intent(getApplicationContext(), BookmarksActivity.class);
573 // Include the current folder with the `Intent`.
574 bookmarksIntent.putExtra("Current Folder", currentBookmarksFolder);
577 startActivity(bookmarksIntent);
580 // Set the create new bookmark folder FAB to display an alert dialog.
581 createBookmarkFolderFab.setOnClickListener(v -> {
582 // Show the `CreateBookmarkFolderDialog` `AlertDialog` and name the instance `@string/create_folder`.
583 AppCompatDialogFragment createBookmarkFolderDialog = new CreateBookmarkFolderDialog();
584 createBookmarkFolderDialog.show(getSupportFragmentManager(), getResources().getString(R.string.create_folder));
587 // Set the create new bookmark FAB to display an alert dialog.
588 createBookmarkFab.setOnClickListener(view -> {
589 // Show the `CreateBookmarkDialog` `AlertDialog` and name the instance `@string/create_bookmark`.
590 AppCompatDialogFragment createBookmarkDialog = new CreateBookmarkDialog();
591 createBookmarkDialog.show(getSupportFragmentManager(), getResources().getString(R.string.create_bookmark));
594 // Create a double-tap listener to toggle full-screen mode.
595 final GestureDetector gestureDetector = new GestureDetector(this, new GestureDetector.SimpleOnGestureListener() {
596 // Override `onDoubleTap()`. All other events are handled using the default settings.
598 public boolean onDoubleTap(MotionEvent event) {
599 if (fullScreenBrowsingModeEnabled) { // Only process the double-tap if full screen browsing mode is enabled.
600 // Toggle `inFullScreenBrowsingMode`.
601 inFullScreenBrowsingMode = !inFullScreenBrowsingMode;
603 if (inFullScreenBrowsingMode) { // Switch to full screen mode.
604 // Hide the `appBar`.
607 // Hide the `BannerAd` in the free flavor.
608 if (BuildConfig.FLAVOR.contentEquals("free")) {
609 BannerAd.hideAd(adView);
612 // Modify the system bars.
613 if (hideSystemBarsOnFullscreen) { // Hide everything.
614 // Remove the translucent overlays.
615 getWindow().clearFlags(WindowManager.LayoutParams.FLAG_TRANSLUCENT_STATUS);
617 // Remove the translucent status bar overlay on the `Drawer Layout`, which is special and needs its own command.
618 drawerLayout.setSystemUiVisibility(View.SYSTEM_UI_FLAG_LAYOUT_FULLSCREEN);
620 /* SYSTEM_UI_FLAG_FULLSCREEN hides the status bar at the top of the screen.
621 * SYSTEM_UI_FLAG_HIDE_NAVIGATION hides the navigation bar on the bottom or right of the screen.
622 * SYSTEM_UI_FLAG_IMMERSIVE_STICKY makes the status and navigation bars translucent and automatically re-hides them after they are shown.
624 rootCoordinatorLayout.setSystemUiVisibility(View.SYSTEM_UI_FLAG_FULLSCREEN | View.SYSTEM_UI_FLAG_HIDE_NAVIGATION | View.SYSTEM_UI_FLAG_IMMERSIVE_STICKY);
626 // Set `rootCoordinatorLayout` to fill the whole screen.
627 rootCoordinatorLayout.setFitsSystemWindows(false);
628 } else { // Hide everything except the status and navigation bars.
629 // Set `rootCoordinatorLayout` to fit under the status and navigation bars.
630 rootCoordinatorLayout.setFitsSystemWindows(false);
632 // There is an Android Support Library bug that causes a scrim to print on the right side of the `Drawer Layout` when the navigation bar is displayed on the right of the screen.
633 if (translucentNavigationBarOnFullscreen) {
634 // Set the navigation bar to be translucent.
635 getWindow().addFlags(WindowManager.LayoutParams.FLAG_TRANSLUCENT_NAVIGATION);
638 } else { // Switch to normal viewing mode.
639 // Show the `appBar`.
642 // Show the `BannerAd` in the free flavor.
643 if (BuildConfig.FLAVOR.contentEquals("free")) {
644 // Reload the ad. Because the screen may have rotated, we need to use `reloadAfterRotate`.
645 BannerAd.reloadAfterRotate(adView, getApplicationContext(), getString(R.string.ad_id));
647 // Reinitialize the `adView` variable, as the `View` will have been removed and re-added by `BannerAd.reloadAfterRotate()`.
648 adView = findViewById(R.id.adview);
651 // Remove the translucent navigation bar flag if it is set.
652 getWindow().clearFlags(WindowManager.LayoutParams.FLAG_TRANSLUCENT_NAVIGATION);
654 // Add the translucent status flag if it is unset. This also resets `drawerLayout's` `View.SYSTEM_UI_FLAG_LAYOUT_FULLSCREEN`.
655 getWindow().addFlags(WindowManager.LayoutParams.FLAG_TRANSLUCENT_STATUS);
657 // Remove any `SYSTEM_UI` flags from `rootCoordinatorLayout`.
658 rootCoordinatorLayout.setSystemUiVisibility(0);
660 // Constrain `rootCoordinatorLayout` inside the status and navigation bars.
661 rootCoordinatorLayout.setFitsSystemWindows(true);
664 // Consume the double-tap.
666 } else { // Do not consume the double-tap because full screen browsing mode is disabled.
672 // Pass all touch events on `mainWebView` through `gestureDetector` to check for double-taps.
673 mainWebView.setOnTouchListener((View v, MotionEvent event) -> {
674 // Call `performClick()` on the view, which is required for accessibility.
677 // Send the `event` to `gestureDetector`.
678 return gestureDetector.onTouchEvent(event);
681 // Update `findOnPageCountTextView`.
682 mainWebView.setFindListener(new WebView.FindListener() {
683 // Get a handle for `findOnPageCountTextView`.
684 final TextView findOnPageCountTextView = (TextView) findViewById(R.id.find_on_page_count_textview);
687 public void onFindResultReceived(int activeMatchOrdinal, int numberOfMatches, boolean isDoneCounting) {
688 if ((isDoneCounting) && (numberOfMatches == 0)) { // There are no matches.
689 // Set `findOnPageCountTextView` to `0/0`.
690 findOnPageCountTextView.setText(R.string.zero_of_zero);
691 } else if (isDoneCounting) { // There are matches.
692 // `activeMatchOrdinal` is zero-based.
693 int activeMatch = activeMatchOrdinal + 1;
695 // Build the match string.
696 String matchString = activeMatch + "/" + numberOfMatches;
698 // Set `findOnPageCountTextView`.
699 findOnPageCountTextView.setText(matchString);
704 // Search for the string on the page whenever a character changes in the `findOnPageEditText`.
705 findOnPageEditText.addTextChangedListener(new TextWatcher() {
707 public void beforeTextChanged(CharSequence s, int start, int count, int after) {
712 public void onTextChanged(CharSequence s, int start, int before, int count) {
717 public void afterTextChanged(Editable s) {
718 // Search for the text in `mainWebView`.
719 mainWebView.findAllAsync(findOnPageEditText.getText().toString());
723 // Set the `check mark` button for the `findOnPageEditText` keyboard to close the soft keyboard.
724 findOnPageEditText.setOnKeyListener((v, keyCode, event) -> {
725 if ((event.getAction() == KeyEvent.ACTION_DOWN) && (keyCode == KeyEvent.KEYCODE_ENTER)) { // The `enter` key was pressed.
726 // Hide the soft keyboard. `0` indicates no additional flags.
727 inputMethodManager.hideSoftInputFromWindow(mainWebView.getWindowToken(), 0);
729 // Consume the event.
731 } else { // A different key was pressed.
732 // Do not consume the event.
737 // Implement swipe to refresh
738 swipeRefreshLayout = findViewById(R.id.swipe_refreshlayout);
739 swipeRefreshLayout.setColorSchemeResources(R.color.blue_700);
740 swipeRefreshLayout.setOnRefreshListener(() -> mainWebView.reload());
742 // `DrawerTitle` identifies the `DrawerLayouts` in accessibility mode.
743 drawerLayout.setDrawerTitle(GravityCompat.START, getString(R.string.navigation_drawer));
744 drawerLayout.setDrawerTitle(GravityCompat.END, getString(R.string.bookmarks));
746 // Listen for touches on the navigation menu.
747 final NavigationView navigationView = findViewById(R.id.navigationview);
748 navigationView.setNavigationItemSelectedListener(this);
750 // Get handles for `navigationMenu` and the back and forward menu items. The menu is zero-based, so items 1, 2, and 3 are the second, third, and fourth entries in the menu.
751 final Menu navigationMenu = navigationView.getMenu();
752 final MenuItem navigationBackMenuItem = navigationMenu.getItem(1);
753 final MenuItem navigationForwardMenuItem = navigationMenu.getItem(2);
754 final MenuItem navigationHistoryMenuItem = navigationMenu.getItem(3);
756 // Initialize the bookmarks database helper. `this` specifies the context. The two `nulls` do not specify the database name or a `CursorFactory`.
757 // The `0` specifies a database version, but that is ignored and set instead using a constant in `BookmarksDatabaseHelper`.
758 bookmarksDatabaseHelper = new BookmarksDatabaseHelper(this, null, null, 0);
760 // Initialize `currentBookmarksFolder`. `""` is the home folder in the database.
761 currentBookmarksFolder = "";
763 // Load the home folder, which is `""` in the database.
764 loadBookmarksFolder();
766 bookmarksListView.setOnItemClickListener((parent, view, position, id) -> {
767 // Convert the id from long to int to match the format of the bookmarks database.
768 int databaseID = (int) id;
770 // Get the bookmark cursor for this ID and move it to the first row.
771 Cursor bookmarkCursor = bookmarksDatabaseHelper.getBookmarkCursor(databaseID);
772 bookmarkCursor.moveToFirst();
774 // Act upon the bookmark according to the type.
775 if (bookmarkCursor.getInt(bookmarkCursor.getColumnIndex(BookmarksDatabaseHelper.IS_FOLDER)) == 1) { // The selected bookmark is a folder.
776 // Store the new folder name in `currentBookmarksFolder`.
777 currentBookmarksFolder = bookmarkCursor.getString(bookmarkCursor.getColumnIndex(BookmarksDatabaseHelper.BOOKMARK_NAME));
779 // Load the new folder.
780 loadBookmarksFolder();
781 } else { // The selected bookmark is not a folder.
782 // Load the bookmark URL.
783 loadUrl(bookmarkCursor.getString(bookmarkCursor.getColumnIndex(BookmarksDatabaseHelper.BOOKMARK_URL)));
785 // Close the bookmarks drawer.
786 drawerLayout.closeDrawer(GravityCompat.END);
789 // Close the `Cursor`.
790 bookmarkCursor.close();
793 bookmarksListView.setOnItemLongClickListener((parent, view, position, id) -> {
794 // Convert the database ID from `long` to `int`.
795 int databaseId = (int) id;
797 // Find out if the selected bookmark is a folder.
798 boolean isFolder = bookmarksDatabaseHelper.isFolder(databaseId);
801 // Save the current folder name, which is used in `onSaveEditBookmarkFolder()`.
802 oldFolderNameString = bookmarksCursor.getString(bookmarksCursor.getColumnIndex(BookmarksDatabaseHelper.BOOKMARK_NAME));
804 // Show the edit bookmark folder `AlertDialog` and name the instance `@string/edit_folder`.
805 AppCompatDialogFragment editFolderDialog = EditBookmarkFolderDialog.folderDatabaseId(databaseId);
806 editFolderDialog.show(getSupportFragmentManager(), getResources().getString(R.string.edit_folder));
808 // Show the edit bookmark `AlertDialog` and name the instance `@string/edit_bookmark`.
809 AppCompatDialogFragment editBookmarkDialog = EditBookmarkDialog.bookmarkDatabaseId(databaseId);
810 editBookmarkDialog.show(getSupportFragmentManager(), getResources().getString(R.string.edit_bookmark));
813 // Consume the event.
817 // The `DrawerListener` allows us to update the Navigation Menu.
818 drawerLayout.addDrawerListener(new DrawerLayout.DrawerListener() {
820 public void onDrawerSlide(@NonNull View drawerView, float slideOffset) {
824 public void onDrawerOpened(@NonNull View drawerView) {
828 public void onDrawerClosed(@NonNull View drawerView) {
832 public void onDrawerStateChanged(int newState) {
833 if ((newState == DrawerLayout.STATE_SETTLING) || (newState == DrawerLayout.STATE_DRAGGING)) { // The drawer is opening or closing.
834 // Update the `Back`, `Forward`, and `History` menu items.
835 navigationBackMenuItem.setEnabled(mainWebView.canGoBack());
836 navigationForwardMenuItem.setEnabled(mainWebView.canGoForward());
837 navigationHistoryMenuItem.setEnabled((mainWebView.canGoBack() || mainWebView.canGoForward()));
839 // Hide the keyboard (if displayed) so we can see the navigation menu. `0` indicates no additional flags.
840 inputMethodManager.hideSoftInputFromWindow(mainWebView.getWindowToken(), 0);
842 // Clear the focus from `urlTextBox` if it has it.
843 urlTextBox.clearFocus();
848 // drawerToggle creates the hamburger icon at the start of the AppBar.
849 drawerToggle = new ActionBarDrawerToggle(this, drawerLayout, supportAppBar, R.string.open_navigation_drawer, R.string.close_navigation_drawer);
851 // Get a handle for the progress bar.
852 final ProgressBar progressBar = findViewById(R.id.progress_bar);
854 mainWebView.setWebChromeClient(new WebChromeClient() {
855 // Update the progress bar when a page is loading.
857 public void onProgressChanged(WebView view, int progress) {
858 // Inject the night mode CSS if night mode is enabled.
860 // `background-color: #212121` sets the background to be dark gray. `color: #BDBDBD` sets the text color to be light gray. `box-shadow: none` removes a lower underline on links
861 // used by WordPress. `text-decoration: none` removes all text underlines. `text-shadow: none` removes text shadows, which usually have a hard coded color.
862 // `border: none` removes all borders, which can also be used to underline text.
863 // `a {color: #1565C0}` sets links to be a dark blue. `!important` takes precedent over any existing sub-settings.
864 mainWebView.evaluateJavascript("(function() {var parent = document.getElementsByTagName('head').item(0); var style = document.createElement('style'); style.type = 'text/css'; " +
865 "style.innerHTML = '* {background-color: #212121 !important; color: #BDBDBD !important; box-shadow: none !important; text-decoration: none !important;" +
866 "text-shadow: none !important; border: none !important;} a {color: #1565C0 !important;}'; parent.appendChild(style)})()", value -> {
867 // Initialize a `Handler` to display `mainWebView`.
868 Handler displayWebViewHandler = new Handler();
870 // Setup a `Runnable` to display `mainWebView` after a delay to allow the CSS to be applied.
871 Runnable displayWebViewRunnable = () -> {
872 // Only display `mainWebView` if the progress bar is one. This prevents the display of the `WebView` while it is still loading.
873 if (progressBar.getVisibility() == View.GONE) {
874 mainWebView.setVisibility(View.VISIBLE);
878 // Use `displayWebViewHandler` to delay the displaying of `mainWebView` for 500 milliseconds.
879 displayWebViewHandler.postDelayed(displayWebViewRunnable, 500);
883 // Update the progress bar.
884 progressBar.setProgress(progress);
886 // Set the visibility of the progress bar.
887 if (progress < 100) {
888 // Show the progress bar.
889 progressBar.setVisibility(View.VISIBLE);
891 // Hide the progress bar.
892 progressBar.setVisibility(View.GONE);
894 // Display `mainWebView` if night mode is disabled.
895 // Because of a race condition between `applyDomainSettings` and `onPageStarted`, when night mode is set by domain settings the `WebView` may be hidden even if night mode is not
896 // currently enabled.
898 mainWebView.setVisibility(View.VISIBLE);
901 //Stop the `SwipeToRefresh` indicator if it is running
902 swipeRefreshLayout.setRefreshing(false);
906 // Set the favorite icon when it changes.
908 public void onReceivedIcon(WebView view, Bitmap icon) {
909 // Only update the favorite icon if the website has finished loading.
910 if (progressBar.getVisibility() == View.GONE) {
911 // Save a copy of the favorite icon.
912 favoriteIconBitmap = icon;
914 // Place the favorite icon in the appBar.
915 favoriteIconImageView.setImageBitmap(Bitmap.createScaledBitmap(icon, 64, 64, true));
919 // Save a copy of the title when it changes.
921 public void onReceivedTitle(WebView view, String title) {
922 // Save a copy of the title.
923 webViewTitle = title;
926 // Enter full screen video.
928 public void onShowCustomView(View view, CustomViewCallback callback) {
929 // Pause the ad if this is the free flavor.
930 if (BuildConfig.FLAVOR.contentEquals("free")) {
931 BannerAd.pauseAd(adView);
934 // Remove the translucent overlays.
935 getWindow().clearFlags(WindowManager.LayoutParams.FLAG_TRANSLUCENT_STATUS);
937 // Remove the translucent status bar overlay on the `Drawer Layout`, which is special and needs its own command.
938 drawerLayout.setSystemUiVisibility(View.SYSTEM_UI_FLAG_LAYOUT_FULLSCREEN);
940 /* SYSTEM_UI_FLAG_FULLSCREEN hides the status bar at the top of the screen.
941 * SYSTEM_UI_FLAG_HIDE_NAVIGATION hides the navigation bar on the bottom or right of the screen.
942 * SYSTEM_UI_FLAG_IMMERSIVE_STICKY makes the status and navigation bars translucent and automatically re-hides them after they are shown.
944 rootCoordinatorLayout.setSystemUiVisibility(View.SYSTEM_UI_FLAG_FULLSCREEN | View.SYSTEM_UI_FLAG_HIDE_NAVIGATION | View.SYSTEM_UI_FLAG_IMMERSIVE_STICKY);
946 // Set `rootCoordinatorLayout` to fill the entire screen.
947 rootCoordinatorLayout.setFitsSystemWindows(false);
949 // Add `view` to `fullScreenVideoFrameLayout` and display it on the screen.
950 fullScreenVideoFrameLayout.addView(view);
951 fullScreenVideoFrameLayout.setVisibility(View.VISIBLE);
954 // Exit full screen video.
956 public void onHideCustomView() {
957 // Hide `fullScreenVideoFrameLayout`.
958 fullScreenVideoFrameLayout.removeAllViews();
959 fullScreenVideoFrameLayout.setVisibility(View.GONE);
961 // Add the translucent status flag. This also resets `drawerLayout's` `View.SYSTEM_UI_FLAG_LAYOUT_FULLSCREEN`.
962 getWindow().addFlags(WindowManager.LayoutParams.FLAG_TRANSLUCENT_STATUS);
964 // Set `rootCoordinatorLayout` to fit inside the status and navigation bars. This also clears the `SYSTEM_UI` flags.
965 rootCoordinatorLayout.setFitsSystemWindows(true);
967 // Show the ad if this is the free flavor.
968 if (BuildConfig.FLAVOR.contentEquals("free")) {
969 // Reload the ad. Because the screen may have rotated, we need to use `reloadAfterRotate`.
970 BannerAd.reloadAfterRotate(adView, getApplicationContext(), getString(R.string.ad_id));
972 // Reinitialize the `adView` variable, as the `View` will have been removed and re-added by `BannerAd.reloadAfterRotate()`.
973 adView = findViewById(R.id.adview);
979 public boolean onShowFileChooser(WebView webView, ValueCallback<Uri[]> filePathCallback, FileChooserParams fileChooserParams) {
980 // Show the file chooser if the device is running API >= 21.
981 if (Build.VERSION.SDK_INT >= 21) {
982 // Store the file path callback.
983 fileChooserCallback = filePathCallback;
985 // Create an intent to open a chooser based ont the file chooser parameters.
986 Intent fileChooserIntent = fileChooserParams.createIntent();
988 // Open the file chooser. Currently only one `startActivityForResult` exists in this activity, so the request code, used to differentiate them, is simply `0`.
989 startActivityForResult(fileChooserIntent, 0);
995 // Register `mainWebView` for a context menu. This is used to see link targets and download images.
996 registerForContextMenu(mainWebView);
998 // Allow the downloading of files.
999 mainWebView.setDownloadListener((String url, String userAgent, String contentDisposition, String mimetype, long contentLength) -> {
1000 // Check to see if the WRITE_EXTERNAL_STORAGE permission has already been granted.
1001 if (ContextCompat.checkSelfPermission(this, Manifest.permission.WRITE_EXTERNAL_STORAGE) == PackageManager.PERMISSION_DENIED) {
1002 // The WRITE_EXTERNAL_STORAGE permission needs to be requested.
1004 // Store the variables for future use by `onRequestPermissionsResult()`.
1006 downloadContentDisposition = contentDisposition;
1007 downloadContentLength = contentLength;
1009 // Show a dialog if the user has previously denied the permission.
1010 if (ActivityCompat.shouldShowRequestPermissionRationale(this, Manifest.permission.WRITE_EXTERNAL_STORAGE)) { // Show a dialog explaining the request first.
1011 // Get a handle for the download location permission alert dialog and set the download type to DOWNLOAD_FILE.
1012 DialogFragment downloadLocationPermissionDialogFragment = DownloadLocationPermissionDialog.downloadType(DownloadLocationPermissionDialog.DOWNLOAD_FILE);
1014 // Show the download location permission alert dialog. The permission will be requested when the the dialog is closed.
1015 downloadLocationPermissionDialogFragment.show(getFragmentManager(), getString(R.string.download_location));
1016 } else { // Show the permission request directly.
1017 // Request the permission. The download dialog will be launched by `onRequestPermissionResult()`.
1018 ActivityCompat.requestPermissions(this, new String[] {Manifest.permission.WRITE_EXTERNAL_STORAGE}, DOWNLOAD_FILE_REQUEST_CODE);
1020 } else { // The WRITE_EXTERNAL_STORAGE permission has already been granted.
1021 // Get a handle for the download file alert dialog.
1022 AppCompatDialogFragment downloadFileDialogFragment = DownloadFileDialog.fromUrl(url, contentDisposition, contentLength);
1024 // Show the download file alert dialog.
1025 downloadFileDialogFragment.show(getSupportFragmentManager(), getString(R.string.download));
1029 // Allow pinch to zoom.
1030 mainWebView.getSettings().setBuiltInZoomControls(true);
1032 // Hide zoom controls.
1033 mainWebView.getSettings().setDisplayZoomControls(false);
1035 // Set `mainWebView` to use a wide viewport. Otherwise, some web pages will be scrunched and some content will render outside the screen.
1036 mainWebView.getSettings().setUseWideViewPort(true);
1038 // Set `mainWebView` to load in overview mode (zoomed out to the maximum width).
1039 mainWebView.getSettings().setLoadWithOverviewMode(true);
1041 // Explicitly disable geolocation.
1042 mainWebView.getSettings().setGeolocationEnabled(false);
1044 // Initialize cookieManager.
1045 cookieManager = CookieManager.getInstance();
1047 // Replace the header that `WebView` creates for `X-Requested-With` with a null value. The default value is the application ID (com.stoutner.privacybrowser.standard).
1048 customHeaders.put("X-Requested-With", "");
1050 // Initialize the default preference values the first time the program is run. `this` is the context. `false` keeps this command from resetting any current preferences back to default.
1051 PreferenceManager.setDefaultValues(this, R.xml.preferences, false);
1053 // Get the intent that started the app.
1054 final Intent launchingIntent = getIntent();
1056 // Extract the launching intent data as `launchingIntentUriData`.
1057 final Uri launchingIntentUriData = launchingIntent.getData();
1059 // Convert the launching intent URI data (if it exists) to a string and store it in `formattedUrlString`.
1060 if (launchingIntentUriData != null) {
1061 formattedUrlString = launchingIntentUriData.toString();
1064 // Get a handle for the `Runtime`.
1065 privacyBrowserRuntime = Runtime.getRuntime();
1067 // Store the application's private data directory.
1068 privateDataDirectoryString = getApplicationInfo().dataDir;
1069 // `dataDir` will vary, but will be something like `/data/user/0/com.stoutner.privacybrowser.standard`, which links to `/data/data/com.stoutner.privacybrowser.standard`.
1071 // Initialize `inFullScreenBrowsingMode`, which is always false at this point because Privacy Browser never starts in full screen browsing mode.
1072 inFullScreenBrowsingMode = false;
1074 // Initialize AdView for the free flavor.
1075 adView = findViewById(R.id.adview);
1077 // Initialize the privacy settings variables.
1078 javaScriptEnabled = false;
1079 firstPartyCookiesEnabled = false;
1080 thirdPartyCookiesEnabled = false;
1081 domStorageEnabled = false;
1082 saveFormDataEnabled = false;
1085 // Initialize the WebView title.
1086 webViewTitle = getString(R.string.no_title);
1088 // Initialize the favorite icon bitmap. `ContextCompat` must be used until API >= 21.
1089 Drawable favoriteIconDrawable = ContextCompat.getDrawable(getApplicationContext(), R.drawable.world);
1090 BitmapDrawable favoriteIconBitmapDrawable = (BitmapDrawable) favoriteIconDrawable;
1091 assert favoriteIconBitmapDrawable != null;
1092 favoriteIconDefaultBitmap = favoriteIconBitmapDrawable.getBitmap();
1094 // If the favorite icon is null, load the default.
1095 if (favoriteIconBitmap == null) {
1096 favoriteIconBitmap = favoriteIconDefaultBitmap;
1099 // Initialize the user agent array adapter and string array.
1100 userAgentNamesArray = ArrayAdapter.createFromResource(this, R.array.user_agent_names, R.layout.domain_settings_spinner_item);
1101 userAgentDataArray = getResources().getStringArray(R.array.user_agent_data);
1103 // Apply the app settings from the shared preferences.
1106 // Instantiate the block list helper.
1107 BlockListHelper blockListHelper = new BlockListHelper();
1109 // Parse the block lists.
1110 final ArrayList<List<String[]>> easyList = blockListHelper.parseBlockList(getAssets(), "blocklists/easylist.txt");
1111 final ArrayList<List<String[]>> easyPrivacy = blockListHelper.parseBlockList(getAssets(), "blocklists/easyprivacy.txt");
1112 final ArrayList<List<String[]>> fanboyAnnoyance = blockListHelper.parseBlockList(getAssets(), "blocklists/fanboy-annoyance.txt");
1113 final ArrayList<List<String[]>> fanboySocial = blockListHelper.parseBlockList(getAssets(), "blocklists/fanboy-social.txt");
1115 // Store the list versions.
1116 easyListVersion = easyList.get(0).get(0)[0];
1117 easyPrivacyVersion = easyPrivacy.get(0).get(0)[0];
1118 fanboyAnnoyanceVersion = fanboyAnnoyance.get(0).get(0)[0];
1119 fanboySocialVersion = fanboySocial.get(0).get(0)[0];
1121 mainWebView.setWebViewClient(new WebViewClient() {
1122 // `shouldOverrideUrlLoading` makes this `WebView` the default handler for URLs inside the app, so that links are not kicked out to other apps.
1123 // The deprecated `shouldOverrideUrlLoading` must be used until API >= 24.
1124 @SuppressWarnings("deprecation")
1126 public boolean shouldOverrideUrlLoading(WebView view, String url) {
1127 if (url.startsWith("http")) { // Load the URL in Privacy Browser.
1128 // Apply the domain settings for the new URL.
1129 applyDomainSettings(url, true, false);
1131 // Returning false causes the current `WebView` to handle the URL and prevents it from adding redirects to the history list.
1133 } else if (url.startsWith("mailto:")) { // Load the email address in an external email program.
1134 // Use `ACTION_SENDTO` instead of `ACTION_SEND` so that only email programs are launched.
1135 Intent emailIntent = new Intent(Intent.ACTION_SENDTO);
1137 // Parse the url and set it as the data for the intent.
1138 emailIntent.setData(Uri.parse(url));
1140 // Open the email program in a new task instead of as part of Privacy Browser.
1141 emailIntent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
1144 startActivity(emailIntent);
1146 // Returning true indicates Privacy Browser is handling the URL by creating an intent.
1148 } else if (url.startsWith("tel:")) { // Load the phone number in the dialer.
1149 // Open the dialer and load the phone number, but wait for the user to place the call.
1150 Intent dialIntent = new Intent(Intent.ACTION_DIAL);
1152 // Add the phone number to the intent.
1153 dialIntent.setData(Uri.parse(url));
1155 // Open the dialer in a new task instead of as part of Privacy Browser.
1156 dialIntent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
1159 startActivity(dialIntent);
1161 // Returning true indicates Privacy Browser is handling the URL by creating an intent.
1163 } else { // Load a system chooser to select an app that can handle the URL.
1164 // Open an app that can handle the URL.
1165 Intent genericIntent = new Intent(Intent.ACTION_VIEW);
1167 // Add the URL to the intent.
1168 genericIntent.setData(Uri.parse(url));
1170 // List all apps that can handle the URL instead of just opening the first one.
1171 genericIntent.addCategory(Intent.CATEGORY_BROWSABLE);
1173 // Open the app in a new task instead of as part of Privacy Browser.
1174 genericIntent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
1176 // Start the app or display a snackbar if no app is available to handle the URL.
1178 startActivity(genericIntent);
1179 } catch (ActivityNotFoundException exception) {
1180 Snackbar.make(mainWebView, getString(R.string.unrecognized_url) + " " + url, Snackbar.LENGTH_SHORT).show();
1183 // Returning true indicates Privacy Browser is handling the URL by creating an intent.
1188 // Check requests against the block lists. The deprecated `shouldInterceptRequest` must be used until minimum API >= 21.
1189 @SuppressWarnings("deprecation")
1191 public WebResourceResponse shouldInterceptRequest(WebView view, String url){
1192 // Create an empty web resource response to be used if the resource request is blocked.
1193 WebResourceResponse emptyWebResourceResponse = new WebResourceResponse("text/plain", "utf8", new ByteArrayInputStream("".getBytes()));
1195 // Check EasyList if it is enabled.
1196 if (easyListEnabled) {
1197 if (blockListHelper.isBlocked(formattedUrlString, url, easyList)) {
1198 // The resource request was blocked. Return an empty web resource response.
1199 return emptyWebResourceResponse;
1203 // Check EasyPrivacy if it is enabled.
1204 if (easyPrivacyEnabled) {
1205 if (blockListHelper.isBlocked(formattedUrlString, url, easyPrivacy)) {
1206 // The resource request was blocked. Return an empty web resource response.
1207 return emptyWebResourceResponse;
1211 // Check Fanboy’s Annoyance List if it is enabled.
1212 if (fanboysAnnoyanceListEnabled) {
1213 if (blockListHelper.isBlocked(formattedUrlString, url, fanboyAnnoyance)) {
1214 // The resource request was blocked. Return an empty web resource response.
1215 return emptyWebResourceResponse;
1217 } else if (fanboysSocialBlockingListEnabled){ // Only check Fanboy’s Social Blocking List if Fanboy’s Annoyance List is disabled.
1218 if (blockListHelper.isBlocked(formattedUrlString, url, fanboySocial)) {
1219 // The resource request was blocked. Return an empty web resource response.
1220 return emptyWebResourceResponse;
1224 // The resource request has not been blocked. `return null` loads the requested resource.
1228 // Handle HTTP authentication requests.
1230 public void onReceivedHttpAuthRequest(WebView view, HttpAuthHandler handler, String host, String realm) {
1231 // Store `handler` so it can be accessed from `onHttpAuthenticationCancel()` and `onHttpAuthenticationProceed()`.
1232 httpAuthHandler = handler;
1234 // Display the HTTP authentication dialog.
1235 AppCompatDialogFragment httpAuthenticationDialogFragment = HttpAuthenticationDialog.displayDialog(host, realm);
1236 httpAuthenticationDialogFragment.show(getSupportFragmentManager(), getString(R.string.http_authentication));
1239 // Update the URL in urlTextBox when the page starts to load.
1241 public void onPageStarted(WebView view, String url, Bitmap favicon) {// If night mode is enabled, hide `mainWebView` until after the night mode CSS is applied.
1243 mainWebView.setVisibility(View.INVISIBLE);
1246 // Hide the keyboard. `0` indicates no additional flags.
1247 inputMethodManager.hideSoftInputFromWindow(mainWebView.getWindowToken(), 0);
1249 // Check to see if we are waiting on Orbot.
1250 if (!waitingForOrbot) { // We are not waiting on Orbot, so we need to process the URL.
1251 // We need to update `formattedUrlString` at the beginning of the load, so that if the user toggles JavaScript during the load the new website is reloaded.
1252 formattedUrlString = url;
1254 // Display the formatted URL text.
1255 urlTextBox.setText(formattedUrlString);
1257 // Apply text highlighting to `urlTextBox`.
1260 // Apply any custom domain settings if the URL was loaded by navigating history.
1261 if (navigatingHistory) {
1262 applyDomainSettings(url, true, false);
1265 // Set `urlIsLoading` to `true`, so that redirects while loading do not trigger changes in the user agent, which forces another reload of the existing page.
1266 urlIsLoading = true;
1270 // It is necessary to update `formattedUrlString` and `urlTextBox` after the page finishes loading because the final URL can change during load.
1272 public void onPageFinished(WebView view, String url) {
1273 // Flush any cookies to persistent storage. `CookieManager` has become very lazy about flushing cookies in recent versions.
1274 if (firstPartyCookiesEnabled && Build.VERSION.SDK_INT >= 21) {
1275 cookieManager.flush();
1278 // Reset `urlIsLoading`, which is used to prevent reloads on redirect if the user agent changes.
1279 urlIsLoading = false;
1281 // Clear the cache and history if Incognito Mode is enabled.
1282 if (incognitoModeEnabled) {
1283 // Clear the cache. `true` includes disk files.
1284 mainWebView.clearCache(true);
1286 // Clear the back/forward history.
1287 mainWebView.clearHistory();
1289 // Manually delete cache folders.
1291 // Delete the main cache directory.
1292 privacyBrowserRuntime.exec("rm -rf " + privateDataDirectoryString + "/cache");
1294 // Delete the secondary `Service Worker` cache directory.
1295 // A `String[]` must be used because the directory contains a space and `Runtime.exec` will not escape the string correctly otherwise.
1296 privacyBrowserRuntime.exec(new String[] {"rm", "-rf", privateDataDirectoryString + "/app_webview/Service Worker/"});
1297 } catch (IOException e) {
1298 // Do nothing if an error is thrown.
1302 // Update `urlTextBox` and apply domain settings if not waiting on Orbot.
1303 if (!waitingForOrbot) {
1304 // Check to see if `WebView` has set `url` to be `about:blank`.
1305 if (url.equals("about:blank")) { // `WebView` is blank, so `formattedUrlString` should be `""` and `urlTextBox` should display a hint.
1306 // Set `formattedUrlString` to `""`.
1307 formattedUrlString = "";
1309 urlTextBox.setText(formattedUrlString);
1311 // Request focus for `urlTextBox`.
1312 urlTextBox.requestFocus();
1314 // Display the keyboard.
1315 inputMethodManager.showSoftInput(urlTextBox, 0);
1317 // Apply the domain settings. This clears any settings from the previous domain.
1318 applyDomainSettings(formattedUrlString, true, false);
1319 } else { // `WebView` has loaded a webpage.
1320 // Set `formattedUrlString`.
1321 formattedUrlString = url;
1323 // Only update `urlTextBox` if the user is not typing in it.
1324 if (!urlTextBox.hasFocus()) {
1325 // Display the formatted URL text.
1326 urlTextBox.setText(formattedUrlString);
1328 // Apply text highlighting to `urlTextBox`.
1333 // Store the SSL certificate so it can be accessed from `ViewSslCertificateDialog` and `PinnedSslCertificateMismatchDialog`.
1334 sslCertificate = mainWebView.getCertificate();
1336 // Check the current website SSL certificate against the pinned SSL certificate if there is a pinned SSL certificate the user has not chosen to ignore it for this session.
1337 if (pinnedDomainSslCertificate && !ignorePinnedSslCertificate) {
1338 // Initialize the current SSL certificate variables.
1339 String currentWebsiteIssuedToCName = "";
1340 String currentWebsiteIssuedToOName = "";
1341 String currentWebsiteIssuedToUName = "";
1342 String currentWebsiteIssuedByCName = "";
1343 String currentWebsiteIssuedByOName = "";
1344 String currentWebsiteIssuedByUName = "";
1345 Date currentWebsiteSslStartDate = null;
1346 Date currentWebsiteSslEndDate = null;
1349 // Extract the individual pieces of information from the current website SSL certificate if it is not null.
1350 if (sslCertificate != null) {
1351 currentWebsiteIssuedToCName = sslCertificate.getIssuedTo().getCName();
1352 currentWebsiteIssuedToOName = sslCertificate.getIssuedTo().getOName();
1353 currentWebsiteIssuedToUName = sslCertificate.getIssuedTo().getUName();
1354 currentWebsiteIssuedByCName = sslCertificate.getIssuedBy().getCName();
1355 currentWebsiteIssuedByOName = sslCertificate.getIssuedBy().getOName();
1356 currentWebsiteIssuedByUName = sslCertificate.getIssuedBy().getUName();
1357 currentWebsiteSslStartDate = sslCertificate.getValidNotBeforeDate();
1358 currentWebsiteSslEndDate = sslCertificate.getValidNotAfterDate();
1361 // Initialize `String` variables to store the SSL certificate dates. `Strings` are needed to compare the values below, which doesn't work with `Dates` if they are `null`.
1362 String currentWebsiteSslStartDateString = "";
1363 String currentWebsiteSslEndDateString = "";
1364 String pinnedDomainSslStartDateString = "";
1365 String pinnedDomainSslEndDateString = "";
1367 // Convert the `Dates` to `Strings` if they are not `null`.
1368 if (currentWebsiteSslStartDate != null) {
1369 currentWebsiteSslStartDateString = currentWebsiteSslStartDate.toString();
1372 if (currentWebsiteSslEndDate != null) {
1373 currentWebsiteSslEndDateString = currentWebsiteSslEndDate.toString();
1376 if (pinnedDomainSslStartDate != null) {
1377 pinnedDomainSslStartDateString = pinnedDomainSslStartDate.toString();
1380 if (pinnedDomainSslEndDate != null) {
1381 pinnedDomainSslEndDateString = pinnedDomainSslEndDate.toString();
1384 // Check to see if the pinned SSL certificate matches the current website certificate.
1385 if (!currentWebsiteIssuedToCName.equals(pinnedDomainSslIssuedToCNameString) || !currentWebsiteIssuedToOName.equals(pinnedDomainSslIssuedToONameString) ||
1386 !currentWebsiteIssuedToUName.equals(pinnedDomainSslIssuedToUNameString) || !currentWebsiteIssuedByCName.equals(pinnedDomainSslIssuedByCNameString) ||
1387 !currentWebsiteIssuedByOName.equals(pinnedDomainSslIssuedByONameString) || !currentWebsiteIssuedByUName.equals(pinnedDomainSslIssuedByUNameString) ||
1388 !currentWebsiteSslStartDateString.equals(pinnedDomainSslStartDateString) || !currentWebsiteSslEndDateString.equals(pinnedDomainSslEndDateString)) {
1389 // The pinned SSL certificate doesn't match the current domain certificate.
1390 //Display the pinned SSL certificate mismatch `AlertDialog`.
1391 AppCompatDialogFragment pinnedSslCertificateMismatchDialogFragment = new PinnedSslCertificateMismatchDialog();
1392 pinnedSslCertificateMismatchDialogFragment.show(getSupportFragmentManager(), getString(R.string.ssl_certificate_mismatch));
1398 // Handle SSL Certificate errors.
1400 public void onReceivedSslError(WebView view, SslErrorHandler handler, SslError error) {
1401 // Get the current website SSL certificate.
1402 SslCertificate currentWebsiteSslCertificate = error.getCertificate();
1404 // Extract the individual pieces of information from the current website SSL certificate.
1405 String currentWebsiteIssuedToCName = currentWebsiteSslCertificate.getIssuedTo().getCName();
1406 String currentWebsiteIssuedToOName = currentWebsiteSslCertificate.getIssuedTo().getOName();
1407 String currentWebsiteIssuedToUName = currentWebsiteSslCertificate.getIssuedTo().getUName();
1408 String currentWebsiteIssuedByCName = currentWebsiteSslCertificate.getIssuedBy().getCName();
1409 String currentWebsiteIssuedByOName = currentWebsiteSslCertificate.getIssuedBy().getOName();
1410 String currentWebsiteIssuedByUName = currentWebsiteSslCertificate.getIssuedBy().getUName();
1411 Date currentWebsiteSslStartDate = currentWebsiteSslCertificate.getValidNotBeforeDate();
1412 Date currentWebsiteSslEndDate = currentWebsiteSslCertificate.getValidNotAfterDate();
1414 // Proceed to the website if the current SSL website certificate matches the pinned domain certificate.
1415 if (pinnedDomainSslCertificate &&
1416 currentWebsiteIssuedToCName.equals(pinnedDomainSslIssuedToCNameString) && currentWebsiteIssuedToOName.equals(pinnedDomainSslIssuedToONameString) &&
1417 currentWebsiteIssuedToUName.equals(pinnedDomainSslIssuedToUNameString) && currentWebsiteIssuedByCName.equals(pinnedDomainSslIssuedByCNameString) &&
1418 currentWebsiteIssuedByOName.equals(pinnedDomainSslIssuedByONameString) && currentWebsiteIssuedByUName.equals(pinnedDomainSslIssuedByUNameString) &&
1419 currentWebsiteSslStartDate.equals(pinnedDomainSslStartDate) && currentWebsiteSslEndDate.equals(pinnedDomainSslEndDate)) {
1420 // An SSL certificate is pinned and matches the current domain certificate.
1421 // Proceed to the website without displaying an error.
1423 } else { // Either there isn't a pinned SSL certificate or it doesn't match the current website certificate.
1424 // Store `handler` so it can be accesses from `onSslErrorCancel()` and `onSslErrorProceed()`.
1425 sslErrorHandler = handler;
1427 // Display the SSL error `AlertDialog`.
1428 AppCompatDialogFragment sslCertificateErrorDialogFragment = SslCertificateErrorDialog.displayDialog(error);
1429 sslCertificateErrorDialogFragment.show(getSupportFragmentManager(), getString(R.string.ssl_certificate_error));
1434 // Load the website if not waiting for Orbot to connect.
1435 if (!waitingForOrbot) {
1436 loadUrl(formattedUrlString);
1441 protected void onNewIntent(Intent intent) {
1442 // Sets the new intent as the activity intent, so that any future `getIntent()`s pick up this one instead of creating a new activity.
1445 // Check to see if the intent contains a new URL.
1446 if (intent.getData() != null) {
1447 // Get the intent data and convert it to a string.
1448 final Uri intentUriData = intent.getData();
1449 formattedUrlString = intentUriData.toString();
1451 // Load the website.
1452 loadUrl(formattedUrlString);
1454 // Close the navigation drawer if it is open.
1455 if (drawerLayout.isDrawerVisible(GravityCompat.START)) {
1456 drawerLayout.closeDrawer(GravityCompat.START);
1459 // Close the bookmarks drawer if it is open.
1460 if (drawerLayout.isDrawerVisible(GravityCompat.END)) {
1461 drawerLayout.closeDrawer(GravityCompat.END);
1464 // Clear the keyboard if displayed and remove the focus on the urlTextBar if it has it.
1465 mainWebView.requestFocus();
1470 public void onRestart() {
1471 // Run the default commands.
1474 // Make sure Orbot is running if Privacy Browser is proxying through Orbot.
1475 if (proxyThroughOrbot) {
1476 // Request Orbot to start. If Orbot is already running no hard will be caused by this request.
1477 Intent orbotIntent = new Intent("org.torproject.android.intent.action.START");
1479 // Send the intent to the Orbot package.
1480 orbotIntent.setPackage("org.torproject.android");
1483 sendBroadcast(orbotIntent);
1486 // Apply the app settings if returning from the Settings activity..
1487 if (reapplyAppSettingsOnRestart) {
1488 // Apply the app settings.
1491 // Reload the webpage if displaying of images has been disabled in the Settings activity.
1492 if (reloadOnRestart) {
1493 // Reload `mainWebView`.
1494 mainWebView.reload();
1496 // Reset `reloadOnRestartBoolean`.
1497 reloadOnRestart = false;
1500 // Reset the return from settings flag.
1501 reapplyAppSettingsOnRestart = false;
1504 // Apply the domain settings if returning from the Domains activity.
1505 if (reapplyDomainSettingsOnRestart) {
1506 // Reapply the domain settings.
1507 applyDomainSettings(formattedUrlString, false, true);
1509 // Reset `reapplyDomainSettingsOnRestart`.
1510 reapplyDomainSettingsOnRestart = false;
1513 // Load the URL on restart to apply changes to night mode.
1514 if (loadUrlOnRestart) {
1515 // Load the current `formattedUrlString`.
1516 loadUrl(formattedUrlString);
1518 // Reset `loadUrlOnRestart.
1519 loadUrlOnRestart = false;
1522 // Update the bookmarks drawer if returning from the Bookmarks activity.
1523 if (restartFromBookmarksActivity) {
1524 // Close the bookmarks drawer.
1525 drawerLayout.closeDrawer(GravityCompat.END);
1527 // Reload the bookmarks drawer.
1528 loadBookmarksFolder();
1530 // Reset `restartFromBookmarksActivity`.
1531 restartFromBookmarksActivity = false;
1534 // Update the privacy icon. `true` runs `invalidateOptionsMenu` as the last step. This can be important if the screen was rotated.
1535 updatePrivacyIcons(true);
1538 // `onResume()` runs after `onStart()`, which runs after `onCreate()` and `onRestart()`.
1540 public void onResume() {
1541 // Run the default commands.
1544 // Resume JavaScript (if enabled).
1545 mainWebView.resumeTimers();
1547 // Resume `mainWebView`.
1548 mainWebView.onResume();
1550 // Resume the adView for the free flavor.
1551 if (BuildConfig.FLAVOR.contentEquals("free")) {
1552 BannerAd.resumeAd(adView);
1557 public void onPause() {
1558 // Pause `mainWebView`.
1559 mainWebView.onPause();
1561 // Stop all JavaScript.
1562 mainWebView.pauseTimers();
1564 // Pause the adView or it will continue to consume resources in the background on the free flavor.
1565 if (BuildConfig.FLAVOR.contentEquals("free")) {
1566 BannerAd.pauseAd(adView);
1573 public boolean onCreateOptionsMenu(Menu menu) {
1574 // Inflate the menu; this adds items to the action bar if it is present.
1575 getMenuInflater().inflate(R.menu.webview_options_menu, menu);
1577 // Set mainMenu so it can be used by `onOptionsItemSelected()` and `updatePrivacyIcons`.
1580 // Set the initial status of the privacy icons. `false` does not call `invalidateOptionsMenu` as the last step.
1581 updatePrivacyIcons(false);
1583 // Get handles for the menu items.
1584 MenuItem toggleFirstPartyCookiesMenuItem = menu.findItem(R.id.toggle_first_party_cookies);
1585 MenuItem toggleThirdPartyCookiesMenuItem = menu.findItem(R.id.toggle_third_party_cookies);
1586 MenuItem toggleDomStorageMenuItem = menu.findItem(R.id.toggle_dom_storage);
1587 MenuItem toggleSaveFormDataMenuItem = menu.findItem(R.id.toggle_save_form_data);
1589 // Only display third-party cookies if SDK >= 21
1590 toggleThirdPartyCookiesMenuItem.setVisible(Build.VERSION.SDK_INT >= 21);
1592 // Get the shared preference values. `this` references the current context.
1593 SharedPreferences sharedPreferences = PreferenceManager.getDefaultSharedPreferences(this);
1595 // Set the status of the additional app bar icons. The default is `false`.
1596 if (sharedPreferences.getBoolean("display_additional_app_bar_icons", false)) {
1597 toggleFirstPartyCookiesMenuItem.setShowAsAction(MenuItem.SHOW_AS_ACTION_IF_ROOM);
1598 toggleDomStorageMenuItem.setShowAsAction(MenuItem.SHOW_AS_ACTION_IF_ROOM);
1599 toggleSaveFormDataMenuItem.setShowAsAction(MenuItem.SHOW_AS_ACTION_IF_ROOM);
1600 } else { //Do not display the additional icons.
1601 toggleFirstPartyCookiesMenuItem.setShowAsAction(MenuItem.SHOW_AS_ACTION_NEVER);
1602 toggleDomStorageMenuItem.setShowAsAction(MenuItem.SHOW_AS_ACTION_NEVER);
1603 toggleSaveFormDataMenuItem.setShowAsAction(MenuItem.SHOW_AS_ACTION_NEVER);
1610 public boolean onPrepareOptionsMenu(Menu menu) {
1611 // Get handles for the menu items.
1612 MenuItem addOrEditDomain = menu.findItem(R.id.add_or_edit_domain);
1613 MenuItem toggleFirstPartyCookiesMenuItem = menu.findItem(R.id.toggle_first_party_cookies);
1614 MenuItem toggleThirdPartyCookiesMenuItem = menu.findItem(R.id.toggle_third_party_cookies);
1615 MenuItem toggleDomStorageMenuItem = menu.findItem(R.id.toggle_dom_storage);
1616 MenuItem toggleSaveFormDataMenuItem = menu.findItem(R.id.toggle_save_form_data);
1617 MenuItem clearDataMenuItem = menu.findItem(R.id.clear_data);
1618 MenuItem clearCookiesMenuItem = menu.findItem(R.id.clear_cookies);
1619 MenuItem clearDOMStorageMenuItem = menu.findItem(R.id.clear_dom_storage);
1620 MenuItem clearFormDataMenuItem = menu.findItem(R.id.clear_form_data);
1621 MenuItem fontSizeMenuItem = menu.findItem(R.id.font_size);
1622 MenuItem displayImagesMenuItem = menu.findItem(R.id.display_images);
1623 MenuItem refreshMenuItem = menu.findItem(R.id.refresh);
1625 // Set the text for the domain menu item.
1626 if (domainSettingsApplied) {
1627 addOrEditDomain.setTitle(R.string.edit_domain_settings);
1629 addOrEditDomain.setTitle(R.string.add_domain_settings);
1632 // Set the status of the menu item checkboxes.
1633 toggleFirstPartyCookiesMenuItem.setChecked(firstPartyCookiesEnabled);
1634 toggleThirdPartyCookiesMenuItem.setChecked(thirdPartyCookiesEnabled);
1635 toggleDomStorageMenuItem.setChecked(domStorageEnabled);
1636 toggleSaveFormDataMenuItem.setChecked(saveFormDataEnabled);
1637 displayImagesMenuItem.setChecked(mainWebView.getSettings().getLoadsImagesAutomatically());
1639 // Enable third-party cookies if first-party cookies are enabled.
1640 toggleThirdPartyCookiesMenuItem.setEnabled(firstPartyCookiesEnabled);
1642 // Enable `DOM Storage` if JavaScript is enabled.
1643 toggleDomStorageMenuItem.setEnabled(javaScriptEnabled);
1645 // Enable `Clear Cookies` if there are any.
1646 clearCookiesMenuItem.setEnabled(cookieManager.hasCookies());
1648 // Get a count of the number of files in the `Local Storage` directory.
1649 File localStorageDirectory = new File (privateDataDirectoryString + "/app_webview/Local Storage/");
1650 int localStorageDirectoryNumberOfFiles = 0;
1651 if (localStorageDirectory.exists()) {
1652 localStorageDirectoryNumberOfFiles = localStorageDirectory.list().length;
1655 // Get a count of the number of files in the `IndexedDB` directory.
1656 File indexedDBDirectory = new File (privateDataDirectoryString + "/app_webview/IndexedDB");
1657 int indexedDBDirectoryNumberOfFiles = 0;
1658 if (indexedDBDirectory.exists()) {
1659 indexedDBDirectoryNumberOfFiles = indexedDBDirectory.list().length;
1662 // Enable `Clear DOM Storage` if there is any.
1663 clearDOMStorageMenuItem.setEnabled(localStorageDirectoryNumberOfFiles > 0 || indexedDBDirectoryNumberOfFiles > 0);
1665 // Enable `Clear Form Data` is there is any.
1666 WebViewDatabase mainWebViewDatabase = WebViewDatabase.getInstance(this);
1667 clearFormDataMenuItem.setEnabled(mainWebViewDatabase.hasFormData());
1669 // Enable `Clear Data` if any of the submenu items are enabled.
1670 clearDataMenuItem.setEnabled(clearCookiesMenuItem.isEnabled() || clearDOMStorageMenuItem.isEnabled() || clearFormDataMenuItem.isEnabled());
1672 // Initialize font size variables.
1673 int fontSize = mainWebView.getSettings().getTextZoom();
1674 String fontSizeTitle;
1675 MenuItem selectedFontSizeMenuItem;
1677 // Prepare the font size title and current size menu item.
1680 fontSizeTitle = getString(R.string.font_size) + " - " + getString(R.string.twenty_five_percent);
1681 selectedFontSizeMenuItem = menu.findItem(R.id.font_size_twenty_five_percent);
1685 fontSizeTitle = getString(R.string.font_size) + " - " + getString(R.string.fifty_percent);
1686 selectedFontSizeMenuItem = menu.findItem(R.id.font_size_fifty_percent);
1690 fontSizeTitle = getString(R.string.font_size) + " - " + getString(R.string.seventy_five_percent);
1691 selectedFontSizeMenuItem = menu.findItem(R.id.font_size_seventy_five_percent);
1695 fontSizeTitle = getString(R.string.font_size) + " - " + getString(R.string.one_hundred_percent);
1696 selectedFontSizeMenuItem = menu.findItem(R.id.font_size_one_hundred_percent);
1700 fontSizeTitle = getString(R.string.font_size) + " - " + getString(R.string.one_hundred_twenty_five_percent);
1701 selectedFontSizeMenuItem = menu.findItem(R.id.font_size_one_hundred_twenty_five_percent);
1705 fontSizeTitle = getString(R.string.font_size) + " - " + getString(R.string.one_hundred_fifty_percent);
1706 selectedFontSizeMenuItem = menu.findItem(R.id.font_size_one_hundred_fifty_percent);
1710 fontSizeTitle = getString(R.string.font_size) + " - " + getString(R.string.one_hundred_seventy_five_percent);
1711 selectedFontSizeMenuItem = menu.findItem(R.id.font_size_one_hundred_seventy_five_percent);
1715 fontSizeTitle = getString(R.string.font_size) + " - " + getString(R.string.two_hundred_percent);
1716 selectedFontSizeMenuItem = menu.findItem(R.id.font_size_two_hundred_percent);
1720 fontSizeTitle = getString(R.string.font_size) + " - " + getString(R.string.one_hundred_percent);
1721 selectedFontSizeMenuItem = menu.findItem(R.id.font_size_one_hundred_percent);
1725 // Set the font size title and select the current size menu item.
1726 fontSizeMenuItem.setTitle(fontSizeTitle);
1727 selectedFontSizeMenuItem.setChecked(true);
1729 // Only show `Refresh` if `swipeToRefresh` is disabled.
1730 refreshMenuItem.setVisible(!swipeToRefreshEnabled);
1732 // Run all the other default commands.
1733 super.onPrepareOptionsMenu(menu);
1735 // Display the menu.
1740 // Remove Android Studio's warning about the dangers of using SetJavaScriptEnabled.
1741 @SuppressLint("SetJavaScriptEnabled")
1742 // removeAllCookies is deprecated, but it is required for API < 21.
1743 @SuppressWarnings("deprecation")
1744 public boolean onOptionsItemSelected(MenuItem menuItem) {
1745 // Get the selected menu item ID.
1746 int menuItemId = menuItem.getItemId();
1748 // Set the commands that relate to the menu entries.
1749 switch (menuItemId) {
1750 case R.id.add_or_edit_domain:
1751 if (domainSettingsApplied) { // Edit the current domain settings.
1752 // Reapply the domain settings on returning to `MainWebViewActivity`.
1753 reapplyDomainSettingsOnRestart = true;
1754 currentDomainName = "";
1756 // Create an intent to launch the domains activity.
1757 Intent domainsIntent = new Intent(this, DomainsActivity.class);
1759 // Put extra information instructing the domains activity to directly load the current domain and close on back instead of returning to the domains list.
1760 domainsIntent.putExtra("loadDomain", domainSettingsDatabaseId);
1761 domainsIntent.putExtra("closeOnBack", true);
1764 startActivity(domainsIntent);
1765 } else { // Add a new domain.
1766 // Apply the new domain settings on returning to `MainWebViewActivity`.
1767 reapplyDomainSettingsOnRestart = true;
1768 currentDomainName = "";
1770 // Get the current domain
1771 Uri currentUri = Uri.parse(formattedUrlString);
1772 String currentDomain = currentUri.getHost();
1774 // Initialize the database handler. The `0` specifies the database version, but that is ignored and set instead using a constant in `DomainsDatabaseHelper`.
1775 DomainsDatabaseHelper domainsDatabaseHelper = new DomainsDatabaseHelper(this, null, null, 0);
1777 // Create the domain and store the database ID.
1778 int newDomainDatabaseId = domainsDatabaseHelper.addDomain(currentDomain);
1780 // Create an intent to launch the domains activity.
1781 Intent domainsIntent = new Intent(this, DomainsActivity.class);
1783 // Put extra information instructing the domains activity to directly load the new domain and close on back instead of returning to the domains list.
1784 domainsIntent.putExtra("loadDomain", newDomainDatabaseId);
1785 domainsIntent.putExtra("closeOnBack", true);
1788 startActivity(domainsIntent);
1792 case R.id.toggle_javascript:
1793 // Switch the status of javaScriptEnabled.
1794 javaScriptEnabled = !javaScriptEnabled;
1796 // Apply the new JavaScript status.
1797 mainWebView.getSettings().setJavaScriptEnabled(javaScriptEnabled);
1799 // Update the privacy icon. `true` runs `invalidateOptionsMenu` as the last step.
1800 updatePrivacyIcons(true);
1802 // Display a `Snackbar`.
1803 if (javaScriptEnabled) { // JavaScrip is enabled.
1804 Snackbar.make(findViewById(R.id.main_webview), R.string.javascript_enabled, Snackbar.LENGTH_SHORT).show();
1805 } else if (firstPartyCookiesEnabled) { // JavaScript is disabled, but first-party cookies are enabled.
1806 Snackbar.make(findViewById(R.id.main_webview), R.string.javascript_disabled, Snackbar.LENGTH_SHORT).show();
1807 } else { // Privacy mode.
1808 Snackbar.make(findViewById(R.id.main_webview), R.string.privacy_mode, Snackbar.LENGTH_SHORT).show();
1811 // Reload the WebView.
1812 mainWebView.reload();
1815 case R.id.toggle_first_party_cookies:
1816 // Switch the status of firstPartyCookiesEnabled.
1817 firstPartyCookiesEnabled = !firstPartyCookiesEnabled;
1819 // Update the menu checkbox.
1820 menuItem.setChecked(firstPartyCookiesEnabled);
1822 // Apply the new cookie status.
1823 cookieManager.setAcceptCookie(firstPartyCookiesEnabled);
1825 // Update the privacy icon. `true` runs `invalidateOptionsMenu` as the last step.
1826 updatePrivacyIcons(true);
1828 // Display a `Snackbar`.
1829 if (firstPartyCookiesEnabled) { // First-party cookies are enabled.
1830 Snackbar.make(findViewById(R.id.main_webview), R.string.first_party_cookies_enabled, Snackbar.LENGTH_SHORT).show();
1831 } else if (javaScriptEnabled){ // JavaScript is still enabled.
1832 Snackbar.make(findViewById(R.id.main_webview), R.string.first_party_cookies_disabled, Snackbar.LENGTH_SHORT).show();
1833 } else { // Privacy mode.
1834 Snackbar.make(findViewById(R.id.main_webview), R.string.privacy_mode, Snackbar.LENGTH_SHORT).show();
1837 // Reload the WebView.
1838 mainWebView.reload();
1841 case R.id.toggle_third_party_cookies:
1842 if (Build.VERSION.SDK_INT >= 21) {
1843 // Switch the status of thirdPartyCookiesEnabled.
1844 thirdPartyCookiesEnabled = !thirdPartyCookiesEnabled;
1846 // Update the menu checkbox.
1847 menuItem.setChecked(thirdPartyCookiesEnabled);
1849 // Apply the new cookie status.
1850 cookieManager.setAcceptThirdPartyCookies(mainWebView, thirdPartyCookiesEnabled);
1852 // Display a `Snackbar`.
1853 if (thirdPartyCookiesEnabled) {
1854 Snackbar.make(findViewById(R.id.main_webview), R.string.third_party_cookies_enabled, Snackbar.LENGTH_SHORT).show();
1856 Snackbar.make(findViewById(R.id.main_webview), R.string.third_party_cookies_disabled, Snackbar.LENGTH_SHORT).show();
1859 // Reload the WebView.
1860 mainWebView.reload();
1861 } // Else do nothing because SDK < 21.
1864 case R.id.toggle_dom_storage:
1865 // Switch the status of domStorageEnabled.
1866 domStorageEnabled = !domStorageEnabled;
1868 // Update the menu checkbox.
1869 menuItem.setChecked(domStorageEnabled);
1871 // Apply the new DOM Storage status.
1872 mainWebView.getSettings().setDomStorageEnabled(domStorageEnabled);
1874 // Update the privacy icon. `true` runs `invalidateOptionsMenu` as the last step.
1875 updatePrivacyIcons(true);
1877 // Display a `Snackbar`.
1878 if (domStorageEnabled) {
1879 Snackbar.make(findViewById(R.id.main_webview), R.string.dom_storage_enabled, Snackbar.LENGTH_SHORT).show();
1881 Snackbar.make(findViewById(R.id.main_webview), R.string.dom_storage_disabled, Snackbar.LENGTH_SHORT).show();
1884 // Reload the WebView.
1885 mainWebView.reload();
1888 case R.id.toggle_save_form_data:
1889 // Switch the status of saveFormDataEnabled.
1890 saveFormDataEnabled = !saveFormDataEnabled;
1892 // Update the menu checkbox.
1893 menuItem.setChecked(saveFormDataEnabled);
1895 // Apply the new form data status.
1896 mainWebView.getSettings().setSaveFormData(saveFormDataEnabled);
1898 // Display a `Snackbar`.
1899 if (saveFormDataEnabled) {
1900 Snackbar.make(findViewById(R.id.main_webview), R.string.form_data_enabled, Snackbar.LENGTH_SHORT).show();
1902 Snackbar.make(findViewById(R.id.main_webview), R.string.form_data_disabled, Snackbar.LENGTH_SHORT).show();
1905 // Update the privacy icon. `true` runs `invalidateOptionsMenu` as the last step.
1906 updatePrivacyIcons(true);
1908 // Reload the WebView.
1909 mainWebView.reload();
1912 case R.id.clear_cookies:
1913 Snackbar.make(findViewById(R.id.main_webview), R.string.cookies_deleted, Snackbar.LENGTH_LONG)
1914 .setAction(R.string.undo, v -> {
1915 // Do nothing because everything will be handled by `onDismissed()` below.
1917 .addCallback(new Snackbar.Callback() {
1919 public void onDismissed(Snackbar snackbar, int event) {
1921 // The user pushed the `Undo` button.
1922 case Snackbar.Callback.DISMISS_EVENT_ACTION:
1926 // The `Snackbar` was dismissed without the `Undo` button being pushed.
1928 // `cookieManager.removeAllCookie()` varies by SDK.
1929 if (Build.VERSION.SDK_INT < 21) {
1930 cookieManager.removeAllCookie();
1932 // `null` indicates no callback.
1933 cookieManager.removeAllCookies(null);
1941 case R.id.clear_dom_storage:
1942 Snackbar.make(findViewById(R.id.main_webview), R.string.dom_storage_deleted, Snackbar.LENGTH_LONG)
1943 .setAction(R.string.undo, v -> {
1944 // Do nothing because everything will be handled by `onDismissed()` below.
1946 .addCallback(new Snackbar.Callback() {
1948 public void onDismissed(Snackbar snackbar, int event) {
1950 // The user pushed the `Undo` button.
1951 case Snackbar.Callback.DISMISS_EVENT_ACTION:
1955 // The `Snackbar` was dismissed without the `Undo` button being pushed.
1957 // Delete the DOM Storage.
1958 WebStorage webStorage = WebStorage.getInstance();
1959 webStorage.deleteAllData();
1961 // Manually delete the DOM storage files and directories.
1963 // A `String[]` must be used because the directory contains a space and `Runtime.exec` will otherwise not escape the string correctly.
1964 privacyBrowserRuntime.exec(new String[] {"rm", "-rf", privateDataDirectoryString + "/app_webview/Local Storage/"});
1966 // Multiple commands must be used because `Runtime.exec()` does not like `*`.
1967 privacyBrowserRuntime.exec("rm -rf " + privateDataDirectoryString + "/app_webview/IndexedDB");
1968 privacyBrowserRuntime.exec("rm -f " + privateDataDirectoryString + "/app_webview/QuotaManager");
1969 privacyBrowserRuntime.exec("rm -f " + privateDataDirectoryString + "/app_webview/QuotaManager-journal");
1970 privacyBrowserRuntime.exec("rm -rf " + privateDataDirectoryString + "/app_webview/databases");
1971 } catch (IOException e) {
1972 // Do nothing if an error is thrown.
1980 case R.id.clear_form_data:
1981 Snackbar.make(findViewById(R.id.main_webview), R.string.form_data_deleted, Snackbar.LENGTH_LONG)
1982 .setAction(R.string.undo, v -> {
1983 // Do nothing because everything will be handled by `onDismissed()` below.
1985 .addCallback(new Snackbar.Callback() {
1987 public void onDismissed(Snackbar snackbar, int event) {
1989 // The user pushed the `Undo` button.
1990 case Snackbar.Callback.DISMISS_EVENT_ACTION:
1994 // The `Snackbar` was dismissed without the `Undo` button being pushed.
1996 // Delete the form data.
1997 WebViewDatabase mainWebViewDatabase = WebViewDatabase.getInstance(getApplicationContext());
1998 mainWebViewDatabase.clearFormData();
2005 case R.id.font_size_twenty_five_percent:
2006 mainWebView.getSettings().setTextZoom(25);
2009 case R.id.font_size_fifty_percent:
2010 mainWebView.getSettings().setTextZoom(50);
2013 case R.id.font_size_seventy_five_percent:
2014 mainWebView.getSettings().setTextZoom(75);
2017 case R.id.font_size_one_hundred_percent:
2018 mainWebView.getSettings().setTextZoom(100);
2021 case R.id.font_size_one_hundred_twenty_five_percent:
2022 mainWebView.getSettings().setTextZoom(125);
2025 case R.id.font_size_one_hundred_fifty_percent:
2026 mainWebView.getSettings().setTextZoom(150);
2029 case R.id.font_size_one_hundred_seventy_five_percent:
2030 mainWebView.getSettings().setTextZoom(175);
2033 case R.id.font_size_two_hundred_percent:
2034 mainWebView.getSettings().setTextZoom(200);
2037 case R.id.display_images:
2038 if (mainWebView.getSettings().getLoadsImagesAutomatically()) { // Images are currently loaded automatically.
2039 mainWebView.getSettings().setLoadsImagesAutomatically(false);
2040 mainWebView.reload();
2041 } else { // Images are not currently loaded automatically.
2042 mainWebView.getSettings().setLoadsImagesAutomatically(true);
2045 // Set `onTheFlyDisplayImagesSet`.
2046 onTheFlyDisplayImagesSet = true;
2050 // Setup the share string.
2051 String shareString = webViewTitle + " – " + urlTextBox.getText().toString();
2053 // Create the share intent.
2054 Intent shareIntent = new Intent();
2055 shareIntent.setAction(Intent.ACTION_SEND);
2056 shareIntent.putExtra(Intent.EXTRA_TEXT, shareString);
2057 shareIntent.setType("text/plain");
2060 startActivity(Intent.createChooser(shareIntent, "Share URL"));
2063 case R.id.find_on_page:
2064 // Hide the URL app bar.
2065 supportAppBar.setVisibility(View.GONE);
2067 // Show the Find on Page `RelativeLayout`.
2068 findOnPageLinearLayout.setVisibility(View.VISIBLE);
2070 // Display the keyboard. We have to wait 200 ms before running the command to work around a bug in Android.
2071 // http://stackoverflow.com/questions/5520085/android-show-softkeyboard-with-showsoftinput-is-not-working
2072 findOnPageEditText.postDelayed(() -> {
2073 // Set the focus on `findOnPageEditText`.
2074 findOnPageEditText.requestFocus();
2076 // Display the keyboard. `0` sets no input flags.
2077 inputMethodManager.showSoftInput(findOnPageEditText, 0);
2082 // Get a `PrintManager` instance.
2083 PrintManager printManager = (PrintManager) getSystemService(Context.PRINT_SERVICE);
2085 // Convert `mainWebView` to `printDocumentAdapter`.
2086 PrintDocumentAdapter printDocumentAdapter = mainWebView.createPrintDocumentAdapter();
2088 // Remove the lint error below that `printManager` might be `null`.
2089 assert printManager != null;
2091 // Print the document. The print attributes are `null`.
2092 printManager.print(getString(R.string.privacy_browser_web_page), printDocumentAdapter, null);
2095 case R.id.view_source:
2096 // Launch the Vew Source activity.
2097 Intent viewSourceIntent = new Intent(this, ViewSourceActivity.class);
2098 startActivity(viewSourceIntent);
2101 case R.id.add_to_homescreen:
2102 // Show the `CreateHomeScreenShortcutDialog` `AlertDialog` and name this instance `R.string.create_shortcut`.
2103 AppCompatDialogFragment createHomeScreenShortcutDialogFragment = new CreateHomeScreenShortcutDialog();
2104 createHomeScreenShortcutDialogFragment.show(getSupportFragmentManager(), getString(R.string.create_shortcut));
2106 //Everything else will be handled by `CreateHomeScreenShortcutDialog` and the associated listener below.
2110 mainWebView.reload();
2114 // Don't consume the event.
2115 return super.onOptionsItemSelected(menuItem);
2119 // removeAllCookies is deprecated, but it is required for API < 21.
2120 @SuppressWarnings("deprecation")
2122 public boolean onNavigationItemSelected(@NonNull MenuItem menuItem) {
2123 int menuItemId = menuItem.getItemId();
2125 switch (menuItemId) {
2131 if (mainWebView.canGoBack()) {
2132 // Set `navigatingHistory` so that the domain settings are applied when the new URL is loaded.
2133 navigatingHistory = true;
2135 // Load the previous website in the history.
2136 mainWebView.goBack();
2141 if (mainWebView.canGoForward()) {
2142 // Set `navigatingHistory` so that the domain settings are applied when the new URL is loaded.
2143 navigatingHistory = true;
2145 // Load the next website in the history.
2146 mainWebView.goForward();
2151 // Get the `WebBackForwardList`.
2152 WebBackForwardList webBackForwardList = mainWebView.copyBackForwardList();
2154 // Show the `UrlHistoryDialog` `AlertDialog` and name this instance `R.string.history`. `this` is the `Context`.
2155 AppCompatDialogFragment urlHistoryDialogFragment = UrlHistoryDialog.loadBackForwardList(this, webBackForwardList);
2156 urlHistoryDialogFragment.show(getSupportFragmentManager(), getString(R.string.history));
2159 case R.id.downloads:
2160 // Launch the system Download Manager.
2161 Intent downloadManagerIntent = new Intent(DownloadManager.ACTION_VIEW_DOWNLOADS);
2163 // Launch as a new task so that Download Manager and Privacy Browser show as separate windows in the recent tasks list.
2164 downloadManagerIntent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
2166 startActivity(downloadManagerIntent);
2170 // Set the flag to reapply the domain settings on restart when returning from Domain Settings.
2171 reapplyDomainSettingsOnRestart = true;
2172 currentDomainName = "";
2174 // Launch `DomainsActivity`.
2175 Intent domainsIntent = new Intent(this, DomainsActivity.class);
2176 startActivity(domainsIntent);
2180 // Set the flag to reapply app settings on restart when returning from Settings.
2181 reapplyAppSettingsOnRestart = true;
2183 // Set the flag to reapply the domain settings on restart when returning from Settings.
2184 reapplyDomainSettingsOnRestart = true;
2185 currentDomainName = "";
2187 // Launch `SettingsActivity`.
2188 Intent settingsIntent = new Intent(this, SettingsActivity.class);
2189 startActivity(settingsIntent);
2193 // Launch `GuideActivity`.
2194 Intent guideIntent = new Intent(this, GuideActivity.class);
2195 startActivity(guideIntent);
2199 // Launch `AboutActivity`.
2200 Intent aboutIntent = new Intent(this, AboutActivity.class);
2201 startActivity(aboutIntent);
2204 case R.id.clearAndExit:
2205 // Get a handle for `sharedPreferences`. `this` references the current context.
2206 SharedPreferences sharedPreferences = PreferenceManager.getDefaultSharedPreferences(this);
2208 boolean clearEverything = sharedPreferences.getBoolean("clear_everything", true);
2211 if (clearEverything || sharedPreferences.getBoolean("clear_cookies", true)) {
2212 // The command to remove cookies changed slightly in API 21.
2213 if (Build.VERSION.SDK_INT >= 21) {
2214 cookieManager.removeAllCookies(null);
2216 cookieManager.removeAllCookie();
2219 // Manually delete the cookies database, as `CookieManager` sometimes will not flush its changes to disk before `System.exit(0)` is run.
2221 // We have to use two commands because `Runtime.exec()` does not like `*`.
2222 privacyBrowserRuntime.exec("rm -f " + privateDataDirectoryString + "/app_webview/Cookies");
2223 privacyBrowserRuntime.exec("rm -f " + privateDataDirectoryString + "/app_webview/Cookies-journal");
2224 } catch (IOException e) {
2225 // Do nothing if an error is thrown.
2229 // Clear DOM storage.
2230 if (clearEverything || sharedPreferences.getBoolean("clear_dom_storage", true)) {
2231 // Ask `WebStorage` to clear the DOM storage.
2232 WebStorage webStorage = WebStorage.getInstance();
2233 webStorage.deleteAllData();
2235 // Manually delete the DOM storage files and directories, as `WebStorage` sometimes will not flush its changes to disk before `System.exit(0)` is run.
2237 // A `String[]` must be used because the directory contains a space and `Runtime.exec` will otherwise not escape the string correctly.
2238 privacyBrowserRuntime.exec(new String[] {"rm", "-rf", privateDataDirectoryString + "/app_webview/Local Storage/"});
2240 // Multiple commands must be used because `Runtime.exec()` does not like `*`.
2241 privacyBrowserRuntime.exec("rm -rf " + privateDataDirectoryString + "/app_webview/IndexedDB");
2242 privacyBrowserRuntime.exec("rm -f " + privateDataDirectoryString + "/app_webview/QuotaManager");
2243 privacyBrowserRuntime.exec("rm -f " + privateDataDirectoryString + "/app_webview/QuotaManager-journal");
2244 privacyBrowserRuntime.exec("rm -rf " + privateDataDirectoryString + "/app_webview/databases");
2245 } catch (IOException e) {
2246 // Do nothing if an error is thrown.
2251 if (clearEverything || sharedPreferences.getBoolean("clear_form_data", true)) {
2252 WebViewDatabase webViewDatabase = WebViewDatabase.getInstance(this);
2253 webViewDatabase.clearFormData();
2255 // Manually delete the form data database, as `WebViewDatabase` sometimes will not flush its changes to disk before `System.exit(0)` is run.
2257 // We have to use a `String[]` because the database contains a space and `Runtime.exec` will not escape the string correctly otherwise.
2258 privacyBrowserRuntime.exec(new String[] {"rm", "-f", privateDataDirectoryString + "/app_webview/Web Data"});
2259 privacyBrowserRuntime.exec(new String[] {"rm", "-f", privateDataDirectoryString + "/app_webview/Web Data-journal"});
2260 } catch (IOException e) {
2261 // Do nothing if an error is thrown.
2266 if (clearEverything || sharedPreferences.getBoolean("clear_cache", true)) {
2267 // `true` includes disk files.
2268 mainWebView.clearCache(true);
2270 // Manually delete the cache directories.
2272 // Delete the main cache directory.
2273 privacyBrowserRuntime.exec("rm -rf " + privateDataDirectoryString + "/cache");
2275 // Delete the secondary `Service Worker` cache directory.
2276 // A `String[]` must be used because the directory contains a space and `Runtime.exec` will not escape the string correctly otherwise.
2277 privacyBrowserRuntime.exec(new String[] {"rm", "-rf", privateDataDirectoryString + "/app_webview/Service Worker/"});
2278 } catch (IOException e) {
2279 // Do nothing if an error is thrown.
2283 // Clear SSL certificate preferences.
2284 mainWebView.clearSslPreferences();
2286 // Clear the back/forward history.
2287 mainWebView.clearHistory();
2289 // Clear `formattedUrlString`.
2290 formattedUrlString = null;
2292 // Clear `customHeaders`.
2293 customHeaders.clear();
2295 // Detach all views from `mainWebViewRelativeLayout`.
2296 mainWebViewRelativeLayout.removeAllViews();
2298 // Destroy the internal state of `mainWebView`.
2299 mainWebView.destroy();
2301 // Manually delete the `app_webview` folder, which contains the cookies, DOM storage, form data, and `Service Worker` cache.
2302 // See `https://code.google.com/p/android/issues/detail?id=233826&thanks=233826&ts=1486670530`.
2303 if (clearEverything) {
2305 privacyBrowserRuntime.exec("rm -rf " + privateDataDirectoryString + "/app_webview");
2306 } catch (IOException e) {
2307 // Do nothing if an error is thrown.
2311 // Close Privacy Browser. `finishAndRemoveTask` also removes Privacy Browser from the recent app list.
2312 if (Build.VERSION.SDK_INT >= 21) {
2313 finishAndRemoveTask();
2318 // Remove the terminated program from RAM. The status code is `0`.
2323 // Close the navigation drawer.
2324 drawerLayout.closeDrawer(GravityCompat.START);
2329 public void onPostCreate(Bundle savedInstanceState) {
2330 super.onPostCreate(savedInstanceState);
2332 // Sync the state of the DrawerToggle after onRestoreInstanceState has finished.
2333 drawerToggle.syncState();
2337 public void onConfigurationChanged(Configuration newConfig) {
2338 super.onConfigurationChanged(newConfig);
2340 // Reload the ad for the free flavor if we are not in full screen mode.
2341 if (BuildConfig.FLAVOR.contentEquals("free") && !inFullScreenBrowsingMode) {
2343 BannerAd.reloadAfterRotate(adView, getApplicationContext(), getString(R.string.ad_id));
2345 // Reinitialize the `adView` variable, as the `View` will have been removed and re-added by `BannerAd.reloadAfterRotate()`.
2346 adView = findViewById(R.id.adview);
2349 // `invalidateOptionsMenu` should recalculate the number of action buttons from the menu to display on the app bar, but it doesn't because of the this bug:
2350 // https://code.google.com/p/android/issues/detail?id=20493#c8
2351 // ActivityCompat.invalidateOptionsMenu(this);
2355 public void onCreateContextMenu(ContextMenu menu, View view, ContextMenu.ContextMenuInfo menuInfo) {
2356 // Store the `HitTestResult`.
2357 final WebView.HitTestResult hitTestResult = mainWebView.getHitTestResult();
2360 final String imageUrl;
2361 final String linkUrl;
2363 // Get a handle for the `ClipboardManager`.
2364 final ClipboardManager clipboardManager = (ClipboardManager) getSystemService(CLIPBOARD_SERVICE);
2366 // Remove the lint errors below that `clipboardManager` might be `null`.
2367 assert clipboardManager != null;
2369 switch (hitTestResult.getType()) {
2370 // `SRC_ANCHOR_TYPE` is a link.
2371 case WebView.HitTestResult.SRC_ANCHOR_TYPE:
2372 // Get the target URL.
2373 linkUrl = hitTestResult.getExtra();
2375 // Set the target URL as the title of the `ContextMenu`.
2376 menu.setHeaderTitle(linkUrl);
2378 // Add a Load URL entry.
2379 menu.add(R.string.load_url).setOnMenuItemClickListener((MenuItem item) -> {
2384 // Add a Copy URL entry.
2385 menu.add(R.string.copy_url).setOnMenuItemClickListener((MenuItem item) -> {
2386 // Save the link URL in a `ClipData`.
2387 ClipData srcAnchorTypeClipData = ClipData.newPlainText(getString(R.string.url), linkUrl);
2389 // Set the `ClipData` as the clipboard's primary clip.
2390 clipboardManager.setPrimaryClip(srcAnchorTypeClipData);
2394 // Add a Download URL entry.
2395 menu.add(R.string.download_url).setOnMenuItemClickListener((MenuItem item) -> {
2396 // Check to see if the WRITE_EXTERNAL_STORAGE permission has already been granted.
2397 if (ContextCompat.checkSelfPermission(this, Manifest.permission.WRITE_EXTERNAL_STORAGE) == PackageManager.PERMISSION_DENIED) {
2398 // The WRITE_EXTERNAL_STORAGE permission needs to be requested.
2400 // Store the variables for future use by `onRequestPermissionsResult()`.
2401 downloadUrl = linkUrl;
2402 downloadContentDisposition = "none";
2403 downloadContentLength = -1;
2405 // Show a dialog if the user has previously denied the permission.
2406 if (ActivityCompat.shouldShowRequestPermissionRationale(this, Manifest.permission.WRITE_EXTERNAL_STORAGE)) { // Show a dialog explaining the request first.
2407 // Get a handle for the download location permission alert dialog and set the download type to DOWNLOAD_FILE.
2408 DialogFragment downloadLocationPermissionDialogFragment = DownloadLocationPermissionDialog.downloadType(DownloadLocationPermissionDialog.DOWNLOAD_FILE);
2410 // Show the download location permission alert dialog. The permission will be requested when the the dialog is closed.
2411 downloadLocationPermissionDialogFragment.show(getFragmentManager(), getString(R.string.download_location));
2412 } else { // Show the permission request directly.
2413 // Request the permission. The download dialog will be launched by `onRequestPermissionResult()`.
2414 ActivityCompat.requestPermissions(this, new String[] {Manifest.permission.WRITE_EXTERNAL_STORAGE}, DOWNLOAD_FILE_REQUEST_CODE);
2416 } else { // The WRITE_EXTERNAL_STORAGE permission has already been granted.
2417 // Get a handle for the download file alert dialog.
2418 AppCompatDialogFragment downloadFileDialogFragment = DownloadFileDialog.fromUrl(linkUrl, "none", -1);
2420 // Show the download file alert dialog.
2421 downloadFileDialogFragment.show(getSupportFragmentManager(), getString(R.string.download));
2426 // Add a `Cancel` entry, which by default closes the `ContextMenu`.
2427 menu.add(R.string.cancel);
2430 case WebView.HitTestResult.EMAIL_TYPE:
2431 // Get the target URL.
2432 linkUrl = hitTestResult.getExtra();
2434 // Set the target URL as the title of the `ContextMenu`.
2435 menu.setHeaderTitle(linkUrl);
2437 // Add a `Write Email` entry.
2438 menu.add(R.string.write_email).setOnMenuItemClickListener(item -> {
2439 // We use `ACTION_SENDTO` instead of `ACTION_SEND` so that only email programs are launched.
2440 Intent emailIntent = new Intent(Intent.ACTION_SENDTO);
2442 // Parse the url and set it as the data for the `Intent`.
2443 emailIntent.setData(Uri.parse("mailto:" + linkUrl));
2445 // `FLAG_ACTIVITY_NEW_TASK` opens the email program in a new task instead as part of Privacy Browser.
2446 emailIntent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
2449 startActivity(emailIntent);
2453 // Add a `Copy Email Address` entry.
2454 menu.add(R.string.copy_email_address).setOnMenuItemClickListener(item -> {
2455 // Save the email address in a `ClipData`.
2456 ClipData srcEmailTypeClipData = ClipData.newPlainText(getString(R.string.email_address), linkUrl);
2458 // Set the `ClipData` as the clipboard's primary clip.
2459 clipboardManager.setPrimaryClip(srcEmailTypeClipData);
2463 // Add a `Cancel` entry, which by default closes the `ContextMenu`.
2464 menu.add(R.string.cancel);
2467 // `IMAGE_TYPE` is an image.
2468 case WebView.HitTestResult.IMAGE_TYPE:
2469 // Get the image URL.
2470 imageUrl = hitTestResult.getExtra();
2472 // Set the image URL as the title of the `ContextMenu`.
2473 menu.setHeaderTitle(imageUrl);
2475 // Add a `View Image` entry.
2476 menu.add(R.string.view_image).setOnMenuItemClickListener(item -> {
2481 // Add a `Download Image` entry.
2482 menu.add(R.string.download_image).setOnMenuItemClickListener((MenuItem item) -> {
2483 // Check to see if the WRITE_EXTERNAL_STORAGE permission has already been granted.
2484 if (ContextCompat.checkSelfPermission(this, Manifest.permission.WRITE_EXTERNAL_STORAGE) == PackageManager.PERMISSION_DENIED) {
2485 // The WRITE_EXTERNAL_STORAGE permission needs to be requested.
2487 // Store the image URL for use by `onRequestPermissionResult()`.
2488 downloadImageUrl = imageUrl;
2490 // Show a dialog if the user has previously denied the permission.
2491 if (ActivityCompat.shouldShowRequestPermissionRationale(this, Manifest.permission.WRITE_EXTERNAL_STORAGE)) { // Show a dialog explaining the request first.
2492 // Get a handle for the download location permission alert dialog and set the download type to DOWNLOAD_IMAGE.
2493 DialogFragment downloadLocationPermissionDialogFragment = DownloadLocationPermissionDialog.downloadType(DownloadLocationPermissionDialog.DOWNLOAD_IMAGE);
2495 // Show the download location permission alert dialog. The permission will be requested when the dialog is closed.
2496 downloadLocationPermissionDialogFragment.show(getFragmentManager(), getString(R.string.download_location));
2497 } else { // Show the permission request directly.
2498 // Request the permission. The download dialog will be launched by `onRequestPermissionResult().
2499 ActivityCompat.requestPermissions(this, new String[] {Manifest.permission.WRITE_EXTERNAL_STORAGE}, DOWNLOAD_IMAGE_REQUEST_CODE);
2501 } else { // The WRITE_EXTERNAL_STORAGE permission has already been granted.
2502 // Get a handle for the download image alert dialog.
2503 AppCompatDialogFragment downloadImageDialogFragment = DownloadImageDialog.imageUrl(imageUrl);
2505 // Show the download image alert dialog.
2506 downloadImageDialogFragment.show(getSupportFragmentManager(), getString(R.string.download));
2511 // Add a `Copy URL` entry.
2512 menu.add(R.string.copy_url).setOnMenuItemClickListener(item -> {
2513 // Save the image URL in a `ClipData`.
2514 ClipData srcImageTypeClipData = ClipData.newPlainText(getString(R.string.url), imageUrl);
2516 // Set the `ClipData` as the clipboard's primary clip.
2517 clipboardManager.setPrimaryClip(srcImageTypeClipData);
2521 // Add a `Cancel` entry, which by default closes the `ContextMenu`.
2522 menu.add(R.string.cancel);
2526 // `SRC_IMAGE_ANCHOR_TYPE` is an image that is also a link.
2527 case WebView.HitTestResult.SRC_IMAGE_ANCHOR_TYPE:
2528 // Get the image URL.
2529 imageUrl = hitTestResult.getExtra();
2531 // Set the image URL as the title of the `ContextMenu`.
2532 menu.setHeaderTitle(imageUrl);
2534 // Add a `View Image` entry.
2535 menu.add(R.string.view_image).setOnMenuItemClickListener(item -> {
2540 // Add a `Download Image` entry.
2541 menu.add(R.string.download_image).setOnMenuItemClickListener((MenuItem item) -> {
2542 // Check to see if the WRITE_EXTERNAL_STORAGE permission has already been granted.
2543 if (ContextCompat.checkSelfPermission(this, Manifest.permission.WRITE_EXTERNAL_STORAGE) == PackageManager.PERMISSION_DENIED) {
2544 // The WRITE_EXTERNAL_STORAGE permission needs to be requested.
2546 // Store the image URL for use by `onRequestPermissionResult()`.
2547 downloadImageUrl = imageUrl;
2549 // Show a dialog if the user has previously denied the permission.
2550 if (ActivityCompat.shouldShowRequestPermissionRationale(this, Manifest.permission.WRITE_EXTERNAL_STORAGE)) { // Show a dialog explaining the request first.
2551 // Get a handle for the download location permission alert dialog and set the download type to DOWNLOAD_IMAGE.
2552 DialogFragment downloadLocationPermissionDialogFragment = DownloadLocationPermissionDialog.downloadType(DownloadLocationPermissionDialog.DOWNLOAD_IMAGE);
2554 // Show the download location permission alert dialog. The permission will be requested when the dialog is closed.
2555 downloadLocationPermissionDialogFragment.show(getFragmentManager(), getString(R.string.download_location));
2556 } else { // Show the permission request directly.
2557 // Request the permission. The download dialog will be launched by `onRequestPermissionResult().
2558 ActivityCompat.requestPermissions(this, new String[] {Manifest.permission.WRITE_EXTERNAL_STORAGE}, DOWNLOAD_IMAGE_REQUEST_CODE);
2560 } else { // The WRITE_EXTERNAL_STORAGE permission has already been granted.
2561 // Get a handle for the download image alert dialog.
2562 AppCompatDialogFragment downloadImageDialogFragment = DownloadImageDialog.imageUrl(imageUrl);
2564 // Show the download image alert dialog.
2565 downloadImageDialogFragment.show(getSupportFragmentManager(), getString(R.string.download));
2570 // Add a `Copy URL` entry.
2571 menu.add(R.string.copy_url).setOnMenuItemClickListener(item -> {
2572 // Save the image URL in a `ClipData`.
2573 ClipData srcImageAnchorTypeClipData = ClipData.newPlainText(getString(R.string.url), imageUrl);
2575 // Set the `ClipData` as the clipboard's primary clip.
2576 clipboardManager.setPrimaryClip(srcImageAnchorTypeClipData);
2580 // Add a `Cancel` entry, which by default closes the `ContextMenu`.
2581 menu.add(R.string.cancel);
2587 public void onCreateBookmark(AppCompatDialogFragment dialogFragment) {
2588 // Get the `EditTexts` from the `dialogFragment`.
2589 EditText createBookmarkNameEditText = dialogFragment.getDialog().findViewById(R.id.create_bookmark_name_edittext);
2590 EditText createBookmarkUrlEditText = dialogFragment.getDialog().findViewById(R.id.create_bookmark_url_edittext);
2592 // Extract the strings from the `EditTexts`.
2593 String bookmarkNameString = createBookmarkNameEditText.getText().toString();
2594 String bookmarkUrlString = createBookmarkUrlEditText.getText().toString();
2596 // Convert the favoriteIcon Bitmap to a byte array. `0` is for lossless compression (the only option for a PNG).