2 * Copyright © 2015-2021 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.annotation.SuppressLint;
25 import android.app.Activity;
26 import android.app.Dialog;
27 import android.app.DownloadManager;
28 import android.app.SearchManager;
29 import android.content.ActivityNotFoundException;
30 import android.content.BroadcastReceiver;
31 import android.content.ClipData;
32 import android.content.ClipboardManager;
33 import android.content.Context;
34 import android.content.Intent;
35 import android.content.IntentFilter;
36 import android.content.SharedPreferences;
37 import android.content.pm.PackageManager;
38 import android.content.res.Configuration;
39 import android.database.Cursor;
40 import android.graphics.Bitmap;
41 import android.graphics.BitmapFactory;
42 import android.graphics.Typeface;
43 import android.graphics.drawable.BitmapDrawable;
44 import android.graphics.drawable.Drawable;
45 import android.net.Uri;
46 import android.net.http.SslCertificate;
47 import android.net.http.SslError;
48 import android.os.AsyncTask;
49 import android.os.Build;
50 import android.os.Bundle;
51 import android.os.Environment;
52 import android.os.Handler;
53 import android.os.Message;
54 import android.preference.PreferenceManager;
55 import android.print.PrintDocumentAdapter;
56 import android.print.PrintManager;
57 import android.provider.DocumentsContract;
58 import android.text.Editable;
59 import android.text.Spanned;
60 import android.text.TextWatcher;
61 import android.text.style.ForegroundColorSpan;
62 import android.util.Patterns;
63 import android.util.TypedValue;
64 import android.view.ContextMenu;
65 import android.view.GestureDetector;
66 import android.view.KeyEvent;
67 import android.view.Menu;
68 import android.view.MenuItem;
69 import android.view.MotionEvent;
70 import android.view.View;
71 import android.view.ViewGroup;
72 import android.view.WindowManager;
73 import android.view.inputmethod.InputMethodManager;
74 import android.webkit.CookieManager;
75 import android.webkit.HttpAuthHandler;
76 import android.webkit.SslErrorHandler;
77 import android.webkit.ValueCallback;
78 import android.webkit.WebBackForwardList;
79 import android.webkit.WebChromeClient;
80 import android.webkit.WebResourceResponse;
81 import android.webkit.WebSettings;
82 import android.webkit.WebStorage;
83 import android.webkit.WebView;
84 import android.webkit.WebViewClient;
85 import android.webkit.WebViewDatabase;
86 import android.widget.ArrayAdapter;
87 import android.widget.CheckBox;
88 import android.widget.CursorAdapter;
89 import android.widget.EditText;
90 import android.widget.FrameLayout;
91 import android.widget.ImageView;
92 import android.widget.LinearLayout;
93 import android.widget.ListView;
94 import android.widget.ProgressBar;
95 import android.widget.RadioButton;
96 import android.widget.RelativeLayout;
97 import android.widget.TextView;
99 import androidx.annotation.NonNull;
100 import androidx.appcompat.app.ActionBar;
101 import androidx.appcompat.app.ActionBarDrawerToggle;
102 import androidx.appcompat.app.AppCompatActivity;
103 import androidx.appcompat.app.AppCompatDelegate;
104 import androidx.appcompat.widget.Toolbar;
105 import androidx.coordinatorlayout.widget.CoordinatorLayout;
106 import androidx.core.content.res.ResourcesCompat;
107 import androidx.core.view.GravityCompat;
108 import androidx.drawerlayout.widget.DrawerLayout;
109 import androidx.fragment.app.DialogFragment;
110 import androidx.swiperefreshlayout.widget.SwipeRefreshLayout;
111 import androidx.viewpager.widget.ViewPager;
112 import androidx.webkit.WebSettingsCompat;
113 import androidx.webkit.WebViewFeature;
115 import com.google.android.material.appbar.AppBarLayout;
116 import com.google.android.material.floatingactionbutton.FloatingActionButton;
117 import com.google.android.material.navigation.NavigationView;
118 import com.google.android.material.snackbar.Snackbar;
119 import com.google.android.material.tabs.TabLayout;
121 import com.stoutner.privacybrowser.BuildConfig;
122 import com.stoutner.privacybrowser.R;
123 import com.stoutner.privacybrowser.adapters.WebViewPagerAdapter;
124 import com.stoutner.privacybrowser.asynctasks.GetHostIpAddresses;
125 import com.stoutner.privacybrowser.asynctasks.PopulateBlocklists;
126 import com.stoutner.privacybrowser.asynctasks.PrepareSaveDialog;
127 import com.stoutner.privacybrowser.asynctasks.SaveUrl;
128 import com.stoutner.privacybrowser.asynctasks.SaveWebpageImage;
129 import com.stoutner.privacybrowser.dialogs.AdConsentDialog;
130 import com.stoutner.privacybrowser.dialogs.CreateBookmarkDialog;
131 import com.stoutner.privacybrowser.dialogs.CreateBookmarkFolderDialog;
132 import com.stoutner.privacybrowser.dialogs.CreateHomeScreenShortcutDialog;
133 import com.stoutner.privacybrowser.dialogs.EditBookmarkFolderDialog;
134 import com.stoutner.privacybrowser.dialogs.FontSizeDialog;
135 import com.stoutner.privacybrowser.dialogs.HttpAuthenticationDialog;
136 import com.stoutner.privacybrowser.dialogs.OpenDialog;
137 import com.stoutner.privacybrowser.dialogs.ProxyNotInstalledDialog;
138 import com.stoutner.privacybrowser.dialogs.PinnedMismatchDialog;
139 import com.stoutner.privacybrowser.dialogs.SaveWebpageDialog;
140 import com.stoutner.privacybrowser.dialogs.SslCertificateErrorDialog;
141 import com.stoutner.privacybrowser.dialogs.UrlHistoryDialog;
142 import com.stoutner.privacybrowser.dialogs.ViewSslCertificateDialog;
143 import com.stoutner.privacybrowser.dialogs.WaitingForProxyDialog;
144 import com.stoutner.privacybrowser.fragments.WebViewTabFragment;
145 import com.stoutner.privacybrowser.helpers.AdHelper;
146 import com.stoutner.privacybrowser.helpers.BlocklistHelper;
147 import com.stoutner.privacybrowser.helpers.BookmarksDatabaseHelper;
148 import com.stoutner.privacybrowser.helpers.DomainsDatabaseHelper;
149 import com.stoutner.privacybrowser.helpers.ProxyHelper;
150 import com.stoutner.privacybrowser.views.NestedScrollWebView;
152 import java.io.ByteArrayInputStream;
153 import java.io.ByteArrayOutputStream;
155 import java.io.FileInputStream;
156 import java.io.FileOutputStream;
157 import java.io.IOException;
158 import java.io.InputStream;
159 import java.io.OutputStream;
160 import java.io.UnsupportedEncodingException;
161 import java.net.MalformedURLException;
163 import java.net.URLDecoder;
164 import java.net.URLEncoder;
165 import java.text.NumberFormat;
166 import java.util.ArrayList;
167 import java.util.Date;
168 import java.util.HashMap;
169 import java.util.HashSet;
170 import java.util.List;
171 import java.util.Map;
172 import java.util.Objects;
173 import java.util.Set;
174 import java.util.concurrent.ExecutorService;
175 import java.util.concurrent.Executors;
177 public class MainWebViewActivity extends AppCompatActivity implements CreateBookmarkDialog.CreateBookmarkListener, CreateBookmarkFolderDialog.CreateBookmarkFolderListener,
178 EditBookmarkFolderDialog.EditBookmarkFolderListener, FontSizeDialog.UpdateFontSizeListener, NavigationView.OnNavigationItemSelectedListener, OpenDialog.OpenListener,
179 PinnedMismatchDialog.PinnedMismatchListener, PopulateBlocklists.PopulateBlocklistsListener, SaveWebpageDialog.SaveWebpageListener, UrlHistoryDialog.NavigateHistoryListener,
180 WebViewTabFragment.NewTabListener {
182 // The executor service handles background tasks. It is accessed from `ViewSourceActivity`.
183 public static ExecutorService executorService = Executors.newFixedThreadPool(4);
185 // `orbotStatus` is public static so it can be accessed from `OrbotProxyHelper`. It is also used in `onCreate()`, `onResume()`, and `applyProxy()`.
186 public static String orbotStatus = "unknown";
188 // The WebView pager adapter is accessed from `HttpAuthenticationDialog`, `PinnedMismatchDialog`, and `SslCertificateErrorDialog`. It is also used in `onCreate()`, `onResume()`, and `addTab()`.
189 public static WebViewPagerAdapter webViewPagerAdapter;
191 // `restartFromBookmarksActivity` is public static so it can be accessed from `BookmarksActivity`. It is also used in `onRestart()`.
192 public static boolean restartFromBookmarksActivity;
194 // `currentBookmarksFolder` is public static so it can be accessed from `BookmarksActivity`. It is also used in `onCreate()`, `onBackPressed()`, `onCreateBookmark()`, `onCreateBookmarkFolder()`,
195 // `onSaveEditBookmark()`, `onSaveEditBookmarkFolder()`, and `loadBookmarksFolder()`.
196 public static String currentBookmarksFolder;
198 // The user agent constants are public static so they can be accessed from `SettingsFragment`, `DomainsActivity`, and `DomainSettingsFragment`.
199 public final static int UNRECOGNIZED_USER_AGENT = -1;
200 public final static int SETTINGS_WEBVIEW_DEFAULT_USER_AGENT = 1;
201 public final static int SETTINGS_CUSTOM_USER_AGENT = 12;
202 public final static int DOMAINS_SYSTEM_DEFAULT_USER_AGENT = 0;
203 public final static int DOMAINS_WEBVIEW_DEFAULT_USER_AGENT = 2;
204 public final static int DOMAINS_CUSTOM_USER_AGENT = 13;
206 // Define the start activity for result request codes. The public static entries are accessed from `OpenDialog()` and `SaveWebpageDialog()`.
207 private final int BROWSE_FILE_UPLOAD_REQUEST_CODE = 0;
208 public final static int BROWSE_OPEN_REQUEST_CODE = 1;
209 public final static int BROWSE_SAVE_WEBPAGE_REQUEST_CODE = 2;
211 // The proxy mode is public static so it can be accessed from `ProxyHelper()`.
212 // It is also used in `onRestart()`, `onPrepareOptionsMenu()`, `onOptionsItemSelected()`, `applyAppSettings()`, and `applyProxy()`.
213 // It will be updated in `applyAppSettings()`, but it needs to be initialized here or the first run of `onPrepareOptionsMenu()` crashes.
214 public static String proxyMode = ProxyHelper.NONE;
216 // Define the saved instance state constants.
217 private final String SAVED_STATE_ARRAY_LIST = "saved_state_array_list";
218 private final String SAVED_NESTED_SCROLL_WEBVIEW_STATE_ARRAY_LIST = "saved_nested_scroll_webview_state_array_list";
219 private final String SAVED_TAB_POSITION = "saved_tab_position";
220 private final String PROXY_MODE = "proxy_mode";
222 // Define the saved instance state variables.
223 private ArrayList<Bundle> savedStateArrayList;
224 private ArrayList<Bundle> savedNestedScrollWebViewStateArrayList;
225 private int savedTabPosition;
226 private String savedProxyMode;
228 // Define the class variables.
229 @SuppressWarnings("rawtypes")
230 AsyncTask populateBlocklists;
232 // The current WebView is used in `onCreate()`, `onPrepareOptionsMenu()`, `onOptionsItemSelected()`, `onNavigationItemSelected()`, `onRestart()`, `onCreateContextMenu()`, `findPreviousOnPage()`,
233 // `findNextOnPage()`, `closeFindOnPage()`, `loadUrlFromTextBox()`, `onSslMismatchBack()`, `applyProxy()`, and `applyDomainSettings()`.
234 private NestedScrollWebView currentWebView;
236 // `customHeader` is used in `onCreate()`, `onOptionsItemSelected()`, `onCreateContextMenu()`, and `loadUrl()`.
237 private final Map<String, String> customHeaders = new HashMap<>();
239 // The search URL is set in `applyAppSettings()` and used in `onNewIntent()`, `loadUrlFromTextBox()`, `initializeApp()`, and `initializeWebView()`.
240 private String searchURL;
242 // The blocklists are populated in `finishedPopulatingBlocklists()` and accessed from `initializeWebView()`.
243 private ArrayList<List<String[]>> easyList;
244 private ArrayList<List<String[]>> easyPrivacy;
245 private ArrayList<List<String[]>> fanboysAnnoyanceList;
246 private ArrayList<List<String[]>> fanboysSocialList;
247 private ArrayList<List<String[]>> ultraList;
248 private ArrayList<List<String[]>> ultraPrivacy;
250 // `webViewDefaultUserAgent` is used in `onCreate()` and `onPrepareOptionsMenu()`.
251 private String webViewDefaultUserAgent;
253 // The incognito mode is set in `applyAppSettings()` and used in `initializeWebView()`.
254 private boolean incognitoModeEnabled;
256 // The full screen browsing mode tracker is set it `applyAppSettings()` and used in `initializeWebView()`.
257 private boolean fullScreenBrowsingModeEnabled;
259 // `inFullScreenBrowsingMode` is used in `onCreate()`, `onConfigurationChanged()`, and `applyAppSettings()`.
260 private boolean inFullScreenBrowsingMode;
262 // The app bar trackers are set in `applyAppSettings()` and used in `initializeWebView()`.
263 private boolean hideAppBar;
264 private boolean scrollAppBar;
266 // The loading new intent tracker is set in `onNewIntent()` and used in `setCurrentWebView()`.
267 private boolean loadingNewIntent;
269 // `reapplyDomainSettingsOnRestart` is used in `onCreate()`, `onOptionsItemSelected()`, `onNavigationItemSelected()`, `onRestart()`, and `onAddDomain()`, .
270 private boolean reapplyDomainSettingsOnRestart;
272 // `reapplyAppSettingsOnRestart` is used in `onNavigationItemSelected()` and `onRestart()`.
273 private boolean reapplyAppSettingsOnRestart;
275 // `displayingFullScreenVideo` is used in `onCreate()` and `onResume()`.
276 private boolean displayingFullScreenVideo;
278 // `orbotStatusBroadcastReceiver` is used in `onCreate()` and `onDestroy()`.
279 private BroadcastReceiver orbotStatusBroadcastReceiver;
281 // The waiting for proxy boolean is used in `onResume()`, `initializeApp()` and `applyProxy()`.
282 private boolean waitingForProxy = false;
284 // The action bar drawer toggle is initialized in `onCreate()` and used in `onResume()`.
285 private ActionBarDrawerToggle actionBarDrawerToggle;
287 // The color spans are used in `onCreate()` and `highlightUrlText()`.
288 private ForegroundColorSpan redColorSpan;
289 private ForegroundColorSpan initialGrayColorSpan;
290 private ForegroundColorSpan finalGrayColorSpan;
292 // `bookmarksDatabaseHelper` is used in `onCreate()`, `onDestroy`, `onOptionsItemSelected()`, `onCreateBookmark()`, `onCreateBookmarkFolder()`, `onSaveEditBookmark()`, `onSaveEditBookmarkFolder()`,
293 // and `loadBookmarksFolder()`.
294 private BookmarksDatabaseHelper bookmarksDatabaseHelper;
296 // `bookmarksCursor` is used in `onDestroy()`, `onOptionsItemSelected()`, `onCreateBookmark()`, `onCreateBookmarkFolder()`, `onSaveEditBookmark()`, `onSaveEditBookmarkFolder()`, and `loadBookmarksFolder()`.
297 private Cursor bookmarksCursor;
299 // `bookmarksCursorAdapter` is used in `onCreateBookmark()`, `onCreateBookmarkFolder()` `onSaveEditBookmark()`, `onSaveEditBookmarkFolder()`, and `loadBookmarksFolder()`.
300 private CursorAdapter bookmarksCursorAdapter;
302 // `oldFolderNameString` is used in `onCreate()` and `onSaveEditBookmarkFolder()`.
303 private String oldFolderNameString;
305 // `fileChooserCallback` is used in `onCreate()` and `onActivityResult()`.
306 private ValueCallback<Uri[]> fileChooserCallback;
308 // The default progress view offsets are set in `onCreate()` and used in `initializeWebView()`.
309 private int appBarHeight;
310 private int defaultProgressViewStartOffset;
311 private int defaultProgressViewEndOffset;
313 // The URL sanitizers are set in `applyAppSettings()` and used in `sanitizeUrl()`.
314 private boolean sanitizeGoogleAnalytics;
315 private boolean sanitizeFacebookClickIds;
316 private boolean sanitizeTwitterAmpRedirects;
318 // Declare the class views.
319 private FrameLayout rootFrameLayout;
320 private DrawerLayout drawerLayout;
321 private RelativeLayout mainContentRelativeLayout;
322 private AppBarLayout appBarLayout;
323 private Toolbar toolbar;
324 private RelativeLayout urlRelativeLayout;
325 private EditText urlEditText;
326 private ActionBar actionBar;
327 private LinearLayout findOnPageLinearLayout;
328 private LinearLayout tabsLinearLayout;
329 private TabLayout tabLayout;
330 private SwipeRefreshLayout swipeRefreshLayout;
331 private ViewPager webViewPager;
332 private FrameLayout fullScreenVideoFrameLayout;
334 // Declare the class menus.
335 private Menu optionsMenu;
337 // Declare the class menu items.
338 private MenuItem navigationBackMenuItem;
339 private MenuItem navigationForwardMenuItem;
340 private MenuItem navigationHistoryMenuItem;
341 private MenuItem navigationRequestsMenuItem;
342 private MenuItem optionsPrivacyMenuItem;
343 private MenuItem optionsRefreshMenuItem;
344 private MenuItem optionsFirstPartyCookiesMenuItem;
345 private MenuItem optionsThirdPartyCookiesMenuItem;
346 private MenuItem optionsDomStorageMenuItem;
347 private MenuItem optionsSaveFormDataMenuItem;
348 private MenuItem optionsClearDataMenuItem;
349 private MenuItem optionsClearCookiesMenuItem;
350 private MenuItem optionsClearDomStorageMenuItem;
351 private MenuItem optionsClearFormDataMenuItem;
352 private MenuItem optionsBlocklistsMenuItem;
353 private MenuItem optionsEasyListMenuItem;
354 private MenuItem optionsEasyPrivacyMenuItem;
355 private MenuItem optionsFanboysAnnoyanceListMenuItem;
356 private MenuItem optionsFanboysSocialBlockingListMenuItem;
357 private MenuItem optionsUltraListMenuItem;
358 private MenuItem optionsUltraPrivacyMenuItem;
359 private MenuItem optionsBlockAllThirdPartyRequestsMenuItem;
360 private MenuItem optionsProxyMenuItem;
361 private MenuItem optionsProxyNoneMenuItem;
362 private MenuItem optionsProxyTorMenuItem;
363 private MenuItem optionsProxyI2pMenuItem;
364 private MenuItem optionsProxyCustomMenuItem;
365 private MenuItem optionsUserAgentMenuItem;
366 private MenuItem optionsUserAgentPrivacyBrowserMenuItem;
367 private MenuItem optionsUserAgentWebViewDefaultMenuItem;
368 private MenuItem optionsUserAgentFirefoxOnAndroidMenuItem;
369 private MenuItem optionsUserAgentChromeOnAndroidMenuItem;
370 private MenuItem optionsUserAgentSafariOnIosMenuItem;
371 private MenuItem optionsUserAgentFirefoxOnLinuxMenuItem;
372 private MenuItem optionsUserAgentChromiumOnLinuxMenuItem;
373 private MenuItem optionsUserAgentFirefoxOnWindowsMenuItem;
374 private MenuItem optionsUserAgentChromeOnWindowsMenuItem;
375 private MenuItem optionsUserAgentEdgeOnWindowsMenuItem;
376 private MenuItem optionsUserAgentInternetExplorerOnWindowsMenuItem;
377 private MenuItem optionsUserAgentSafariOnMacosMenuItem;
378 private MenuItem optionsUserAgentCustomMenuItem;
379 private MenuItem optionsSwipeToRefreshMenuItem;
380 private MenuItem optionsWideViewportMenuItem;
381 private MenuItem optionsDisplayImagesMenuItem;
382 private MenuItem optionsDarkWebViewMenuItem;
383 private MenuItem optionsFontSizeMenuItem;
384 private MenuItem optionsAddOrEditDomainMenuItem;
387 // Remove the warning about needing to override `performClick()` when using an `OnTouchListener` with `WebView`.
388 @SuppressLint("ClickableViewAccessibility")
389 protected void onCreate(Bundle savedInstanceState) {
390 // Run the default commands.
391 super.onCreate(savedInstanceState);
393 // Check to see if the activity has been restarted.
394 if (savedInstanceState != null) {
395 // Store the saved instance state variables.
396 savedStateArrayList = savedInstanceState.getParcelableArrayList(SAVED_STATE_ARRAY_LIST);
397 savedNestedScrollWebViewStateArrayList = savedInstanceState.getParcelableArrayList(SAVED_NESTED_SCROLL_WEBVIEW_STATE_ARRAY_LIST);
398 savedTabPosition = savedInstanceState.getInt(SAVED_TAB_POSITION);
399 savedProxyMode = savedInstanceState.getString(PROXY_MODE);
402 // Initialize the default preference values the first time the program is run. `false` keeps this command from resetting any current preferences back to default.
403 PreferenceManager.setDefaultValues(this, R.xml.preferences, false);
405 // Get a handle for the shared preferences.
406 SharedPreferences sharedPreferences = PreferenceManager.getDefaultSharedPreferences(this);
408 // Get the screenshot preference.
409 String appTheme = sharedPreferences.getString("app_theme", getString(R.string.app_theme_default_value));
410 boolean allowScreenshots = sharedPreferences.getBoolean(getString(R.string.allow_screenshots_key), false);
412 // Get the theme entry values string array.
413 String[] appThemeEntryValuesStringArray = getResources().getStringArray(R.array.app_theme_entry_values);
415 // Set the app theme according to the preference. A switch statement cannot be used because the theme entry values string array is not a compile time constant.
416 if (appTheme.equals(appThemeEntryValuesStringArray[1])) { // The light theme is selected.
417 // Apply the light theme.
418 AppCompatDelegate.setDefaultNightMode(AppCompatDelegate.MODE_NIGHT_NO);
419 } else if (appTheme.equals(appThemeEntryValuesStringArray[2])) { // The dark theme is selected.
420 // Apply the dark theme.
421 AppCompatDelegate.setDefaultNightMode(AppCompatDelegate.MODE_NIGHT_YES);
422 } else { // The system default theme is selected.
423 if (Build.VERSION.SDK_INT >= 28) { // The system default theme is supported.
424 // Follow the system default theme.
425 AppCompatDelegate.setDefaultNightMode(AppCompatDelegate.MODE_NIGHT_FOLLOW_SYSTEM);
426 } else { // The system default theme is not supported.
427 // Follow the battery saver mode.
428 AppCompatDelegate.setDefaultNightMode(AppCompatDelegate.MODE_NIGHT_AUTO_BATTERY);
432 // Disable screenshots if not allowed.
433 if (!allowScreenshots) {
434 getWindow().addFlags(WindowManager.LayoutParams.FLAG_SECURE);
437 // Enable the drawing of the entire webpage. This makes it possible to save a website image. This must be done before anything else happens with the WebView.
438 if (Build.VERSION.SDK_INT >= 21) {
439 WebView.enableSlowWholeDocumentDraw();
443 setTheme(R.style.PrivacyBrowser);
445 // Set the content view.
446 setContentView(R.layout.main_framelayout);
448 // Get handles for the views.
449 rootFrameLayout = findViewById(R.id.root_framelayout);
450 drawerLayout = findViewById(R.id.drawerlayout);
451 mainContentRelativeLayout = findViewById(R.id.main_content_relativelayout);
452 appBarLayout = findViewById(R.id.appbar_layout);
453 toolbar = findViewById(R.id.toolbar);
454 findOnPageLinearLayout = findViewById(R.id.find_on_page_linearlayout);
455 tabsLinearLayout = findViewById(R.id.tabs_linearlayout);
456 tabLayout = findViewById(R.id.tablayout);
457 swipeRefreshLayout = findViewById(R.id.swiperefreshlayout);
458 webViewPager = findViewById(R.id.webviewpager);
459 fullScreenVideoFrameLayout = findViewById(R.id.full_screen_video_framelayout);
461 // Get a handle for the navigation view.
462 NavigationView navigationView = findViewById(R.id.navigationview);
464 // Get a handle for the navigation menu.
465 Menu navigationMenu = navigationView.getMenu();
467 // Get handles for the navigation menu items.
468 navigationBackMenuItem = navigationMenu.findItem(R.id.back);
469 navigationForwardMenuItem = navigationMenu.findItem(R.id.forward);
470 navigationHistoryMenuItem = navigationMenu.findItem(R.id.history);
471 navigationRequestsMenuItem = navigationMenu.findItem(R.id.requests);
473 // Listen for touches on the navigation menu.
474 navigationView.setNavigationItemSelectedListener(this);
476 // Get a handle for the app compat delegate.
477 AppCompatDelegate appCompatDelegate = getDelegate();
479 // Set the support action bar.
480 appCompatDelegate.setSupportActionBar(toolbar);
482 // Get a handle for the action bar.
483 actionBar = appCompatDelegate.getSupportActionBar();
485 // Remove the incorrect lint warning below that the action bar might be null.
486 assert actionBar != null;
488 // Add the custom layout, which shows the URL text bar.
489 actionBar.setCustomView(R.layout.url_app_bar);
490 actionBar.setDisplayOptions(ActionBar.DISPLAY_SHOW_CUSTOM);
492 // Get handles for the views in the URL app bar.
493 urlRelativeLayout = findViewById(R.id.url_relativelayout);
494 urlEditText = findViewById(R.id.url_edittext);
496 // Create the hamburger icon at the start of the AppBar.
497 actionBarDrawerToggle = new ActionBarDrawerToggle(this, drawerLayout, toolbar, R.string.open_navigation_drawer, R.string.close_navigation_drawer);
499 // Initially disable the sliding drawers. They will be enabled once the blocklists are loaded.
500 drawerLayout.setDrawerLockMode(DrawerLayout.LOCK_MODE_LOCKED_CLOSED);
502 // Initialize the web view pager adapter.
503 webViewPagerAdapter = new WebViewPagerAdapter(getSupportFragmentManager());
505 // Set the pager adapter on the web view pager.
506 webViewPager.setAdapter(webViewPagerAdapter);
508 // Store up to 100 tabs in memory.
509 webViewPager.setOffscreenPageLimit(100);
511 // Initialize the app.
514 // Apply the app settings from the shared preferences.
517 // Populate the blocklists.
518 populateBlocklists = new PopulateBlocklists(this, this).execute();
522 protected void onNewIntent(Intent intent) {
523 // Run the default commands.
524 super.onNewIntent(intent);
526 // Replace the intent that started the app with this one.
529 // Check to see if the app is being restarted from a saved state.
530 if (savedStateArrayList == null || savedStateArrayList.size() == 0) { // The activity is not being restarted from a saved state.
531 // Get the information from the intent.
532 String intentAction = intent.getAction();
533 Uri intentUriData = intent.getData();
534 String intentStringExtra = intent.getStringExtra(Intent.EXTRA_TEXT);
536 // Determine if this is a web search.
537 boolean isWebSearch = ((intentAction != null) && intentAction.equals(Intent.ACTION_WEB_SEARCH));
539 // Only process the URI if it contains data or it is a web search. If the user pressed the desktop icon after the app was already running the URI will be null.
540 if (intentUriData != null || intentStringExtra != null || isWebSearch) {
541 // Get the shared preferences.
542 SharedPreferences sharedPreferences = PreferenceManager.getDefaultSharedPreferences(this);
544 // Create a URL string.
547 // If the intent action is a web search, perform the search.
548 if (isWebSearch) { // The intent is a web search.
549 // Create an encoded URL string.
550 String encodedUrlString;
552 // Sanitize the search input and convert it to a search.
554 encodedUrlString = URLEncoder.encode(intent.getStringExtra(SearchManager.QUERY), "UTF-8");
555 } catch (UnsupportedEncodingException exception) {
556 encodedUrlString = "";
559 // Add the base search URL.
560 url = searchURL + encodedUrlString;
561 } else if (intentUriData != null) { // The intent contains a URL formatted as a URI.
562 // Set the intent data as the URL.
563 url = intentUriData.toString();
564 } else { // The intent contains a string, which might be a URL.
565 // Set the intent string as the URL.
566 url = intentStringExtra;
569 // Add a new tab if specified in the preferences.
570 if (sharedPreferences.getBoolean("open_intents_in_new_tab", true)) { // Load the URL in a new tab.
571 // Set the loading new intent flag.
572 loadingNewIntent = true;
575 addNewTab(url, true);
576 } else { // Load the URL in the current tab.
578 loadUrl(currentWebView, url);
581 // Close the navigation drawer if it is open.
582 if (drawerLayout.isDrawerVisible(GravityCompat.START)) {
583 drawerLayout.closeDrawer(GravityCompat.START);
586 // Close the bookmarks drawer if it is open.
587 if (drawerLayout.isDrawerVisible(GravityCompat.END)) {
588 drawerLayout.closeDrawer(GravityCompat.END);
595 public void onRestart() {
596 // Run the default commands.
599 // Apply the app settings if returning from the Settings activity.
600 if (reapplyAppSettingsOnRestart) {
601 // Reset the reapply app settings on restart tracker.
602 reapplyAppSettingsOnRestart = false;
604 // Apply the app settings.
608 // Apply the domain settings if returning from the settings or domains activity.
609 if (reapplyDomainSettingsOnRestart) {
610 // Reset the reapply domain settings on restart tracker.
611 reapplyDomainSettingsOnRestart = false;
613 // Reapply the domain settings for each tab.
614 for (int i = 0; i < webViewPagerAdapter.getCount(); i++) {
615 // Get the WebView tab fragment.
616 WebViewTabFragment webViewTabFragment = webViewPagerAdapter.getPageFragment(i);
618 // Get the fragment view.
619 View fragmentView = webViewTabFragment.getView();
621 // Only reload the WebViews if they exist.
622 if (fragmentView != null) {
623 // Get the nested scroll WebView from the tab fragment.
624 NestedScrollWebView nestedScrollWebView = fragmentView.findViewById(R.id.nestedscroll_webview);
626 // Reset the current domain name so the domain settings will be reapplied.
627 nestedScrollWebView.resetCurrentDomainName();
629 // Reapply the domain settings if the URL is not null, which can happen if an empty tab is active when returning from settings.
630 if (nestedScrollWebView.getUrl() != null) {
631 applyDomainSettings(nestedScrollWebView, nestedScrollWebView.getUrl(), false, true, false);
637 // Update the bookmarks drawer if returning from the Bookmarks activity.
638 if (restartFromBookmarksActivity) {
639 // Close the bookmarks drawer.
640 drawerLayout.closeDrawer(GravityCompat.END);
642 // Reload the bookmarks drawer.
643 loadBookmarksFolder();
645 // Reset `restartFromBookmarksActivity`.
646 restartFromBookmarksActivity = false;
649 // Update the privacy icon. `true` runs `invalidateOptionsMenu` as the last step. This can be important if the screen was rotated.
650 updatePrivacyIcons(true);
653 // `onStart()` runs after `onCreate()` or `onRestart()`. This is used instead of `onResume()` so the commands aren't called every time the screen is partially hidden.
655 public void onStart() {
656 // Run the default commands.
659 // Resume any WebViews.
660 for (int i = 0; i < webViewPagerAdapter.getCount(); i++) {
661 // Get the WebView tab fragment.
662 WebViewTabFragment webViewTabFragment = webViewPagerAdapter.getPageFragment(i);
664 // Get the fragment view.
665 View fragmentView = webViewTabFragment.getView();
667 // Only resume the WebViews if they exist (they won't when the app is first created).
668 if (fragmentView != null) {
669 // Get the nested scroll WebView from the tab fragment.
670 NestedScrollWebView nestedScrollWebView = fragmentView.findViewById(R.id.nestedscroll_webview);
672 // Resume the nested scroll WebView.
673 nestedScrollWebView.onResume();
677 // Resume the nested scroll WebView JavaScript timers. This is a global command that resumes JavaScript timers on all WebViews.
678 if (currentWebView != null) {
679 currentWebView.resumeTimers();
682 // Reapply the proxy settings if the system is using a proxy. This redisplays the appropriate alert dialog.
683 if (!proxyMode.equals(ProxyHelper.NONE)) {
687 // Reapply any system UI flags and the ad in the free flavor.
688 if (displayingFullScreenVideo || inFullScreenBrowsingMode) { // The system is displaying a website or a video in full screen mode.
689 /* Hide the system bars.
690 * SYSTEM_UI_FLAG_FULLSCREEN hides the status bar at the top of the screen.
691 * SYSTEM_UI_FLAG_LAYOUT_FULLSCREEN makes the root frame layout fill the area that is normally reserved for the status bar.
692 * SYSTEM_UI_FLAG_HIDE_NAVIGATION hides the navigation bar on the bottom or right of the screen.
693 * SYSTEM_UI_FLAG_IMMERSIVE_STICKY makes the status and navigation bars translucent and automatically re-hides them after they are shown.
695 rootFrameLayout.setSystemUiVisibility(View.SYSTEM_UI_FLAG_FULLSCREEN | View.SYSTEM_UI_FLAG_LAYOUT_FULLSCREEN | View.SYSTEM_UI_FLAG_HIDE_NAVIGATION |
696 View.SYSTEM_UI_FLAG_IMMERSIVE_STICKY);
697 } else if (BuildConfig.FLAVOR.contentEquals("free")) { // The system in not in full screen mode.
698 // Get a handle for the ad view. This cannot be a class variable because it changes with each ad load.
699 View adView = findViewById(R.id.adview);
702 AdHelper.resumeAd(adView);
706 // `onStop()` runs after `onPause()`. It is used instead of `onPause()` so the commands are not called every time the screen is partially hidden.
708 public void onStop() {
709 // Run the default commands.
712 for (int i = 0; i < webViewPagerAdapter.getCount(); i++) {
713 // Get the WebView tab fragment.
714 WebViewTabFragment webViewTabFragment = webViewPagerAdapter.getPageFragment(i);
716 // Get the fragment view.
717 View fragmentView = webViewTabFragment.getView();
719 // Only pause the WebViews if they exist (they won't when the app is first created).
720 if (fragmentView != null) {
721 // Get the nested scroll WebView from the tab fragment.
722 NestedScrollWebView nestedScrollWebView = fragmentView.findViewById(R.id.nestedscroll_webview);
724 // Pause the nested scroll WebView.
725 nestedScrollWebView.onPause();
729 // Pause the WebView JavaScript timers. This is a global command that pauses JavaScript on all WebViews.
730 if (currentWebView != null) {
731 currentWebView.pauseTimers();
734 // Pause the ad or it will continue to consume resources in the background on the free flavor.
735 if (BuildConfig.FLAVOR.contentEquals("free")) {
736 // Get a handle for the ad view. This cannot be a class variable because it changes with each ad load.
737 View adView = findViewById(R.id.adview);
740 AdHelper.pauseAd(adView);
745 public void onSaveInstanceState(@NonNull Bundle savedInstanceState) {
746 // Run the default commands.
747 super.onSaveInstanceState(savedInstanceState);
749 // Create the saved state array lists.
750 ArrayList<Bundle> savedStateArrayList = new ArrayList<>();
751 ArrayList<Bundle> savedNestedScrollWebViewStateArrayList = new ArrayList<>();
753 // Get the URLs from each tab.
754 for (int i = 0; i < webViewPagerAdapter.getCount(); i++) {
755 // Get the WebView tab fragment.
756 WebViewTabFragment webViewTabFragment = webViewPagerAdapter.getPageFragment(i);
758 // Get the fragment view.
759 View fragmentView = webViewTabFragment.getView();
761 if (fragmentView != null) {
762 // Get the nested scroll WebView from the tab fragment.
763 NestedScrollWebView nestedScrollWebView = fragmentView.findViewById(R.id.nestedscroll_webview);
765 // Create saved state bundle.
766 Bundle savedStateBundle = new Bundle();
768 // Get the current states.
769 nestedScrollWebView.saveState(savedStateBundle);
770 Bundle savedNestedScrollWebViewStateBundle = nestedScrollWebView.saveNestedScrollWebViewState();
772 // Store the saved states in the array lists.
773 savedStateArrayList.add(savedStateBundle);
774 savedNestedScrollWebViewStateArrayList.add(savedNestedScrollWebViewStateBundle);
778 // Get the current tab position.
779 int currentTabPosition = tabLayout.getSelectedTabPosition();
781 // Store the saved states in the bundle.
782 savedInstanceState.putParcelableArrayList(SAVED_STATE_ARRAY_LIST, savedStateArrayList);
783 savedInstanceState.putParcelableArrayList(SAVED_NESTED_SCROLL_WEBVIEW_STATE_ARRAY_LIST, savedNestedScrollWebViewStateArrayList);
784 savedInstanceState.putInt(SAVED_TAB_POSITION, currentTabPosition);
785 savedInstanceState.putString(PROXY_MODE, proxyMode);
789 public void onDestroy() {
790 // Unregister the orbot status broadcast receiver if it exists.
791 if (orbotStatusBroadcastReceiver != null) {
792 this.unregisterReceiver(orbotStatusBroadcastReceiver);
795 // Close the bookmarks cursor if it exists.
796 if (bookmarksCursor != null) {
797 bookmarksCursor.close();
800 // Close the bookmarks database if it exists.
801 if (bookmarksDatabaseHelper != null) {
802 bookmarksDatabaseHelper.close();
805 // Stop populating the blocklists if the AsyncTask is running in the background.
806 if (populateBlocklists != null) {
807 populateBlocklists.cancel(true);
810 // Run the default commands.
815 public boolean onCreateOptionsMenu(Menu menu) {
816 // Inflate the menu. This adds items to the action bar if it is present.
817 getMenuInflater().inflate(R.menu.webview_options_menu, menu);
819 // Store a handle for the options menu so it can be used by `onOptionsItemSelected()` and `updatePrivacyIcons()`.
822 // Get handles for the class menu items.
823 optionsPrivacyMenuItem = menu.findItem(R.id.javascript);
824 optionsRefreshMenuItem = menu.findItem(R.id.refresh);
825 optionsFirstPartyCookiesMenuItem = menu.findItem(R.id.first_party_cookies);
826 optionsThirdPartyCookiesMenuItem = menu.findItem(R.id.third_party_cookies);
827 optionsDomStorageMenuItem = menu.findItem(R.id.dom_storage);
828 optionsSaveFormDataMenuItem = menu.findItem(R.id.save_form_data); // Form data can be removed once the minimum API >= 26.
829 optionsClearDataMenuItem = menu.findItem(R.id.clear_data);
830 optionsClearCookiesMenuItem = menu.findItem(R.id.clear_cookies);
831 optionsClearDomStorageMenuItem = menu.findItem(R.id.clear_dom_storage);
832 optionsClearFormDataMenuItem = menu.findItem(R.id.clear_form_data); // Form data can be removed once the minimum API >= 26.
833 optionsBlocklistsMenuItem = menu.findItem(R.id.blocklists);
834 optionsEasyListMenuItem = menu.findItem(R.id.easylist);
835 optionsEasyPrivacyMenuItem = menu.findItem(R.id.easyprivacy);
836 optionsFanboysAnnoyanceListMenuItem = menu.findItem(R.id.fanboys_annoyance_list);
837 optionsFanboysSocialBlockingListMenuItem = menu.findItem(R.id.fanboys_social_blocking_list);
838 optionsUltraListMenuItem = menu.findItem(R.id.ultralist);
839 optionsUltraPrivacyMenuItem = menu.findItem(R.id.ultraprivacy);
840 optionsBlockAllThirdPartyRequestsMenuItem = menu.findItem(R.id.block_all_third_party_requests);
841 optionsProxyMenuItem = menu.findItem(R.id.proxy);
842 optionsProxyNoneMenuItem = menu.findItem(R.id.proxy_none);
843 optionsProxyTorMenuItem = menu.findItem(R.id.proxy_tor);
844 optionsProxyI2pMenuItem = menu.findItem(R.id.proxy_i2p);
845 optionsProxyCustomMenuItem = menu.findItem(R.id.proxy_custom);
846 optionsUserAgentMenuItem = menu.findItem(R.id.user_agent);
847 optionsUserAgentPrivacyBrowserMenuItem = menu.findItem(R.id.user_agent_privacy_browser);
848 optionsUserAgentWebViewDefaultMenuItem = menu.findItem(R.id.user_agent_webview_default);
849 optionsUserAgentFirefoxOnAndroidMenuItem = menu.findItem(R.id.user_agent_firefox_on_android);
850 optionsUserAgentChromeOnAndroidMenuItem = menu.findItem(R.id.user_agent_chrome_on_android);
851 optionsUserAgentSafariOnIosMenuItem = menu.findItem(R.id.user_agent_safari_on_ios);
852 optionsUserAgentFirefoxOnLinuxMenuItem = menu.findItem(R.id.user_agent_firefox_on_linux);
853 optionsUserAgentChromiumOnLinuxMenuItem = menu.findItem(R.id.user_agent_chromium_on_linux);
854 optionsUserAgentFirefoxOnWindowsMenuItem = menu.findItem(R.id.user_agent_firefox_on_windows);
855 optionsUserAgentChromeOnWindowsMenuItem = menu.findItem(R.id.user_agent_chrome_on_windows);
856 optionsUserAgentEdgeOnWindowsMenuItem = menu.findItem(R.id.user_agent_edge_on_windows);
857 optionsUserAgentInternetExplorerOnWindowsMenuItem = menu.findItem(R.id.user_agent_internet_explorer_on_windows);
858 optionsUserAgentSafariOnMacosMenuItem = menu.findItem(R.id.user_agent_safari_on_macos);
859 optionsUserAgentCustomMenuItem = menu.findItem(R.id.user_agent_custom);
860 optionsSwipeToRefreshMenuItem = menu.findItem(R.id.swipe_to_refresh);
861 optionsWideViewportMenuItem = menu.findItem(R.id.wide_viewport);
862 optionsDisplayImagesMenuItem = menu.findItem(R.id.display_images);
863 optionsDarkWebViewMenuItem = menu.findItem(R.id.dark_webview);
864 optionsFontSizeMenuItem = menu.findItem(R.id.font_size);
865 optionsAddOrEditDomainMenuItem = menu.findItem(R.id.add_or_edit_domain);
867 // Get handles for the method menu items.
868 MenuItem bookmarksMenuItem = menu.findItem(R.id.bookmarks);
869 MenuItem adConsentMenuItem = menu.findItem(R.id.ad_consent);
871 // Set the initial status of the privacy icons. `false` does not call `invalidateOptionsMenu` as the last step.
872 updatePrivacyIcons(false);
874 // Only display third-party cookies if API >= 21
875 optionsThirdPartyCookiesMenuItem.setVisible(Build.VERSION.SDK_INT >= 21);
877 // Only display the form data menu items if the API < 26.
878 optionsSaveFormDataMenuItem.setVisible(Build.VERSION.SDK_INT < 26);
879 optionsClearFormDataMenuItem.setVisible(Build.VERSION.SDK_INT < 26);
881 // Disable the clear form data menu item if the API >= 26 so that the status of the main Clear Data is calculated correctly.
882 optionsClearFormDataMenuItem.setEnabled(Build.VERSION.SDK_INT < 26);
884 // Only display the dark WebView menu item if API >= 21.
885 optionsDarkWebViewMenuItem.setVisible(Build.VERSION.SDK_INT >= 21);
887 // Only show Ad Consent if this is the free flavor.
888 adConsentMenuItem.setVisible(BuildConfig.FLAVOR.contentEquals("free"));
890 // Get the shared preferences.
891 SharedPreferences sharedPreferences = PreferenceManager.getDefaultSharedPreferences(this);
893 // Get the dark theme and app bar preferences.
894 boolean displayAdditionalAppBarIcons = sharedPreferences.getBoolean(getString(R.string.display_additional_app_bar_icons_key), false);
896 // Set the status of the additional app bar icons. Setting the refresh menu item to `SHOW_AS_ACTION_ALWAYS` makes it appear even on small devices like phones.
897 if (displayAdditionalAppBarIcons) {
898 optionsRefreshMenuItem.setShowAsAction(MenuItem.SHOW_AS_ACTION_ALWAYS);
899 bookmarksMenuItem.setShowAsAction(MenuItem.SHOW_AS_ACTION_IF_ROOM);
900 optionsFirstPartyCookiesMenuItem.setShowAsAction(MenuItem.SHOW_AS_ACTION_IF_ROOM);
901 } else { //Do not display the additional icons.
902 optionsRefreshMenuItem.setShowAsAction(MenuItem.SHOW_AS_ACTION_NEVER);
903 bookmarksMenuItem.setShowAsAction(MenuItem.SHOW_AS_ACTION_NEVER);
904 optionsFirstPartyCookiesMenuItem.setShowAsAction(MenuItem.SHOW_AS_ACTION_NEVER);
907 // Replace Refresh with Stop if a URL is already loading.
908 if (currentWebView != null && currentWebView.getProgress() != 100) {
910 optionsRefreshMenuItem.setTitle(R.string.stop);
912 // Set the icon if it is displayed in the app bar.
913 if (displayAdditionalAppBarIcons) {
914 // Get the current theme status.
915 int currentThemeStatus = getResources().getConfiguration().uiMode & Configuration.UI_MODE_NIGHT_MASK;
917 // Set the icon according to the current theme status.
918 if (currentThemeStatus == Configuration.UI_MODE_NIGHT_NO) {
919 optionsRefreshMenuItem.setIcon(R.drawable.close_blue_day);
921 optionsRefreshMenuItem.setIcon(R.drawable.close_blue_night);
931 public boolean onPrepareOptionsMenu(Menu menu) {
932 // Get a handle for the cookie manager.
933 CookieManager cookieManager = CookieManager.getInstance();
935 // Initialize the current user agent string and the font size.
936 String currentUserAgent = getString(R.string.user_agent_privacy_browser);
939 // Set items that require the current web view to be populated. It will be null when the program is first opened, as `onPrepareOptionsMenu()` is called before the first WebView is initialized.
940 if (currentWebView != null) {
941 // Set the add or edit domain text.
942 if (currentWebView.getDomainSettingsApplied()) {
943 optionsAddOrEditDomainMenuItem.setTitle(R.string.edit_domain_settings);
945 optionsAddOrEditDomainMenuItem.setTitle(R.string.add_domain_settings);
948 // Get the current user agent from the WebView.
949 currentUserAgent = currentWebView.getSettings().getUserAgentString();
951 // Get the current font size from the
952 fontSize = currentWebView.getSettings().getTextZoom();
954 // Set the status of the menu item checkboxes.
955 optionsDomStorageMenuItem.setChecked(currentWebView.getSettings().getDomStorageEnabled());
956 optionsSaveFormDataMenuItem.setChecked(currentWebView.getSettings().getSaveFormData()); // Form data can be removed once the minimum API >= 26.
957 optionsEasyListMenuItem.setChecked(currentWebView.isBlocklistEnabled(NestedScrollWebView.EASYLIST));
958 optionsEasyPrivacyMenuItem.setChecked(currentWebView.isBlocklistEnabled(NestedScrollWebView.EASYPRIVACY));
959 optionsFanboysAnnoyanceListMenuItem.setChecked(currentWebView.isBlocklistEnabled(NestedScrollWebView.FANBOYS_ANNOYANCE_LIST));
960 optionsFanboysSocialBlockingListMenuItem.setChecked(currentWebView.isBlocklistEnabled(NestedScrollWebView.FANBOYS_SOCIAL_BLOCKING_LIST));
961 optionsUltraListMenuItem.setChecked(currentWebView.isBlocklistEnabled(NestedScrollWebView.ULTRALIST));
962 optionsUltraPrivacyMenuItem.setChecked(currentWebView.isBlocklistEnabled(NestedScrollWebView.ULTRAPRIVACY));
963 optionsBlockAllThirdPartyRequestsMenuItem.setChecked(currentWebView.isBlocklistEnabled(NestedScrollWebView.THIRD_PARTY_REQUESTS));
964 optionsSwipeToRefreshMenuItem.setChecked(currentWebView.getSwipeToRefresh());
965 optionsWideViewportMenuItem.setChecked(currentWebView.getSettings().getUseWideViewPort());
966 optionsDisplayImagesMenuItem.setChecked(currentWebView.getSettings().getLoadsImagesAutomatically());
968 // Initialize the display names for the blocklists with the number of blocked requests.
969 optionsBlocklistsMenuItem.setTitle(getString(R.string.blocklists) + " - " + currentWebView.getRequestsCount(NestedScrollWebView.BLOCKED_REQUESTS));
970 optionsEasyListMenuItem.setTitle(currentWebView.getRequestsCount(NestedScrollWebView.EASYLIST) + " - " + getString(R.string.easylist));
971 optionsEasyPrivacyMenuItem.setTitle(currentWebView.getRequestsCount(NestedScrollWebView.EASYPRIVACY) + " - " + getString(R.string.easyprivacy));
972 optionsFanboysAnnoyanceListMenuItem.setTitle(currentWebView.getRequestsCount(NestedScrollWebView.FANBOYS_ANNOYANCE_LIST) + " - " + getString(R.string.fanboys_annoyance_list));
973 optionsFanboysSocialBlockingListMenuItem.setTitle(currentWebView.getRequestsCount(NestedScrollWebView.FANBOYS_SOCIAL_BLOCKING_LIST) + " - " + getString(R.string.fanboys_social_blocking_list));
974 optionsUltraListMenuItem.setTitle(currentWebView.getRequestsCount(NestedScrollWebView.ULTRALIST) + " - " + getString(R.string.ultralist));
975 optionsUltraPrivacyMenuItem.setTitle(currentWebView.getRequestsCount(NestedScrollWebView.ULTRAPRIVACY) + " - " + getString(R.string.ultraprivacy));
976 optionsBlockAllThirdPartyRequestsMenuItem.setTitle(currentWebView.getRequestsCount(NestedScrollWebView.THIRD_PARTY_REQUESTS) + " - " + getString(R.string.block_all_third_party_requests));
978 // Only modify third-party cookies if the API >= 21.
979 if (Build.VERSION.SDK_INT >= 21) {
980 // Set the status of the third-party cookies checkbox.
981 optionsThirdPartyCookiesMenuItem.setChecked(cookieManager.acceptThirdPartyCookies(currentWebView));
983 // Enable third-party cookies if first-party cookies are enabled.
984 optionsThirdPartyCookiesMenuItem.setEnabled(cookieManager.acceptCookie());
987 // Enable DOM Storage if JavaScript is enabled.
988 optionsDomStorageMenuItem.setEnabled(currentWebView.getSettings().getJavaScriptEnabled());
990 // Set the checkbox status for dark WebView if the WebView supports it.
991 if (WebViewFeature.isFeatureSupported(WebViewFeature.FORCE_DARK)) {
992 optionsDarkWebViewMenuItem.setChecked(WebSettingsCompat.getForceDark(currentWebView.getSettings()) == WebSettingsCompat.FORCE_DARK_ON);
996 // Set the checked status of the first party cookies menu item.
997 optionsFirstPartyCookiesMenuItem.setChecked(cookieManager.acceptCookie());
999 // Enable Clear Cookies if there are any.
1000 optionsClearCookiesMenuItem.setEnabled(cookieManager.hasCookies());
1002 // Get the application's private data directory, which will be something like `/data/user/0/com.stoutner.privacybrowser.standard`, which links to `/data/data/com.stoutner.privacybrowser.standard`.
1003 String privateDataDirectoryString = getApplicationInfo().dataDir;
1005 // Get a count of the number of files in the Local Storage directory.
1006 File localStorageDirectory = new File (privateDataDirectoryString + "/app_webview/Local Storage/");
1007 int localStorageDirectoryNumberOfFiles = 0;
1008 if (localStorageDirectory.exists()) {
1009 // `Objects.requireNonNull` removes a lint warning that `localStorageDirectory.list` might produce a null pointed exception if it is dereferenced.
1010 localStorageDirectoryNumberOfFiles = Objects.requireNonNull(localStorageDirectory.list()).length;
1013 // Get a count of the number of files in the IndexedDB directory.
1014 File indexedDBDirectory = new File (privateDataDirectoryString + "/app_webview/IndexedDB");
1015 int indexedDBDirectoryNumberOfFiles = 0;
1016 if (indexedDBDirectory.exists()) {
1017 // `Objects.requireNonNull` removes a lint warning that `indexedDBDirectory.list` might produce a null pointed exception if it is dereferenced.
1018 indexedDBDirectoryNumberOfFiles = Objects.requireNonNull(indexedDBDirectory.list()).length;
1021 // Enable Clear DOM Storage if there is any.
1022 optionsClearDomStorageMenuItem.setEnabled(localStorageDirectoryNumberOfFiles > 0 || indexedDBDirectoryNumberOfFiles > 0);
1024 // Enable Clear Form Data is there is any. This can be removed once the minimum API >= 26.
1025 if (Build.VERSION.SDK_INT < 26) {
1026 // Get the WebView database.
1027 WebViewDatabase webViewDatabase = WebViewDatabase.getInstance(this);
1029 // Enable the clear form data menu item if there is anything to clear.
1030 optionsClearFormDataMenuItem.setEnabled(webViewDatabase.hasFormData());
1033 // Enable Clear Data if any of the submenu items are enabled.
1034 optionsClearDataMenuItem.setEnabled(optionsClearCookiesMenuItem.isEnabled() || optionsClearDomStorageMenuItem.isEnabled() || optionsClearFormDataMenuItem.isEnabled());
1036 // Disable Fanboy's Social Blocking List menu item if Fanboy's Annoyance List is checked.
1037 optionsFanboysSocialBlockingListMenuItem.setEnabled(!optionsFanboysAnnoyanceListMenuItem.isChecked());
1039 // Set the proxy title and check the applied proxy.
1040 switch (proxyMode) {
1041 case ProxyHelper.NONE:
1042 // Set the proxy title.
1043 optionsProxyMenuItem.setTitle(getString(R.string.proxy) + " - " + getString(R.string.proxy_none));
1045 // Check the proxy None radio button.
1046 optionsProxyNoneMenuItem.setChecked(true);
1049 case ProxyHelper.TOR:
1050 // Set the proxy title.
1051 optionsProxyMenuItem.setTitle(getString(R.string.proxy) + " - " + getString(R.string.proxy_tor));
1053 // Check the proxy Tor radio button.
1054 optionsProxyTorMenuItem.setChecked(true);
1057 case ProxyHelper.I2P:
1058 // Set the proxy title.
1059 optionsProxyMenuItem.setTitle(getString(R.string.proxy) + " - " + getString(R.string.proxy_i2p));
1061 // Check the proxy I2P radio button.
1062 optionsProxyI2pMenuItem.setChecked(true);
1065 case ProxyHelper.CUSTOM:
1066 // Set the proxy title.
1067 optionsProxyMenuItem.setTitle(getString(R.string.proxy) + " - " + getString(R.string.proxy_custom));
1069 // Check the proxy Custom radio button.
1070 optionsProxyCustomMenuItem.setChecked(true);
1074 // Select the current user agent menu item. A switch statement cannot be used because the user agents are not compile time constants.
1075 if (currentUserAgent.equals(getResources().getStringArray(R.array.user_agent_data)[0])) { // Privacy Browser.
1076 // Update the user agent menu item title.
1077 optionsUserAgentMenuItem.setTitle(getString(R.string.options_user_agent) + " - " + getString(R.string.user_agent_privacy_browser));
1079 // Select the Privacy Browser radio box.
1080 optionsUserAgentPrivacyBrowserMenuItem.setChecked(true);
1081 } else if (currentUserAgent.equals(webViewDefaultUserAgent)) { // WebView Default.
1082 // Update the user agent menu item title.
1083 optionsUserAgentMenuItem.setTitle(getString(R.string.options_user_agent) + " - " + getString(R.string.user_agent_webview_default));
1085 // Select the WebView Default radio box.
1086 optionsUserAgentWebViewDefaultMenuItem.setChecked(true);
1087 } else if (currentUserAgent.equals(getResources().getStringArray(R.array.user_agent_data)[2])) { // Firefox on Android.
1088 // Update the user agent menu item title.
1089 optionsUserAgentMenuItem.setTitle(getString(R.string.options_user_agent) + " - " + getString(R.string.user_agent_firefox_on_android));
1091 // Select the Firefox on Android radio box.
1092 optionsUserAgentFirefoxOnAndroidMenuItem.setChecked(true);
1093 } else if (currentUserAgent.equals(getResources().getStringArray(R.array.user_agent_data)[3])) { // Chrome on Android.
1094 // Update the user agent menu item title.
1095 optionsUserAgentMenuItem.setTitle(getString(R.string.options_user_agent) + " - " + getString(R.string.user_agent_chrome_on_android));
1097 // Select the Chrome on Android radio box.
1098 optionsUserAgentChromeOnAndroidMenuItem.setChecked(true);
1099 } else if (currentUserAgent.equals(getResources().getStringArray(R.array.user_agent_data)[4])) { // Safari on iOS.
1100 // Update the user agent menu item title.
1101 optionsUserAgentMenuItem.setTitle(getString(R.string.options_user_agent) + " - " + getString(R.string.user_agent_safari_on_ios));
1103 // Select the Safari on iOS radio box.
1104 optionsUserAgentSafariOnIosMenuItem.setChecked(true);
1105 } else if (currentUserAgent.equals(getResources().getStringArray(R.array.user_agent_data)[5])) { // Firefox on Linux.
1106 // Update the user agent menu item title.
1107 optionsUserAgentMenuItem.setTitle(getString(R.string.options_user_agent) + " - " + getString(R.string.user_agent_firefox_on_linux));
1109 // Select the Firefox on Linux radio box.
1110 optionsUserAgentFirefoxOnLinuxMenuItem.setChecked(true);
1111 } else if (currentUserAgent.equals(getResources().getStringArray(R.array.user_agent_data)[6])) { // Chromium on Linux.
1112 // Update the user agent menu item title.
1113 optionsUserAgentMenuItem.setTitle(getString(R.string.options_user_agent) + " - " + getString(R.string.user_agent_chromium_on_linux));
1115 // Select the Chromium on Linux radio box.
1116 optionsUserAgentChromiumOnLinuxMenuItem.setChecked(true);
1117 } else if (currentUserAgent.equals(getResources().getStringArray(R.array.user_agent_data)[7])) { // Firefox on Windows.
1118 // Update the user agent menu item title.
1119 optionsUserAgentMenuItem.setTitle(getString(R.string.options_user_agent) + " - " + getString(R.string.user_agent_firefox_on_windows));
1121 // Select the Firefox on Windows radio box.
1122 optionsUserAgentFirefoxOnWindowsMenuItem.setChecked(true);
1123 } else if (currentUserAgent.equals(getResources().getStringArray(R.array.user_agent_data)[8])) { // Chrome on Windows.
1124 // Update the user agent menu item title.
1125 optionsUserAgentMenuItem.setTitle(getString(R.string.options_user_agent) + " - " + getString(R.string.user_agent_chrome_on_windows));
1127 // Select the Chrome on Windows radio box.
1128 optionsUserAgentChromeOnWindowsMenuItem.setChecked(true);
1129 } else if (currentUserAgent.equals(getResources().getStringArray(R.array.user_agent_data)[9])) { // Edge on Windows.
1130 // Update the user agent menu item title.
1131 optionsUserAgentMenuItem.setTitle(getString(R.string.options_user_agent) + " - " + getString(R.string.user_agent_edge_on_windows));
1133 // Select the Edge on Windows radio box.
1134 optionsUserAgentEdgeOnWindowsMenuItem.setChecked(true);
1135 } else if (currentUserAgent.equals(getResources().getStringArray(R.array.user_agent_data)[10])) { // Internet Explorer on Windows.
1136 // Update the user agent menu item title.
1137 optionsUserAgentMenuItem.setTitle(getString(R.string.options_user_agent) + " - " + getString(R.string.user_agent_internet_explorer_on_windows));
1139 // Select the Internet on Windows radio box.
1140 optionsUserAgentInternetExplorerOnWindowsMenuItem.setChecked(true);
1141 } else if (currentUserAgent.equals(getResources().getStringArray(R.array.user_agent_data)[11])) { // Safari on macOS.
1142 // Update the user agent menu item title.
1143 optionsUserAgentMenuItem.setTitle(getString(R.string.options_user_agent) + " - " + getString(R.string.user_agent_safari_on_macos));
1145 // Select the Safari on macOS radio box.
1146 optionsUserAgentSafariOnMacosMenuItem.setChecked(true);
1147 } else { // Custom user agent.
1148 // Update the user agent menu item title.
1149 optionsUserAgentMenuItem.setTitle(getString(R.string.options_user_agent) + " - " + getString(R.string.user_agent_custom));
1151 // Select the Custom radio box.
1152 optionsUserAgentCustomMenuItem.setChecked(true);
1155 // Set the font size title.
1156 optionsFontSizeMenuItem.setTitle(getString(R.string.font_size) + " - " + fontSize + "%");
1158 // Run all the other default commands.
1159 super.onPrepareOptionsMenu(menu);
1161 // Display the menu.
1166 public boolean onOptionsItemSelected(MenuItem menuItem) {
1167 // Get a handle for the shared preferences.
1168 SharedPreferences sharedPreferences = PreferenceManager.getDefaultSharedPreferences(this);
1170 // Get a handle for the cookie manager.
1171 CookieManager cookieManager = CookieManager.getInstance();
1173 // Get the selected menu item ID.
1174 int menuItemId = menuItem.getItemId();
1176 // Run the commands that correlate to the selected menu item.
1177 if (menuItemId == R.id.javascript) { // JavaScript.
1178 // Toggle the JavaScript status.
1179 currentWebView.getSettings().setJavaScriptEnabled(!currentWebView.getSettings().getJavaScriptEnabled());
1181 // Update the privacy icon.
1182 updatePrivacyIcons(true);
1184 // Display a `Snackbar`.
1185 if (currentWebView.getSettings().getJavaScriptEnabled()) { // JavaScrip is enabled.
1186 Snackbar.make(webViewPager, R.string.javascript_enabled, Snackbar.LENGTH_SHORT).show();
1187 } else if (cookieManager.acceptCookie()) { // JavaScript is disabled, but first-party cookies are enabled.
1188 Snackbar.make(webViewPager, R.string.javascript_disabled, Snackbar.LENGTH_SHORT).show();
1189 } else { // Privacy mode.
1190 Snackbar.make(webViewPager, R.string.privacy_mode, Snackbar.LENGTH_SHORT).show();
1193 // Reload the current WebView.
1194 currentWebView.reload();
1196 // Consume the event.
1198 } else if (menuItemId == R.id.refresh) { // Refresh.
1199 // Run the command that correlates to the current status of the menu item.
1200 if (menuItem.getTitle().equals(getString(R.string.refresh))) { // The refresh button was pushed.
1201 // Reload the current WebView.
1202 currentWebView.reload();
1203 } else { // The stop button was pushed.
1204 // Stop the loading of the WebView.
1205 currentWebView.stopLoading();
1208 // Consume the event.
1210 } else if (menuItemId == R.id.bookmarks) { // Bookmarks.
1211 // Open the bookmarks drawer.
1212 drawerLayout.openDrawer(GravityCompat.END);
1214 // Consume the event.
1216 } else if (menuItemId == R.id.first_party_cookies) { // First-party cookies.
1217 // Switch the first-party cookie status.
1218 cookieManager.setAcceptCookie(!cookieManager.acceptCookie());
1220 // Store the first-party cookie status.
1221 currentWebView.setAcceptFirstPartyCookies(cookieManager.acceptCookie());
1223 // Update the menu checkbox.
1224 menuItem.setChecked(cookieManager.acceptCookie());
1226 // Update the privacy icon.
1227 updatePrivacyIcons(true);
1229 // Display a snackbar.
1230 if (cookieManager.acceptCookie()) { // First-party cookies are enabled.
1231 Snackbar.make(webViewPager, R.string.first_party_cookies_enabled, Snackbar.LENGTH_SHORT).show();
1232 } else if (currentWebView.getSettings().getJavaScriptEnabled()) { // JavaScript is still enabled.
1233 Snackbar.make(webViewPager, R.string.first_party_cookies_disabled, Snackbar.LENGTH_SHORT).show();
1234 } else { // Privacy mode.
1235 Snackbar.make(webViewPager, R.string.privacy_mode, Snackbar.LENGTH_SHORT).show();
1238 // Reload the current WebView.
1239 currentWebView.reload();
1241 // Consume the event.
1243 } else if (menuItemId == R.id.third_party_cookies) { // Third-party cookies.
1244 // Only act if the API >= 21. Otherwise, there are no third-party cookie controls.
1245 if (Build.VERSION.SDK_INT >= 21) {
1246 // Toggle the status of thirdPartyCookiesEnabled.
1247 cookieManager.setAcceptThirdPartyCookies(currentWebView, !cookieManager.acceptThirdPartyCookies(currentWebView));
1249 // Update the menu checkbox.
1250 menuItem.setChecked(cookieManager.acceptThirdPartyCookies(currentWebView));
1252 // Display a snackbar.
1253 if (cookieManager.acceptThirdPartyCookies(currentWebView)) {
1254 Snackbar.make(webViewPager, R.string.third_party_cookies_enabled, Snackbar.LENGTH_SHORT).show();
1256 Snackbar.make(webViewPager, R.string.third_party_cookies_disabled, Snackbar.LENGTH_SHORT).show();
1259 // Reload the current WebView.
1260 currentWebView.reload();
1263 // Consume the event.
1265 } else if (menuItemId == R.id.dom_storage) { // DOM storage.
1266 // Toggle the status of domStorageEnabled.
1267 currentWebView.getSettings().setDomStorageEnabled(!currentWebView.getSettings().getDomStorageEnabled());
1269 // Update the menu checkbox.
1270 menuItem.setChecked(currentWebView.getSettings().getDomStorageEnabled());
1272 // Update the privacy icon.
1273 updatePrivacyIcons(true);
1275 // Display a snackbar.
1276 if (currentWebView.getSettings().getDomStorageEnabled()) {
1277 Snackbar.make(webViewPager, R.string.dom_storage_enabled, Snackbar.LENGTH_SHORT).show();
1279 Snackbar.make(webViewPager, R.string.dom_storage_disabled, Snackbar.LENGTH_SHORT).show();
1282 // Reload the current WebView.
1283 currentWebView.reload();
1285 // Consume the event.
1287 } else if (menuItemId == R.id.save_form_data) { // Form data. This can be removed once the minimum API >= 26.
1288 // Switch the status of saveFormDataEnabled.
1289 currentWebView.getSettings().setSaveFormData(!currentWebView.getSettings().getSaveFormData());
1291 // Update the menu checkbox.
1292 menuItem.setChecked(currentWebView.getSettings().getSaveFormData());
1294 // Display a snackbar.
1295 if (currentWebView.getSettings().getSaveFormData()) {
1296 Snackbar.make(webViewPager, R.string.form_data_enabled, Snackbar.LENGTH_SHORT).show();
1298 Snackbar.make(webViewPager, R.string.form_data_disabled, Snackbar.LENGTH_SHORT).show();
1301 // Update the privacy icon.
1302 updatePrivacyIcons(true);
1304 // Reload the current WebView.
1305 currentWebView.reload();
1307 // Consume the event.
1309 } else if (menuItemId == R.id.clear_cookies) { // Clear cookies.
1310 // Create a snackbar.
1311 Snackbar.make(webViewPager, R.string.cookies_deleted, Snackbar.LENGTH_LONG)
1312 .setAction(R.string.undo, v -> {
1313 // Do nothing because everything will be handled by `onDismissed()` below.
1315 .addCallback(new Snackbar.Callback() {
1317 public void onDismissed(Snackbar snackbar, int event) {
1318 if (event != Snackbar.Callback.DISMISS_EVENT_ACTION) { // The snackbar was dismissed without the undo button being pushed.
1319 // Delete the cookies, which command varies by SDK.
1320 if (Build.VERSION.SDK_INT < 21) {
1321 cookieManager.removeAllCookie();
1323 cookieManager.removeAllCookies(null);
1330 // Consume the event.
1332 } else if (menuItemId == R.id.clear_dom_storage) { // Clear DOM storage.
1333 // Create a snackbar.
1334 Snackbar.make(webViewPager, R.string.dom_storage_deleted, Snackbar.LENGTH_LONG)
1335 .setAction(R.string.undo, v -> {
1336 // Do nothing because everything will be handled by `onDismissed()` below.
1338 .addCallback(new Snackbar.Callback() {
1340 public void onDismissed(Snackbar snackbar, int event) {
1341 if (event != Snackbar.Callback.DISMISS_EVENT_ACTION) { // The snackbar was dismissed without the undo button being pushed.
1342 // Delete the DOM Storage.
1343 WebStorage webStorage = WebStorage.getInstance();
1344 webStorage.deleteAllData();
1346 // Initialize a handler to manually delete the DOM storage files and directories.
1347 Handler deleteDomStorageHandler = new Handler();
1349 // Setup a runnable to manually delete the DOM storage files and directories.
1350 Runnable deleteDomStorageRunnable = () -> {
1352 // Get a handle for the runtime.
1353 Runtime runtime = Runtime.getRuntime();
1355 // Get the application's private data directory, which will be something like `/data/user/0/com.stoutner.privacybrowser.standard`,
1356 // which links to `/data/data/com.stoutner.privacybrowser.standard`.
1357 String privateDataDirectoryString = getApplicationInfo().dataDir;
1359 // A string array must be used because the directory contains a space and `Runtime.exec` will otherwise not escape the string correctly.
1360 Process deleteLocalStorageProcess = runtime.exec(new String[]{"rm", "-rf", privateDataDirectoryString + "/app_webview/Local Storage/"});
1362 // Multiple commands must be used because `Runtime.exec()` does not like `*`.
1363 Process deleteIndexProcess = runtime.exec("rm -rf " + privateDataDirectoryString + "/app_webview/IndexedDB");
1364 Process deleteQuotaManagerProcess = runtime.exec("rm -f " + privateDataDirectoryString + "/app_webview/QuotaManager");
1365 Process deleteQuotaManagerJournalProcess = runtime.exec("rm -f " + privateDataDirectoryString + "/app_webview/QuotaManager-journal");
1366 Process deleteDatabasesProcess = runtime.exec("rm -rf " + privateDataDirectoryString + "/app_webview/databases");
1368 // Wait for the processes to finish.
1369 deleteLocalStorageProcess.waitFor();
1370 deleteIndexProcess.waitFor();
1371 deleteQuotaManagerProcess.waitFor();
1372 deleteQuotaManagerJournalProcess.waitFor();
1373 deleteDatabasesProcess.waitFor();
1374 } catch (Exception exception) {
1375 // Do nothing if an error is thrown.
1379 // Manually delete the DOM storage files after 200 milliseconds.
1380 deleteDomStorageHandler.postDelayed(deleteDomStorageRunnable, 200);
1386 // Consume the event.
1388 } else if (menuItemId == R.id.clear_form_data) { // Clear form data. This can be remove once the minimum API >= 26.
1389 // Create a snackbar.
1390 Snackbar.make(webViewPager, R.string.form_data_deleted, Snackbar.LENGTH_LONG)
1391 .setAction(R.string.undo, v -> {
1392 // Do nothing because everything will be handled by `onDismissed()` below.
1394 .addCallback(new Snackbar.Callback() {
1396 public void onDismissed(Snackbar snackbar, int event) {
1397 if (event != Snackbar.Callback.DISMISS_EVENT_ACTION) { // The snackbar was dismissed without the undo button being pushed.
1398 // Get a handle for the webView database.
1399 WebViewDatabase webViewDatabase = WebViewDatabase.getInstance(getApplicationContext());
1401 // Delete the form data.
1402 webViewDatabase.clearFormData();
1408 // Consume the event.
1410 } else if (menuItemId == R.id.easylist) { // EasyList.
1411 // Toggle the EasyList status.
1412 currentWebView.enableBlocklist(NestedScrollWebView.EASYLIST, !currentWebView.isBlocklistEnabled(NestedScrollWebView.EASYLIST));
1414 // Update the menu checkbox.
1415 menuItem.setChecked(currentWebView.isBlocklistEnabled(NestedScrollWebView.EASYLIST));
1417 // Reload the current WebView.
1418 currentWebView.reload();
1420 // Consume the event.
1422 } else if (menuItemId == R.id.easyprivacy) { // EasyPrivacy.
1423 // Toggle the EasyPrivacy status.
1424 currentWebView.enableBlocklist(NestedScrollWebView.EASYPRIVACY, !currentWebView.isBlocklistEnabled(NestedScrollWebView.EASYPRIVACY));
1426 // Update the menu checkbox.
1427 menuItem.setChecked(currentWebView.isBlocklistEnabled(NestedScrollWebView.EASYPRIVACY));
1429 // Reload the current WebView.
1430 currentWebView.reload();
1432 // Consume the event.
1434 } else if (menuItemId == R.id.fanboys_annoyance_list) { // Fanboy's Annoyance List.
1435 // Toggle Fanboy's Annoyance List status.
1436 currentWebView.enableBlocklist(NestedScrollWebView.FANBOYS_ANNOYANCE_LIST, !currentWebView.isBlocklistEnabled(NestedScrollWebView.FANBOYS_ANNOYANCE_LIST));
1438 // Update the menu checkbox.
1439 menuItem.setChecked(currentWebView.isBlocklistEnabled(NestedScrollWebView.FANBOYS_ANNOYANCE_LIST));
1441 // Update the staus of Fanboy's Social Blocking List.
1442 optionsFanboysSocialBlockingListMenuItem.setEnabled(!currentWebView.isBlocklistEnabled(NestedScrollWebView.FANBOYS_ANNOYANCE_LIST));
1444 // Reload the current WebView.
1445 currentWebView.reload();
1447 // Consume the event.
1449 } else if (menuItemId == R.id.fanboys_social_blocking_list) { // Fanboy's Social Blocking List.
1450 // Toggle Fanboy's Social Blocking List status.
1451 currentWebView.enableBlocklist(NestedScrollWebView.FANBOYS_SOCIAL_BLOCKING_LIST, !currentWebView.isBlocklistEnabled(NestedScrollWebView.FANBOYS_SOCIAL_BLOCKING_LIST));
1453 // Update the menu checkbox.
1454 menuItem.setChecked(currentWebView.isBlocklistEnabled(NestedScrollWebView.FANBOYS_SOCIAL_BLOCKING_LIST));
1456 // Reload the current WebView.
1457 currentWebView.reload();
1459 // Consume the event.
1461 } else if (menuItemId == R.id.ultralist) { // UltraList.
1462 // Toggle the UltraList status.
1463 currentWebView.enableBlocklist(NestedScrollWebView.ULTRALIST, !currentWebView.isBlocklistEnabled(NestedScrollWebView.ULTRALIST));
1465 // Update the menu checkbox.
1466 menuItem.setChecked(currentWebView.isBlocklistEnabled(NestedScrollWebView.ULTRALIST));
1468 // Reload the current WebView.
1469 currentWebView.reload();
1471 // Consume the event.
1473 } else if (menuItemId == R.id.ultraprivacy) { // UltraPrivacy.
1474 // Toggle the UltraPrivacy status.
1475 currentWebView.enableBlocklist(NestedScrollWebView.ULTRAPRIVACY, !currentWebView.isBlocklistEnabled(NestedScrollWebView.ULTRAPRIVACY));
1477 // Update the menu checkbox.
1478 menuItem.setChecked(currentWebView.isBlocklistEnabled(NestedScrollWebView.ULTRAPRIVACY));
1480 // Reload the current WebView.
1481 currentWebView.reload();
1483 // Consume the event.
1485 } else if (menuItemId == R.id.block_all_third_party_requests) { // Block all third-party requests.
1486 //Toggle the third-party requests blocker status.
1487 currentWebView.enableBlocklist(NestedScrollWebView.THIRD_PARTY_REQUESTS, !currentWebView.isBlocklistEnabled(NestedScrollWebView.THIRD_PARTY_REQUESTS));
1489 // Update the menu checkbox.
1490 menuItem.setChecked(currentWebView.isBlocklistEnabled(NestedScrollWebView.THIRD_PARTY_REQUESTS));
1492 // Reload the current WebView.
1493 currentWebView.reload();
1495 // Consume the event.
1497 } else if (menuItemId == R.id.proxy_none) { // Proxy - None.
1498 // Update the proxy mode.
1499 proxyMode = ProxyHelper.NONE;
1501 // Apply the proxy mode.
1504 // Consume the event.
1506 } else if (menuItemId == R.id.proxy_tor) { // Proxy - Tor.
1507 // Update the proxy mode.
1508 proxyMode = ProxyHelper.TOR;
1510 // Apply the proxy mode.
1513 // Consume the event.
1515 } else if (menuItemId == R.id.proxy_i2p) { // Proxy - I2P.
1516 // Update the proxy mode.
1517 proxyMode = ProxyHelper.I2P;
1519 // Apply the proxy mode.
1522 // Consume the event.
1524 } else if (menuItemId == R.id.proxy_custom) { // Proxy - Custom.
1525 // Update the proxy mode.
1526 proxyMode = ProxyHelper.CUSTOM;
1528 // Apply the proxy mode.
1531 // Consume the event.
1533 } else if (menuItemId == R.id.user_agent_privacy_browser) { // User Agent - Privacy Browser.
1534 // Update the user agent.
1535 currentWebView.getSettings().setUserAgentString(getResources().getStringArray(R.array.user_agent_data)[0]);
1537 // Reload the current WebView.
1538 currentWebView.reload();
1540 // Consume the event.
1542 } else if (menuItemId == R.id.user_agent_webview_default) { // User Agent - WebView Default.
1543 // Update the user agent.
1544 currentWebView.getSettings().setUserAgentString("");
1546 // Reload the current WebView.
1547 currentWebView.reload();
1549 // Consume the event.
1551 } else if (menuItemId == R.id.user_agent_firefox_on_android) { // User Agent - Firefox on Android.
1552 // Update the user agent.
1553 currentWebView.getSettings().setUserAgentString(getResources().getStringArray(R.array.user_agent_data)[2]);
1555 // Reload the current WebView.
1556 currentWebView.reload();
1558 // Consume the event.
1560 } else if (menuItemId == R.id.user_agent_chrome_on_android) { // User Agent - Chrome on Android.
1561 // Update the user agent.
1562 currentWebView.getSettings().setUserAgentString(getResources().getStringArray(R.array.user_agent_data)[3]);
1564 // Reload the current WebView.
1565 currentWebView.reload();
1567 // Consume the event.
1569 } else if (menuItemId == R.id.user_agent_safari_on_ios) { // User Agent - Safari on iOS.
1570 // Update the user agent.
1571 currentWebView.getSettings().setUserAgentString(getResources().getStringArray(R.array.user_agent_data)[4]);
1573 // Reload the current WebView.
1574 currentWebView.reload();
1576 // Consume the event.
1578 } else if (menuItemId == R.id.user_agent_firefox_on_linux) { // User Agent - Firefox on Linux.
1579 // Update the user agent.
1580 currentWebView.getSettings().setUserAgentString(getResources().getStringArray(R.array.user_agent_data)[5]);
1582 // Reload the current WebView.
1583 currentWebView.reload();
1585 // Consume the event.
1587 } else if (menuItemId == R.id.user_agent_chromium_on_linux) { // User Agent - Chromium on Linux.
1588 // Update the user agent.
1589 currentWebView.getSettings().setUserAgentString(getResources().getStringArray(R.array.user_agent_data)[6]);
1591 // Reload the current WebView.
1592 currentWebView.reload();
1594 // Consume the event.
1596 } else if (menuItemId == R.id.user_agent_firefox_on_windows) { // User Agent - Firefox on Windows.
1597 // Update the user agent.
1598 currentWebView.getSettings().setUserAgentString(getResources().getStringArray(R.array.user_agent_data)[7]);
1600 // Reload the current WebView.
1601 currentWebView.reload();
1603 // Consume the event.
1605 } else if (menuItemId == R.id.user_agent_chrome_on_windows) { // User Agent - Chrome on Windows.
1606 // Update the user agent.
1607 currentWebView.getSettings().setUserAgentString(getResources().getStringArray(R.array.user_agent_data)[8]);
1609 // Reload the current WebView.
1610 currentWebView.reload();
1612 // Consume the event.
1614 } else if (menuItemId == R.id.user_agent_edge_on_windows) { // User Agent - Edge on Windows.
1615 // Update the user agent.
1616 currentWebView.getSettings().setUserAgentString(getResources().getStringArray(R.array.user_agent_data)[9]);
1618 // Reload the current WebView.
1619 currentWebView.reload();
1621 // Consume the event.
1623 } else if (menuItemId == R.id.user_agent_internet_explorer_on_windows) { // User Agent - Internet Explorer on Windows.
1624 // Update the user agent.
1625 currentWebView.getSettings().setUserAgentString(getResources().getStringArray(R.array.user_agent_data)[10]);
1627 // Reload the current WebView.
1628 currentWebView.reload();
1630 // Consume the event.
1632 } else if (menuItemId == R.id.user_agent_safari_on_macos) { // User Agent - Safari on macOS.
1633 // Update the user agent.
1634 currentWebView.getSettings().setUserAgentString(getResources().getStringArray(R.array.user_agent_data)[11]);
1636 // Reload the current WebView.
1637 currentWebView.reload();
1639 // Consume the event.
1641 } else if (menuItemId == R.id.user_agent_custom) { // User Agent - Custom.
1642 // Update the user agent.
1643 currentWebView.getSettings().setUserAgentString(sharedPreferences.getString("custom_user_agent", getString(R.string.custom_user_agent_default_value)));
1645 // Reload the current WebView.
1646 currentWebView.reload();
1648 // Consume the event.
1650 } else if (menuItemId == R.id.font_size) { // Font size.
1651 // Instantiate the font size dialog.
1652 DialogFragment fontSizeDialogFragment = FontSizeDialog.displayDialog(currentWebView.getSettings().getTextZoom());
1654 // Show the font size dialog.
1655 fontSizeDialogFragment.show(getSupportFragmentManager(), getString(R.string.font_size));
1657 // Consume the event.
1659 } else if (menuItemId == R.id.swipe_to_refresh) { // Swipe to refresh.
1660 // Toggle the stored status of swipe to refresh.
1661 currentWebView.setSwipeToRefresh(!currentWebView.getSwipeToRefresh());
1663 // Update the swipe refresh layout.
1664 if (currentWebView.getSwipeToRefresh()) { // Swipe to refresh is enabled.
1665 // Only enable the swipe refresh layout if the WebView is scrolled to the top. It is updated every time the scroll changes.
1666 swipeRefreshLayout.setEnabled(currentWebView.getScrollY() == 0);
1667 } else { // Swipe to refresh is disabled.
1668 // Disable the swipe refresh layout.
1669 swipeRefreshLayout.setEnabled(false);
1672 // Consume the event.
1674 } else if (menuItemId == R.id.wide_viewport) { // Wide viewport.
1675 // Toggle the viewport.
1676 currentWebView.getSettings().setUseWideViewPort(!currentWebView.getSettings().getUseWideViewPort());
1678 // Consume the event.
1680 } else if (menuItemId == R.id.display_images) { // Display images.
1681 // Toggle the displaying of images.
1682 if (currentWebView.getSettings().getLoadsImagesAutomatically()) { // Images are currently loaded automatically.
1683 // Disable loading of images.
1684 currentWebView.getSettings().setLoadsImagesAutomatically(false);
1686 // Reload the website to remove existing images.
1687 currentWebView.reload();
1688 } else { // Images are not currently loaded automatically.
1689 // Enable loading of images. Missing images will be loaded without the need for a reload.
1690 currentWebView.getSettings().setLoadsImagesAutomatically(true);
1693 // Consume the event.
1695 } else if (menuItemId == R.id.dark_webview) { // Dark WebView.
1696 // Check to see if dark WebView is supported by this WebView.
1697 if (WebViewFeature.isFeatureSupported(WebViewFeature.FORCE_DARK)) {
1698 // Toggle the dark WebView setting.
1699 if (WebSettingsCompat.getForceDark(currentWebView.getSettings()) == WebSettingsCompat.FORCE_DARK_ON) { // Dark WebView is currently enabled.
1700 // Turn off dark WebView.
1701 WebSettingsCompat.setForceDark(currentWebView.getSettings(), WebSettingsCompat.FORCE_DARK_OFF);
1702 } else { // Dark WebView is currently disabled.
1703 // Turn on dark WebView.
1704 WebSettingsCompat.setForceDark(currentWebView.getSettings(), WebSettingsCompat.FORCE_DARK_ON);
1708 // Consume the event.
1710 } else if (menuItemId == R.id.find_on_page) { // Find on page.
1711 // Get a handle for the views.
1712 Toolbar toolbar = findViewById(R.id.toolbar);
1713 LinearLayout findOnPageLinearLayout = findViewById(R.id.find_on_page_linearlayout);
1714 EditText findOnPageEditText = findViewById(R.id.find_on_page_edittext);
1716 // Set the minimum height of the find on page linear layout to match the toolbar.
1717 findOnPageLinearLayout.setMinimumHeight(toolbar.getHeight());
1719 // Hide the toolbar.
1720 toolbar.setVisibility(View.GONE);
1722 // Show the find on page linear layout.
1723 findOnPageLinearLayout.setVisibility(View.VISIBLE);
1725 // Display the keyboard. The app must wait 200 ms before running the command to work around a bug in Android.
1726 // http://stackoverflow.com/questions/5520085/android-show-softkeyboard-with-showsoftinput-is-not-working
1727 findOnPageEditText.postDelayed(() -> {
1728 // Set the focus on the find on page edit text.
1729 findOnPageEditText.requestFocus();
1731 // Get a handle for the input method manager.
1732 InputMethodManager inputMethodManager = (InputMethodManager) getSystemService(Context.INPUT_METHOD_SERVICE);
1734 // Remove the lint warning below that the input method manager might be null.
1735 assert inputMethodManager != null;
1737 // Display the keyboard. `0` sets no input flags.
1738 inputMethodManager.showSoftInput(findOnPageEditText, 0);
1741 // Consume the event.
1743 } else if (menuItemId == R.id.print) { // Print.
1744 // Get a print manager instance.
1745 PrintManager printManager = (PrintManager) getSystemService(Context.PRINT_SERVICE);
1747 // Remove the lint error below that print manager might be null.
1748 assert printManager != null;
1750 // Create a print document adapter from the current WebView.
1751 PrintDocumentAdapter printDocumentAdapter = currentWebView.createPrintDocumentAdapter();
1753 // Print the document.
1754 printManager.print(getString(R.string.privacy_browser_webpage), printDocumentAdapter, null);
1756 // Consume the event.
1758 } else if (menuItemId == R.id.save_url) { // Save URL.
1759 // Prepare the save dialog. The dialog will be displayed once the file size and the content disposition have been acquired.
1760 new PrepareSaveDialog(this, this, getSupportFragmentManager(), SaveWebpageDialog.SAVE_URL, currentWebView.getSettings().getUserAgentString(),
1761 currentWebView.getAcceptFirstPartyCookies()).execute(currentWebView.getCurrentUrl());
1763 // Consume the event.
1765 } else if (menuItemId == R.id.save_archive) {
1766 // Instantiate the save dialog.
1767 DialogFragment saveArchiveFragment = SaveWebpageDialog.saveWebpage(SaveWebpageDialog.SAVE_ARCHIVE, currentWebView.getCurrentUrl(), null, null, null,
1770 // Show the save dialog. It must be named `save_dialog` so that the file picker can update the file name.
1771 saveArchiveFragment.show(getSupportFragmentManager(), getString(R.string.save_dialog));
1774 } else if (menuItemId == R.id.save_image) { // Save image.
1775 // Instantiate the save dialog.
1776 DialogFragment saveImageFragment = SaveWebpageDialog.saveWebpage(SaveWebpageDialog.SAVE_IMAGE, currentWebView.getCurrentUrl(), null, null, null,
1779 // Show the save dialog. It must be named `save_dialog` so that the file picker can update the file name.
1780 saveImageFragment.show(getSupportFragmentManager(), getString(R.string.save_dialog));
1782 // Consume the event.
1784 } else if (menuItemId == R.id.add_to_homescreen) { // Add to homescreen.
1785 // Instantiate the create home screen shortcut dialog.
1786 DialogFragment createHomeScreenShortcutDialogFragment = CreateHomeScreenShortcutDialog.createDialog(currentWebView.getTitle(), currentWebView.getUrl(),
1787 currentWebView.getFavoriteOrDefaultIcon());
1789 // Show the create home screen shortcut dialog.
1790 createHomeScreenShortcutDialogFragment.show(getSupportFragmentManager(), getString(R.string.create_shortcut));
1792 // Consume the event.
1794 } else if (menuItemId == R.id.view_source) { // View source.
1795 // Create an intent to launch the view source activity.
1796 Intent viewSourceIntent = new Intent(this, ViewSourceActivity.class);
1798 // Add the variables to the intent.
1799 viewSourceIntent.putExtra(ViewSourceActivityKt.CURRENT_URL, currentWebView.getUrl());
1800 viewSourceIntent.putExtra(ViewSourceActivityKt.USER_AGENT, currentWebView.getSettings().getUserAgentString());
1803 startActivity(viewSourceIntent);
1805 // Consume the event.
1807 } else if (menuItemId == R.id.share_url) { // Share URL.
1808 // Setup the share string.
1809 String shareString = currentWebView.getTitle() + " – " + currentWebView.getUrl();
1811 // Create the share intent.
1812 Intent shareIntent = new Intent(Intent.ACTION_SEND);
1814 // Add the share string to the intent.
1815 shareIntent.putExtra(Intent.EXTRA_TEXT, shareString);
1817 // Set the MIME type.
1818 shareIntent.setType("text/plain");
1820 // Set the intent to open in a new task.
1821 shareIntent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
1824 startActivity(Intent.createChooser(shareIntent, getString(R.string.share_url)));
1826 // Consume the event.
1828 } else if (menuItemId == R.id.open_with_app) { // Open with app.
1829 // Open the URL with an outside app.
1830 openWithApp(currentWebView.getUrl());
1832 // Consume the event.
1834 } else if (menuItemId == R.id.open_with_browser) { // Open with browser.
1835 // Open the URL with an outside browser.
1836 openWithBrowser(currentWebView.getUrl());
1838 // Consume the event.
1840 } else if (menuItemId == R.id.add_or_edit_domain) { // Add or edit domain.
1841 // Check if domain settings currently exist.
1842 if (currentWebView.getDomainSettingsApplied()) { // Edit the current domain settings.
1843 // Reapply the domain settings on returning to `MainWebViewActivity`.
1844 reapplyDomainSettingsOnRestart = true;
1846 // Create an intent to launch the domains activity.
1847 Intent domainsIntent = new Intent(this, DomainsActivity.class);
1849 // Add the extra information to the intent.
1850 domainsIntent.putExtra("load_domain", currentWebView.getDomainSettingsDatabaseId());
1851 domainsIntent.putExtra("close_on_back", true);
1852 domainsIntent.putExtra("current_url", currentWebView.getUrl());
1854 // Get the current certificate.
1855 SslCertificate sslCertificate = currentWebView.getCertificate();
1857 // Check to see if the SSL certificate is populated.
1858 if (sslCertificate != null) {
1859 // Extract the certificate to strings.
1860 String issuedToCName = sslCertificate.getIssuedTo().getCName();
1861 String issuedToOName = sslCertificate.getIssuedTo().getOName();
1862 String issuedToUName = sslCertificate.getIssuedTo().getUName();
1863 String issuedByCName = sslCertificate.getIssuedBy().getCName();
1864 String issuedByOName = sslCertificate.getIssuedBy().getOName();
1865 String issuedByUName = sslCertificate.getIssuedBy().getUName();
1866 long startDateLong = sslCertificate.getValidNotBeforeDate().getTime();
1867 long endDateLong = sslCertificate.getValidNotAfterDate().getTime();
1869 // Add the certificate to the intent.
1870 domainsIntent.putExtra("ssl_issued_to_cname", issuedToCName);
1871 domainsIntent.putExtra("ssl_issued_to_oname", issuedToOName);
1872 domainsIntent.putExtra("ssl_issued_to_uname", issuedToUName);
1873 domainsIntent.putExtra("ssl_issued_by_cname", issuedByCName);
1874 domainsIntent.putExtra("ssl_issued_by_oname", issuedByOName);
1875 domainsIntent.putExtra("ssl_issued_by_uname", issuedByUName);
1876 domainsIntent.putExtra("ssl_start_date", startDateLong);
1877 domainsIntent.putExtra("ssl_end_date", endDateLong);
1880 // Check to see if the current IP addresses have been received.
1881 if (currentWebView.hasCurrentIpAddresses()) {
1882 // Add the current IP addresses to the intent.
1883 domainsIntent.putExtra("current_ip_addresses", currentWebView.getCurrentIpAddresses());
1887 startActivity(domainsIntent);
1888 } else { // Add a new domain.
1889 // Apply the new domain settings on returning to `MainWebViewActivity`.
1890 reapplyDomainSettingsOnRestart = true;
1892 // Get the current domain
1893 Uri currentUri = Uri.parse(currentWebView.getUrl());
1894 String currentDomain = currentUri.getHost();
1896 // Initialize the database handler. The `0` specifies the database version, but that is ignored and set instead using a constant in `DomainsDatabaseHelper`.
1897 DomainsDatabaseHelper domainsDatabaseHelper = new DomainsDatabaseHelper(this, null, null, 0);
1899 // Create the domain and store the database ID.
1900 int newDomainDatabaseId = domainsDatabaseHelper.addDomain(currentDomain);
1902 // Create an intent to launch the domains activity.
1903 Intent domainsIntent = new Intent(this, DomainsActivity.class);
1905 // Add the extra information to the intent.
1906 domainsIntent.putExtra("load_domain", newDomainDatabaseId);
1907 domainsIntent.putExtra("close_on_back", true);
1908 domainsIntent.putExtra("current_url", currentWebView.getUrl());
1910 // Get the current certificate.
1911 SslCertificate sslCertificate = currentWebView.getCertificate();
1913 // Check to see if the SSL certificate is populated.
1914 if (sslCertificate != null) {
1915 // Extract the certificate to strings.
1916 String issuedToCName = sslCertificate.getIssuedTo().getCName();
1917 String issuedToOName = sslCertificate.getIssuedTo().getOName();
1918 String issuedToUName = sslCertificate.getIssuedTo().getUName();
1919 String issuedByCName = sslCertificate.getIssuedBy().getCName();
1920 String issuedByOName = sslCertificate.getIssuedBy().getOName();
1921 String issuedByUName = sslCertificate.getIssuedBy().getUName();
1922 long startDateLong = sslCertificate.getValidNotBeforeDate().getTime();
1923 long endDateLong = sslCertificate.getValidNotAfterDate().getTime();
1925 // Add the certificate to the intent.
1926 domainsIntent.putExtra("ssl_issued_to_cname", issuedToCName);
1927 domainsIntent.putExtra("ssl_issued_to_oname", issuedToOName);
1928 domainsIntent.putExtra("ssl_issued_to_uname", issuedToUName);
1929 domainsIntent.putExtra("ssl_issued_by_cname", issuedByCName);
1930 domainsIntent.putExtra("ssl_issued_by_oname", issuedByOName);
1931 domainsIntent.putExtra("ssl_issued_by_uname", issuedByUName);
1932 domainsIntent.putExtra("ssl_start_date", startDateLong);
1933 domainsIntent.putExtra("ssl_end_date", endDateLong);
1936 // Check to see if the current IP addresses have been received.
1937 if (currentWebView.hasCurrentIpAddresses()) {
1938 // Add the current IP addresses to the intent.
1939 domainsIntent.putExtra("current_ip_addresses", currentWebView.getCurrentIpAddresses());
1943 startActivity(domainsIntent);
1946 // Consume the event.
1948 } else if (menuItemId == R.id.ad_consent) { // Ad consent.
1949 // Instantiate the ad consent dialog.
1950 DialogFragment adConsentDialogFragment = new AdConsentDialog();
1952 // Display the ad consent dialog.
1953 adConsentDialogFragment.show(getSupportFragmentManager(), getString(R.string.ad_consent));
1955 // Consume the event.
1957 } else { // There is no match with the options menu. Pass the event up to the parent method.
1958 // Don't consume the event.
1959 return super.onOptionsItemSelected(menuItem);
1963 // removeAllCookies is deprecated, but it is required for API < 21.
1965 public boolean onNavigationItemSelected(@NonNull MenuItem menuItem) {
1966 // Get a handle for the shared preferences.
1967 SharedPreferences sharedPreferences = PreferenceManager.getDefaultSharedPreferences(this);
1969 // Get the menu item ID.
1970 int menuItemId = menuItem.getItemId();
1972 // Run the commands that correspond to the selected menu item.
1973 if (menuItemId == R.id.clear_and_exit) { // Clear and exit.
1974 // Clear and exit Privacy Browser.
1976 } else if (menuItemId == R.id.home) { // Home.
1977 // Load the homepage.
1978 loadUrl(currentWebView, sharedPreferences.getString("homepage", getString(R.string.homepage_default_value)));
1979 } else if (menuItemId == R.id.back) { // Back.
1980 // Check if the WebView can go back.
1981 if (currentWebView.canGoBack()) {
1982 // Get the current web back forward list.
1983 WebBackForwardList webBackForwardList = currentWebView.copyBackForwardList();
1985 // Get the previous entry URL.
1986 String previousUrl = webBackForwardList.getItemAtIndex(webBackForwardList.getCurrentIndex() - 1).getUrl();
1988 // Apply the domain settings.
1989 applyDomainSettings(currentWebView, previousUrl, false, false, false);
1991 // Load the previous website in the history.
1992 currentWebView.goBack();
1994 } else if (menuItemId == R.id.forward) { // Forward.
1995 // Check if the WebView can go forward.
1996 if (currentWebView.canGoForward()) {
1997 // Get the current web back forward list.
1998 WebBackForwardList webBackForwardList = currentWebView.copyBackForwardList();
2000 // Get the next entry URL.
2001 String nextUrl = webBackForwardList.getItemAtIndex(webBackForwardList.getCurrentIndex() + 1).getUrl();
2003 // Apply the domain settings.
2004 applyDomainSettings(currentWebView, nextUrl, false, false, false);
2006 // Load the next website in the history.
2007 currentWebView.goForward();
2009 } else if (menuItemId == R.id.history) { // History.
2010 // Instantiate the URL history dialog.
2011 DialogFragment urlHistoryDialogFragment = UrlHistoryDialog.loadBackForwardList(currentWebView.getWebViewFragmentId());
2013 // Show the URL history dialog.
2014 urlHistoryDialogFragment.show(getSupportFragmentManager(), getString(R.string.history));
2015 } else if (menuItemId == R.id.open) { // Open.
2016 // Instantiate the open file dialog.
2017 DialogFragment openDialogFragment = new OpenDialog();
2019 // Show the open file dialog.
2020 openDialogFragment.show(getSupportFragmentManager(), getString(R.string.open));
2021 } else if (menuItemId == R.id.requests) { // Requests.
2022 // Populate the resource requests.
2023 RequestsActivity.resourceRequests = currentWebView.getResourceRequests();
2025 // Create an intent to launch the Requests activity.
2026 Intent requestsIntent = new Intent(this, RequestsActivity.class);
2028 // Add the block third-party requests status to the intent.
2029 requestsIntent.putExtra("block_all_third_party_requests", currentWebView.isBlocklistEnabled(NestedScrollWebView.THIRD_PARTY_REQUESTS));
2032 startActivity(requestsIntent);
2033 } else if (menuItemId == R.id.downloads) { // Downloads.
2034 // Try the default system download manager.
2036 // Launch the default system Download Manager.
2037 Intent defaultDownloadManagerIntent = new Intent(DownloadManager.ACTION_VIEW_DOWNLOADS);
2039 // Launch as a new task so that the download manager and Privacy Browser show as separate windows in the recent tasks list.
2040 defaultDownloadManagerIntent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
2043 startActivity(defaultDownloadManagerIntent);
2044 } catch (Exception defaultDownloadManagerException) {
2045 // Try a generic file manager.
2047 // Create a generic file manager intent.
2048 Intent genericFileManagerIntent = new Intent(Intent.ACTION_VIEW);
2050 // Open the download directory.
2051 genericFileManagerIntent.setDataAndType(Uri.parse(Environment.getExternalStoragePublicDirectory(Environment.DIRECTORY_DOWNLOADS).toString()), DocumentsContract.Document.MIME_TYPE_DIR);
2053 // Launch as a new task so that the file manager and Privacy Browser show as separate windows in the recent tasks list.
2054 genericFileManagerIntent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
2057 startActivity(genericFileManagerIntent);
2058 } catch (Exception genericFileManagerException) {
2059 // Try an alternate file manager.
2061 // Create an alternate file manager intent.
2062 Intent alternateFileManagerIntent = new Intent(Intent.ACTION_VIEW);
2064 // Open the download directory.
2065 alternateFileManagerIntent.setDataAndType(Uri.parse(Environment.getExternalStoragePublicDirectory(Environment.DIRECTORY_DOWNLOADS).toString()), "resource/folder");
2067 // Launch as a new task so that the file manager and Privacy Browser show as separate windows in the recent tasks list.
2068 alternateFileManagerIntent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
2070 // Open the alternate file manager.
2071 startActivity(alternateFileManagerIntent);
2072 } catch (Exception alternateFileManagerException) {
2073 // Display a snackbar.
2074 Snackbar.make(currentWebView, R.string.no_file_manager_detected, Snackbar.LENGTH_INDEFINITE).show();
2078 } else if (menuItemId == R.id.domains) { // Domains.
2079 // Set the flag to reapply the domain settings on restart when returning from Domain Settings.
2080 reapplyDomainSettingsOnRestart = true;
2082 // Launch the domains activity.
2083 Intent domainsIntent = new Intent(this, DomainsActivity.class);
2085 // Add the extra information to the intent.
2086 domainsIntent.putExtra("current_url", currentWebView.getUrl());
2088 // Get the current certificate.
2089 SslCertificate sslCertificate = currentWebView.getCertificate();
2091 // Check to see if the SSL certificate is populated.
2092 if (sslCertificate != null) {
2093 // Extract the certificate to strings.
2094 String issuedToCName = sslCertificate.getIssuedTo().getCName();
2095 String issuedToOName = sslCertificate.getIssuedTo().getOName();
2096 String issuedToUName = sslCertificate.getIssuedTo().getUName();
2097 String issuedByCName = sslCertificate.getIssuedBy().getCName();
2098 String issuedByOName = sslCertificate.getIssuedBy().getOName();
2099 String issuedByUName = sslCertificate.getIssuedBy().getUName();
2100 long startDateLong = sslCertificate.getValidNotBeforeDate().getTime();
2101 long endDateLong = sslCertificate.getValidNotAfterDate().getTime();
2103 // Add the certificate to the intent.
2104 domainsIntent.putExtra("ssl_issued_to_cname", issuedToCName);
2105 domainsIntent.putExtra("ssl_issued_to_oname", issuedToOName);
2106 domainsIntent.putExtra("ssl_issued_to_uname", issuedToUName);
2107 domainsIntent.putExtra("ssl_issued_by_cname", issuedByCName);
2108 domainsIntent.putExtra("ssl_issued_by_oname", issuedByOName);
2109 domainsIntent.putExtra("ssl_issued_by_uname", issuedByUName);
2110 domainsIntent.putExtra("ssl_start_date", startDateLong);
2111 domainsIntent.putExtra("ssl_end_date", endDateLong);
2114 // Check to see if the current IP addresses have been received.
2115 if (currentWebView.hasCurrentIpAddresses()) {
2116 // Add the current IP addresses to the intent.
2117 domainsIntent.putExtra("current_ip_addresses", currentWebView.getCurrentIpAddresses());
2121 startActivity(domainsIntent);
2122 } else if (menuItemId == R.id.settings) { // Settings.
2123 // Set the flag to reapply app settings on restart when returning from Settings.
2124 reapplyAppSettingsOnRestart = true;
2126 // Set the flag to reapply the domain settings on restart when returning from Settings.
2127 reapplyDomainSettingsOnRestart = true;
2129 // Launch the settings activity.
2130 Intent settingsIntent = new Intent(this, SettingsActivity.class);
2131 startActivity(settingsIntent);
2132 } else if (menuItemId == R.id.import_export) { // Import/Export.
2133 // Create an intent to launch the import/export activity.
2134 Intent importExportIntent = new Intent(this, ImportExportActivity.class);
2137 startActivity(importExportIntent);
2138 } else if (menuItemId == R.id.logcat) { // Logcat.
2139 // Create an intent to launch the logcat activity.
2140 Intent logcatIntent = new Intent(this, LogcatActivity.class);
2143 startActivity(logcatIntent);
2144 } else if (menuItemId == R.id.guide) { // Guide.
2145 // Create an intent to launch the guide activity.
2146 Intent guideIntent = new Intent(this, GuideActivity.class);
2149 startActivity(guideIntent);
2150 } else if (menuItemId == R.id.about) { // About
2151 // Create an intent to launch the about activity.
2152 Intent aboutIntent = new Intent(this, AboutActivity.class);
2154 // Create a string array for the blocklist versions.
2155 String[] blocklistVersions = new String[]{easyList.get(0).get(0)[0], easyPrivacy.get(0).get(0)[0], fanboysAnnoyanceList.get(0).get(0)[0], fanboysSocialList.get(0).get(0)[0],
2156 ultraList.get(0).get(0)[0], ultraPrivacy.get(0).get(0)[0]};
2158 // Add the blocklist versions to the intent.
2159 aboutIntent.putExtra("blocklist_versions", blocklistVersions);
2162 startActivity(aboutIntent);
2165 // Close the navigation drawer.
2166 drawerLayout.closeDrawer(GravityCompat.START);
2171 public void onPostCreate(Bundle savedInstanceState) {
2172 // Run the default commands.
2173 super.onPostCreate(savedInstanceState);
2175 // Sync the state of the DrawerToggle after the default `onRestoreInstanceState()` has finished. This creates the navigation drawer icon.
2176 actionBarDrawerToggle.syncState();
2180 public void onConfigurationChanged(@NonNull Configuration newConfig) {
2181 // Run the default commands.
2182 super.onConfigurationChanged(newConfig);
2184 // Reload the ad for the free flavor if not in full screen mode.
2185 if (BuildConfig.FLAVOR.contentEquals("free") && !inFullScreenBrowsingMode) {
2186 // Get a handle for the ad view. This cannot be a class variable because it changes with each ad load.
2187 View adView = findViewById(R.id.adview);
2189 // Reload the ad. The AdView is destroyed and recreated, which changes the ID, every time it is reloaded to handle possible rotations.
2190 // `getContext()` can be used instead of `getActivity.getApplicationContext()` once the minimum API >= 23.
2191 AdHelper.loadAd(adView, getApplicationContext(), this, getString(R.string.ad_unit_id));
2194 // `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:
2195 // https://code.google.com/p/android/issues/detail?id=20493#c8
2196 // ActivityCompat.invalidateOptionsMenu(this);
2200 public void onCreateContextMenu(ContextMenu menu, View view, ContextMenu.ContextMenuInfo menuInfo) {
2201 // Get the hit test result.
2202 final WebView.HitTestResult hitTestResult = currentWebView.getHitTestResult();
2204 // Define the URL strings.
2205 final String imageUrl;
2206 final String linkUrl;
2208 // Get handles for the system managers.
2209 final ClipboardManager clipboardManager = (ClipboardManager) getSystemService(CLIPBOARD_SERVICE);
2211 // Remove the lint errors below that the clipboard manager might be null.
2212 assert clipboardManager != null;
2214 // Process the link according to the type.
2215 switch (hitTestResult.getType()) {
2216 // `SRC_ANCHOR_TYPE` is a link.
2217 case WebView.HitTestResult.SRC_ANCHOR_TYPE:
2218 // Get the target URL.
2219 linkUrl = hitTestResult.getExtra();
2221 // Set the target URL as the title of the `ContextMenu`.
2222 menu.setHeaderTitle(linkUrl);
2224 // Add an Open in New Tab entry.
2225 menu.add(R.string.open_in_new_tab).setOnMenuItemClickListener((MenuItem item) -> {
2226 // Load the link URL in a new tab and move to it.
2227 addNewTab(linkUrl, true);
2229 // Consume the event.
2233 // Add an Open in Background entry.
2234 menu.add(R.string.open_in_background).setOnMenuItemClickListener((MenuItem item) -> {
2235 // Load the link URL in a new tab but do not move to it.
2236 addNewTab(linkUrl, false);
2238 // Consume the event.
2242 // Add an Open with App entry.
2243 menu.add(R.string.open_with_app).setOnMenuItemClickListener((MenuItem item) -> {
2244 openWithApp(linkUrl);
2246 // Consume the event.
2250 // Add an Open with Browser entry.
2251 menu.add(R.string.open_with_browser).setOnMenuItemClickListener((MenuItem item) -> {
2252 openWithBrowser(linkUrl);
2254 // Consume the event.
2258 // Add a Copy URL entry.
2259 menu.add(R.string.copy_url).setOnMenuItemClickListener((MenuItem item) -> {
2260 // Save the link URL in a `ClipData`.
2261 ClipData srcAnchorTypeClipData = ClipData.newPlainText(getString(R.string.url), linkUrl);
2263 // Set the `ClipData` as the clipboard's primary clip.
2264 clipboardManager.setPrimaryClip(srcAnchorTypeClipData);
2266 // Consume the event.
2270 // Add a Save URL entry.
2271 menu.add(R.string.save_url).setOnMenuItemClickListener((MenuItem item) -> {
2272 // Prepare the save dialog. The dialog will be displayed once the file size and the content disposition have been acquired.
2273 new PrepareSaveDialog(this, this, getSupportFragmentManager(), SaveWebpageDialog.SAVE_URL, currentWebView.getSettings().getUserAgentString(),
2274 currentWebView.getAcceptFirstPartyCookies()).execute(linkUrl);
2276 // Consume the event.
2280 // Add an empty Cancel entry, which by default closes the context menu.
2281 menu.add(R.string.cancel);
2284 // `IMAGE_TYPE` is an image.
2285 case WebView.HitTestResult.IMAGE_TYPE:
2286 // Get the image URL.
2287 imageUrl = hitTestResult.getExtra();
2289 // Remove the incorrect lint warning below that the image URL might be null.
2290 assert imageUrl != null;
2292 // Set the context menu title.
2293 if (imageUrl.startsWith("data:")) { // The image data is contained in within the URL, making it exceedingly long.
2294 // Truncate the image URL before making it the title.
2295 menu.setHeaderTitle(imageUrl.substring(0, 100));
2296 } else { // The image URL does not contain the full image data.
2297 // Set the image URL as the title of the context menu.
2298 menu.setHeaderTitle(imageUrl);
2301 // Add an Open in New Tab entry.
2302 menu.add(R.string.open_image_in_new_tab).setOnMenuItemClickListener((MenuItem item) -> {
2303 // Load the image in a new tab.
2304 addNewTab(imageUrl, true);
2306 // Consume the event.
2310 // Add an Open with App entry.
2311 menu.add(R.string.open_with_app).setOnMenuItemClickListener((MenuItem item) -> {
2312 // Open the image URL with an external app.
2313 openWithApp(imageUrl);
2315 // Consume the event.
2319 // Add an Open with Browser entry.
2320 menu.add(R.string.open_with_browser).setOnMenuItemClickListener((MenuItem item) -> {
2321 // Open the image URL with an external browser.
2322 openWithBrowser(imageUrl);
2324 // Consume the event.
2328 // Add a View Image entry.
2329 menu.add(R.string.view_image).setOnMenuItemClickListener(item -> {
2330 // Load the image in the current tab.
2331 loadUrl(currentWebView, imageUrl);
2333 // Consume the event.
2337 // Add a Save Image entry.
2338 menu.add(R.string.save_image).setOnMenuItemClickListener((MenuItem item) -> {
2339 // Prepare the save dialog. The dialog will be displayed once the file size and the content disposition have been acquired.
2340 new PrepareSaveDialog(this, this, getSupportFragmentManager(), SaveWebpageDialog.SAVE_URL, currentWebView.getSettings().getUserAgentString(),
2341 currentWebView.getAcceptFirstPartyCookies()).execute(imageUrl);
2343 // Consume the event.
2347 // Add a Copy URL entry.
2348 menu.add(R.string.copy_url).setOnMenuItemClickListener((MenuItem item) -> {
2349 // Save the image URL in a clip data.
2350 ClipData imageTypeClipData = ClipData.newPlainText(getString(R.string.url), imageUrl);
2352 // Set the clip data as the clipboard's primary clip.
2353 clipboardManager.setPrimaryClip(imageTypeClipData);
2355 // Consume the event.
2359 // Add an empty Cancel entry, which by default closes the context menu.
2360 menu.add(R.string.cancel);
2363 // `SRC_IMAGE_ANCHOR_TYPE` is an image that is also a link.
2364 case WebView.HitTestResult.SRC_IMAGE_ANCHOR_TYPE:
2365 // Get the image URL.
2366 imageUrl = hitTestResult.getExtra();
2368 // Instantiate a handler.
2369 Handler handler = new Handler();
2371 // Get a message from the handler.
2372 Message message = handler.obtainMessage();
2374 // Request the image details from the last touched node be returned in the message.
2375 currentWebView.requestFocusNodeHref(message);
2377 // Get the link URL from the message data.
2378 linkUrl = message.getData().getString("url");
2380 // Set the link URL as the title of the context menu.
2381 menu.setHeaderTitle(linkUrl);
2383 // Add an Open in New Tab entry.
2384 menu.add(R.string.open_in_new_tab).setOnMenuItemClickListener((MenuItem item) -> {
2385 // Load the link URL in a new tab and move to it.
2386 addNewTab(linkUrl, true);
2388 // Consume the event.
2392 // Add an Open in Background entry.
2393 menu.add(R.string.open_in_background).setOnMenuItemClickListener((MenuItem item) -> {
2394 // Lod the link URL in a new tab but do not move to it.
2395 addNewTab(linkUrl, false);
2397 // Consume the event.
2401 // Add an Open Image in New Tab entry.
2402 menu.add(R.string.open_image_in_new_tab).setOnMenuItemClickListener((MenuItem item) -> {
2403 // Load the image in a new tab and move to it.
2404 addNewTab(imageUrl, true);
2406 // Consume the event.
2410 // Add an Open with App entry.
2411 menu.add(R.string.open_with_app).setOnMenuItemClickListener((MenuItem item) -> {
2412 // Open the link URL with an external app.
2413 openWithApp(linkUrl);
2415 // Consume the event.
2419 // Add an Open with Browser entry.
2420 menu.add(R.string.open_with_browser).setOnMenuItemClickListener((MenuItem item) -> {
2421 // Open the link URL with an external browser.
2422 openWithBrowser(linkUrl);
2424 // Consume the event.
2428 // Add a View Image entry.
2429 menu.add(R.string.view_image).setOnMenuItemClickListener((MenuItem item) -> {
2430 // View the image in the current tab.
2431 loadUrl(currentWebView, imageUrl);
2433 // Consume the event.
2437 // Add a Save Image entry.
2438 menu.add(R.string.save_image).setOnMenuItemClickListener((MenuItem item) -> {
2439 // Prepare the save dialog. The dialog will be displayed once the file size and the content disposition have been acquired.
2440 new PrepareSaveDialog(this, this, getSupportFragmentManager(), SaveWebpageDialog.SAVE_URL, currentWebView.getSettings().getUserAgentString(),
2441 currentWebView.getAcceptFirstPartyCookies()).execute(imageUrl);
2443 // Consume the event.
2447 // Add a Copy URL entry.
2448 menu.add(R.string.copy_url).setOnMenuItemClickListener((MenuItem item) -> {
2449 // Save the link URL in a clip data.
2450 ClipData srcImageAnchorTypeClipData = ClipData.newPlainText(getString(R.string.url), linkUrl);
2452 // Set the clip data as the clipboard's primary clip.
2453 clipboardManager.setPrimaryClip(srcImageAnchorTypeClipData);
2455 // Consume the event.
2459 // Add a Save URL entry.
2460 menu.add(R.string.save_url).setOnMenuItemClickListener((MenuItem item) -> {
2461 // Prepare the save dialog. The dialog will be displayed once the file size and the content disposition have been acquired.
2462 new PrepareSaveDialog(this, this, getSupportFragmentManager(), SaveWebpageDialog.SAVE_URL, currentWebView.getSettings().getUserAgentString(),
2463 currentWebView.getAcceptFirstPartyCookies()).execute(linkUrl);
2465 // Consume the event.
2469 // Add an empty Cancel entry, which by default closes the context menu.
2470 menu.add(R.string.cancel);
2473 case WebView.HitTestResult.EMAIL_TYPE:
2474 // Get the target URL.
2475 linkUrl = hitTestResult.getExtra();
2477 // Set the target URL as the title of the `ContextMenu`.
2478 menu.setHeaderTitle(linkUrl);
2480 // Add a Write Email entry.
2481 menu.add(R.string.write_email).setOnMenuItemClickListener(item -> {
2482 // Use `ACTION_SENDTO` instead of `ACTION_SEND` so that only email programs are launched.
2483 Intent emailIntent = new Intent(Intent.ACTION_SENDTO);
2485 // Parse the url and set it as the data for the `Intent`.
2486 emailIntent.setData(Uri.parse("mailto:" + linkUrl));
2488 // `FLAG_ACTIVITY_NEW_TASK` opens the email program in a new task instead as part of Privacy Browser.
2489 emailIntent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
2493 startActivity(emailIntent);
2494 } catch (ActivityNotFoundException exception) {
2495 // Display a snackbar.
2496 Snackbar.make(currentWebView, getString(R.string.error) + " " + exception, Snackbar.LENGTH_INDEFINITE).show();
2499 // Consume the event.
2503 // Add a Copy Email Address entry.
2504 menu.add(R.string.copy_email_address).setOnMenuItemClickListener(item -> {
2505 // Save the email address in a `ClipData`.
2506 ClipData srcEmailTypeClipData = ClipData.newPlainText(getString(R.string.email_address), linkUrl);
2508 // Set the `ClipData` as the clipboard's primary clip.
2509 clipboardManager.setPrimaryClip(srcEmailTypeClipData);
2511 // Consume the event.
2515 // Add an empty Cancel entry, which by default closes the context menu.
2516 menu.add(R.string.cancel);
2522 public void onCreateBookmark(DialogFragment dialogFragment, Bitmap favoriteIconBitmap) {
2523 // Get a handle for the bookmarks list view.
2524 ListView bookmarksListView = findViewById(R.id.bookmarks_drawer_listview);
2527 Dialog dialog = dialogFragment.getDialog();
2529 // Remove the incorrect lint warning below that the dialog might be null.
2530 assert dialog != null;
2532 // Get the views from the dialog fragment.
2533 EditText createBookmarkNameEditText = dialog.findViewById(R.id.create_bookmark_name_edittext);
2534 EditText createBookmarkUrlEditText = dialog.findViewById(R.id.create_bookmark_url_edittext);
2536 // Extract the strings from the edit texts.
2537 String bookmarkNameString = createBookmarkNameEditText.getText().toString();
2538 String bookmarkUrlString = createBookmarkUrlEditText.getText().toString();
2540 // Create a favorite icon byte array output stream.
2541 ByteArrayOutputStream favoriteIconByteArrayOutputStream = new ByteArrayOutputStream();
2543 // Convert the favorite icon bitmap to a byte array. `0` is for lossless compression (the only option for a PNG).
2544 favoriteIconBitmap.compress(Bitmap.CompressFormat.PNG, 0, favoriteIconByteArrayOutputStream);
2546 // Convert the favorite icon byte array stream to a byte array.
2547 byte[] favoriteIconByteArray = favoriteIconByteArrayOutputStream.toByteArray();
2549 // Display the new bookmark below the current items in the (0 indexed) list.
2550 int newBookmarkDisplayOrder = bookmarksListView.getCount();
2552 // Create the bookmark.
2553 bookmarksDatabaseHelper.createBookmark(bookmarkNameString, bookmarkUrlString, currentBookmarksFolder, newBookmarkDisplayOrder, favoriteIconByteArray);
2555 // Update the bookmarks cursor with the current contents of this folder.
2556 bookmarksCursor = bookmarksDatabaseHelper.getBookmarksByDisplayOrder(currentBookmarksFolder);
2558 // Update the list view.
2559 bookmarksCursorAdapter.changeCursor(bookmarksCursor);
2561 // Scroll to the new bookmark.
2562 bookmarksListView.setSelection(newBookmarkDisplayOrder);
2566 public void onCreateBookmarkFolder(DialogFragment dialogFragment, @NonNull Bitmap favoriteIconBitmap) {
2567 // Get a handle for the bookmarks list view.
2568 ListView bookmarksListView = findViewById(R.id.bookmarks_drawer_listview);
2571 Dialog dialog = dialogFragment.getDialog();
2573 // Remove the incorrect lint warning below that the dialog might be null.
2574 assert dialog != null;
2576 // Get handles for the views in the dialog fragment.
2577 EditText folderNameEditText = dialog.findViewById(R.id.folder_name_edittext);
2578 RadioButton defaultIconRadioButton = dialog.findViewById(R.id.default_icon_radiobutton);
2579 ImageView defaultIconImageView = dialog.findViewById(R.id.default_icon_imageview);
2581 // Get new folder name string.
2582 String folderNameString = folderNameEditText.getText().toString();
2584 // Create a folder icon bitmap.
2585 Bitmap folderIconBitmap;
2587 // Set the folder icon bitmap according to the dialog.
2588 if (defaultIconRadioButton.isChecked()) { // Use the default folder icon.
2589 // Get the default folder icon drawable.
2590 Drawable folderIconDrawable = defaultIconImageView.getDrawable();
2592 // Convert the folder icon drawable to a bitmap drawable.
2593 BitmapDrawable folderIconBitmapDrawable = (BitmapDrawable) folderIconDrawable;
2595 // Convert the folder icon bitmap drawable to a bitmap.
2596 folderIconBitmap = folderIconBitmapDrawable.getBitmap();
2597 } else { // Use the WebView favorite icon.
2598 // Copy the favorite icon bitmap to the folder icon bitmap.
2599 folderIconBitmap = favoriteIconBitmap;
2602 // Create a folder icon byte array output stream.
2603 ByteArrayOutputStream folderIconByteArrayOutputStream = new ByteArrayOutputStream();
2605 // Convert the folder icon bitmap to a byte array. `0` is for lossless compression (the only option for a PNG).
2606 folderIconBitmap.compress(Bitmap.CompressFormat.PNG, 0, folderIconByteArrayOutputStream);
2608 // Convert the folder icon byte array stream to a byte array.
2609 byte[] folderIconByteArray = folderIconByteArrayOutputStream.toByteArray();
2611 // Move all the bookmarks down one in the display order.
2612 for (int i = 0; i < bookmarksListView.getCount(); i++) {
2613 int databaseId = (int) bookmarksListView.getItemIdAtPosition(i);
2614 bookmarksDatabaseHelper.updateDisplayOrder(databaseId, i + 1);
2617 // Create the folder, which will be placed at the top of the `ListView`.
2618 bookmarksDatabaseHelper.createFolder(folderNameString, currentBookmarksFolder, folderIconByteArray);
2620 // Update the bookmarks cursor with the current contents of this folder.
2621 bookmarksCursor = bookmarksDatabaseHelper.getBookmarksByDisplayOrder(currentBookmarksFolder);
2623 // Update the `ListView`.
2624 bookmarksCursorAdapter.changeCursor(bookmarksCursor);
2626 // Scroll to the new folder.
2627 bookmarksListView.setSelection(0);
2631 public void onSaveBookmarkFolder(DialogFragment dialogFragment, int selectedFolderDatabaseId, @NonNull Bitmap favoriteIconBitmap) {
2632 // Remove the incorrect lint warning below that the dialog fragment might be null.
2633 assert dialogFragment != null;
2636 Dialog dialog = dialogFragment.getDialog();
2638 // Remove the incorrect lint warning below that the dialog might be null.
2639 assert dialog != null;
2641 // Get handles for the views from the dialog.
2642 RadioButton currentFolderIconRadioButton = dialog.findViewById(R.id.current_icon_radiobutton);
2643 RadioButton defaultFolderIconRadioButton = dialog.findViewById(R.id.default_icon_radiobutton);
2644 ImageView defaultFolderIconImageView = dialog.findViewById(R.id.default_icon_imageview);
2645 EditText editFolderNameEditText = dialog.findViewById(R.id.folder_name_edittext);
2647 // Get the new folder name.
2648 String newFolderNameString = editFolderNameEditText.getText().toString();
2650 // Check if the favorite icon has changed.
2651 if (currentFolderIconRadioButton.isChecked()) { // Only the name has changed.
2652 // Update the name in the database.
2653 bookmarksDatabaseHelper.updateFolder(selectedFolderDatabaseId, oldFolderNameString, newFolderNameString);
2654 } else if (!currentFolderIconRadioButton.isChecked() && newFolderNameString.equals(oldFolderNameString)) { // Only the icon has changed.
2655 // Create the new folder icon Bitmap.
2656 Bitmap folderIconBitmap;
2658 // Populate the new folder icon bitmap.
2659 if (defaultFolderIconRadioButton.isChecked()) {
2660 // Get the default folder icon drawable.
2661 Drawable folderIconDrawable = defaultFolderIconImageView.getDrawable();
2663 // Convert the folder icon drawable to a bitmap drawable.
2664 BitmapDrawable folderIconBitmapDrawable = (BitmapDrawable) folderIconDrawable;
2666 // Convert the folder icon bitmap drawable to a bitmap.
2667 folderIconBitmap = folderIconBitmapDrawable.getBitmap();
2668 } else { // Use the `WebView` favorite icon.
2669 // Copy the favorite icon bitmap to the folder icon bitmap.
2670 folderIconBitmap = favoriteIconBitmap;
2673 // Create a folder icon byte array output stream.
2674 ByteArrayOutputStream newFolderIconByteArrayOutputStream = new ByteArrayOutputStream();
2676 // Convert the folder icon bitmap to a byte array. `0` is for lossless compression (the only option for a PNG).
2677 folderIconBitmap.compress(Bitmap.CompressFormat.PNG, 0, newFolderIconByteArrayOutputStream);
2679 // Convert the folder icon byte array stream to a byte array.
2680 byte[] newFolderIconByteArray = newFolderIconByteArrayOutputStream.toByteArray();
2682 // Update the folder icon in the database.
2683 bookmarksDatabaseHelper.updateFolder(selectedFolderDatabaseId, newFolderIconByteArray);
2684 } else { // The folder icon and the name have changed.
2685 // Get the new folder icon bitmap.
2686 Bitmap folderIconBitmap;
2687 if (defaultFolderIconRadioButton.isChecked()) {
2688 // Get the default folder icon drawable.
2689 Drawable folderIconDrawable = defaultFolderIconImageView.getDrawable();
2691 // Convert the folder icon drawable to a bitmap drawable.
2692 BitmapDrawable folderIconBitmapDrawable = (BitmapDrawable) folderIconDrawable;
2694 // Convert the folder icon bitmap drawable to a bitmap.
2695 folderIconBitmap = folderIconBitmapDrawable.getBitmap();
2696 } else { // Use the `WebView` favorite icon.
2697 // Copy the favorite icon bitmap to the folder icon bitmap.
2698 folderIconBitmap = favoriteIconBitmap;
2701 // Create a folder icon byte array output stream.
2702 ByteArrayOutputStream newFolderIconByteArrayOutputStream = new ByteArrayOutputStream();
2704 // Convert the folder icon bitmap to a byte array. `0` is for lossless compression (the only option for a PNG).
2705 folderIconBitmap.compress(Bitmap.CompressFormat.PNG, 0, newFolderIconByteArrayOutputStream);
2707 // Convert the folder icon byte array stream to a byte array.
2708 byte[] newFolderIconByteArray = newFolderIconByteArrayOutputStream.toByteArray();
2710 // Update the folder name and icon in the database.
2711 bookmarksDatabaseHelper.updateFolder(selectedFolderDatabaseId, oldFolderNameString, newFolderNameString, newFolderIconByteArray);
2714 // Update the bookmarks cursor with the current contents of this folder.
2715 bookmarksCursor = bookmarksDatabaseHelper.getBookmarksByDisplayOrder(currentBookmarksFolder);
2717 // Update the `ListView`.
2718 bookmarksCursorAdapter.changeCursor(bookmarksCursor);
2721 // Override `onBackPressed()` to handle the navigation drawer and and the WebViews.
2723 public void onBackPressed() {
2724 // Check the different options for processing `back`.
2725 if (drawerLayout.isDrawerVisible(GravityCompat.START)) { // The navigation drawer is open.
2726 // Close the navigation drawer.
2727 drawerLayout.closeDrawer(GravityCompat.START);
2728 } else if (drawerLayout.isDrawerVisible(GravityCompat.END)){ // The bookmarks drawer is open.
2729 // close the bookmarks drawer.
2730 drawerLayout.closeDrawer(GravityCompat.END);
2731 } else if (displayingFullScreenVideo) { // A full screen video is shown.
2732 // Re-enable the screen timeout.
2733 fullScreenVideoFrameLayout.setKeepScreenOn(false);
2735 // Unset the full screen video flag.
2736 displayingFullScreenVideo = false;
2738 // Remove all the views from the full screen video frame layout.
2739 fullScreenVideoFrameLayout.removeAllViews();
2741 // Hide the full screen video frame layout.
2742 fullScreenVideoFrameLayout.setVisibility(View.GONE);
2744 // Enable the sliding drawers.
2745 drawerLayout.setDrawerLockMode(DrawerLayout.LOCK_MODE_UNLOCKED);
2747 // Show the main content relative layout.
2748 mainContentRelativeLayout.setVisibility(View.VISIBLE);
2750 // Apply the appropriate full screen mode flags.
2751 if (fullScreenBrowsingModeEnabled && inFullScreenBrowsingMode) { // Privacy Browser is currently in full screen browsing mode.
2752 // Hide the banner ad in the free flavor.
2753 if (BuildConfig.FLAVOR.contentEquals("free")) {
2754 // Get a handle for the ad view. This cannot be a class variable because it changes with each ad load.
2755 View adView = findViewById(R.id.adview);
2757 // Hide the banner ad.
2758 AdHelper.hideAd(adView);
2761 /* Hide the system bars.
2762 * SYSTEM_UI_FLAG_FULLSCREEN hides the status bar at the top of the screen.
2763 * SYSTEM_UI_FLAG_LAYOUT_FULLSCREEN makes the root frame layout fill the area that is normally reserved for the status bar.
2764 * SYSTEM_UI_FLAG_HIDE_NAVIGATION hides the navigation bar on the bottom or right of the screen.
2765 * SYSTEM_UI_FLAG_IMMERSIVE_STICKY makes the status and navigation bars translucent and automatically re-hides them after they are shown.
2767 rootFrameLayout.setSystemUiVisibility(View.SYSTEM_UI_FLAG_FULLSCREEN | View.SYSTEM_UI_FLAG_LAYOUT_FULLSCREEN | View.SYSTEM_UI_FLAG_HIDE_NAVIGATION |
2768 View.SYSTEM_UI_FLAG_IMMERSIVE_STICKY);
2770 // Reload the website if the app bar is hidden. Otherwise, there is some bug in Android that causes the WebView to be entirely black.
2772 // Reload the WebView.
2773 currentWebView.reload();
2775 } else { // Switch to normal viewing mode.
2776 // Remove the `SYSTEM_UI` flags from the root frame layout.
2777 rootFrameLayout.setSystemUiVisibility(0);
2780 // Reload the ad for the free flavor if not in full screen mode.
2781 if (BuildConfig.FLAVOR.contentEquals("free") && !inFullScreenBrowsingMode) {
2782 // Get a handle for the ad view. This cannot be a class variable because it changes with each ad load.
2783 View adView = findViewById(R.id.adview);
2785 // Reload the ad. `getContext()` can be used instead of `getActivity.getApplicationContext()` once the minimum API >= 23.
2786 AdHelper.loadAd(adView, getApplicationContext(), this, getString(R.string.ad_unit_id));
2788 } else if (currentWebView.canGoBack()) { // There is at least one item in the current WebView history.
2789 // Get the current web back forward list.
2790 WebBackForwardList webBackForwardList = currentWebView.copyBackForwardList();
2792 // Get the previous entry URL.
2793 String previousUrl = webBackForwardList.getItemAtIndex(webBackForwardList.getCurrentIndex() - 1).getUrl();
2795 // Apply the domain settings.
2796 applyDomainSettings(currentWebView, previousUrl, false, false, false);
2799 currentWebView.goBack();
2800 } else if (tabLayout.getTabCount() > 1) { // There are at least two tabs.
2801 // Close the current tab.
2803 } else { // There isn't anything to do in Privacy Browser.
2804 // Close Privacy Browser. `finishAndRemoveTask()` also removes Privacy Browser from the recent app list.
2805 if (Build.VERSION.SDK_INT >= 21) {
2806 finishAndRemoveTask();
2811 // Manually kill Privacy Browser. Otherwise, it is glitchy when restarted.
2816 // Process the results of a file browse.
2818 public void onActivityResult(int requestCode, int resultCode, Intent returnedIntent) {
2819 // Run the default commands.
2820 super.onActivityResult(requestCode, resultCode, returnedIntent);
2822 // Run the commands that correlate to the specified request code.
2823 switch (requestCode) {
2824 case BROWSE_FILE_UPLOAD_REQUEST_CODE:
2825 // File uploads only work on API >= 21.
2826 if (Build.VERSION.SDK_INT >= 21) {
2827 // Pass the file to the WebView.
2828 fileChooserCallback.onReceiveValue(WebChromeClient.FileChooserParams.parseResult(resultCode, returnedIntent));
2832 case BROWSE_OPEN_REQUEST_CODE:
2833 // Don't do anything if the user pressed back from the file picker.
2834 if (resultCode == Activity.RESULT_OK) {
2835 // Get a handle for the open dialog fragment.
2836 DialogFragment openDialogFragment = (DialogFragment) getSupportFragmentManager().findFragmentByTag(getString(R.string.open));
2838 // Only update the file name if the dialog still exists.
2839 if (openDialogFragment != null) {
2840 // Get a handle for the open dialog.
2841 Dialog openDialog = openDialogFragment.getDialog();
2843 // Remove the incorrect lint warning below that the dialog might be null.
2844 assert openDialog != null;
2846 // Get a handle for the file name edit text.
2847 EditText fileNameEditText = openDialog.findViewById(R.id.file_name_edittext);
2849 // Get the file name URI from the intent.
2850 Uri fileNameUri = returnedIntent.getData();
2852 // Get the file name string from the URI.
2853 String fileNameString = fileNameUri.toString();
2855 // Set the file name text.
2856 fileNameEditText.setText(fileNameString);
2858 // Move the cursor to the end of the file name edit text.
2859 fileNameEditText.setSelection(fileNameString.length());
2864 case BROWSE_SAVE_WEBPAGE_REQUEST_CODE:
2865 // Don't do anything if the user pressed back from the file picker.
2866 if (resultCode == Activity.RESULT_OK) {
2867 // Get a handle for the save dialog fragment.
2868 DialogFragment saveWebpageDialogFragment = (DialogFragment) getSupportFragmentManager().findFragmentByTag(getString(R.string.save_dialog));
2870 // Only update the file name if the dialog still exists.
2871 if (saveWebpageDialogFragment != null) {
2872 // Get a handle for the save webpage dialog.
2873 Dialog saveWebpageDialog = saveWebpageDialogFragment.getDialog();
2875 // Remove the incorrect lint warning below that the dialog might be null.
2876 assert saveWebpageDialog != null;
2878 // Get a handle for the file name edit text.
2879 EditText fileNameEditText = saveWebpageDialog.findViewById(R.id.file_name_edittext);
2881 // Get the file name URI from the intent.
2882 Uri fileNameUri = returnedIntent.getData();
2884 // Get the file name string from the URI.
2885 String fileNameString = fileNameUri.toString();
2887 // Set the file name text.
2888 fileNameEditText.setText(fileNameString);
2890 // Move the cursor to the end of the file name edit text.
2891 fileNameEditText.setSelection(fileNameString.length());
2898 private void loadUrlFromTextBox() {
2899 // Get the text from urlTextBox and convert it to a string. trim() removes white spaces from the beginning and end of the string.
2900 String unformattedUrlString = urlEditText.getText().toString().trim();
2902 // Initialize the formatted URL string.
2905 // Check to see if `unformattedUrlString` is a valid URL. Otherwise, convert it into a search.
2906 if (unformattedUrlString.startsWith("content://")) { // This is a Content URL.
2907 // Load the entire content URL.
2908 url = unformattedUrlString;
2909 } else if (Patterns.WEB_URL.matcher(unformattedUrlString).matches() || unformattedUrlString.startsWith("http://") || unformattedUrlString.startsWith("https://") ||
2910 unformattedUrlString.startsWith("file://")) { // This is a standard URL.
2911 // Add `https://` at the beginning if there is no protocol. Otherwise the app will segfault.
2912 if (!unformattedUrlString.startsWith("http") && !unformattedUrlString.startsWith("file://") && !unformattedUrlString.startsWith("content://")) {
2913 unformattedUrlString = "https://" + unformattedUrlString;
2916 // Initialize `unformattedUrl`.
2917 URL unformattedUrl = null;
2919 // Convert `unformattedUrlString` to a `URL`, then to a `URI`, and then back to a `String`, which sanitizes the input and adds in any missing components.
2921 unformattedUrl = new URL(unformattedUrlString);
2922 } catch (MalformedURLException e) {
2923 e.printStackTrace();
2926 // The ternary operator (? :) makes sure that a null pointer exception is not thrown, which would happen if `.get` was called on a `null` value.
2927 String scheme = unformattedUrl != null ? unformattedUrl.getProtocol() : null;
2928 String authority = unformattedUrl != null ? unformattedUrl.getAuthority() : null;
2929 String path = unformattedUrl != null ? unformattedUrl.getPath() : null;
2930 String query = unformattedUrl != null ? unformattedUrl.getQuery() : null;
2931 String fragment = unformattedUrl != null ? unformattedUrl.getRef() : null;
2934 Uri.Builder uri = new Uri.Builder();
2935 uri.scheme(scheme).authority(authority).path(path).query(query).fragment(fragment);
2937 // Decode the URI as a UTF-8 string in.
2939 url = URLDecoder.decode(uri.build().toString(), "UTF-8");
2940 } catch (UnsupportedEncodingException exception) {
2941 // Do nothing. The formatted URL string will remain blank.
2943 } else if (!unformattedUrlString.isEmpty()){ // This is not a URL, but rather a search string.
2944 // Create an encoded URL String.
2945 String encodedUrlString;
2947 // Sanitize the search input.
2949 encodedUrlString = URLEncoder.encode(unformattedUrlString, "UTF-8");
2950 } catch (UnsupportedEncodingException exception) {
2951 encodedUrlString = "";
2954 // Add the base search URL.
2955 url = searchURL + encodedUrlString;
2958 // Clear the focus from the URL edit text. Otherwise, proximate typing in the box will retain the colorized formatting instead of being reset during refocus.
2959 urlEditText.clearFocus();
2962 loadUrl(currentWebView, url);
2965 private void loadUrl(NestedScrollWebView nestedScrollWebView, String url) {
2966 // Sanitize the URL.
2967 url = sanitizeUrl(url);
2969 // Apply the domain settings and load the URL.
2970 applyDomainSettings(nestedScrollWebView, url, true, false, true);
2973 public void findPreviousOnPage(View view) {
2974 // Go to the previous highlighted phrase on the page. `false` goes backwards instead of forwards.
2975 currentWebView.findNext(false);
2978 public void findNextOnPage(View view) {
2979 // Go to the next highlighted phrase on the page. `true` goes forwards instead of backwards.
2980 currentWebView.findNext(true);
2983 public void closeFindOnPage(View view) {
2984 // Get a handle for the views.
2985 Toolbar toolbar = findViewById(R.id.toolbar);
2986 LinearLayout findOnPageLinearLayout = findViewById(R.id.find_on_page_linearlayout);
2987 EditText findOnPageEditText = findViewById(R.id.find_on_page_edittext);
2989 // Delete the contents of `find_on_page_edittext`.
2990 findOnPageEditText.setText(null);
2992 // Clear the highlighted phrases if the WebView is not null.
2993 if (currentWebView != null) {
2994 currentWebView.clearMatches();
2997 // Hide the find on page linear layout.
2998 findOnPageLinearLayout.setVisibility(View.GONE);
3000 // Show the toolbar.
3001 toolbar.setVisibility(View.VISIBLE);
3003 // Get a handle for the input method manager.
3004 InputMethodManager inputMethodManager = (InputMethodManager) getSystemService(Context.INPUT_METHOD_SERVICE);
3006 // Remove the lint warning below that the input method manager might be null.
3007 assert inputMethodManager != null;
3009 // Hide the keyboard.
3010 inputMethodManager.hideSoftInputFromWindow(toolbar.getWindowToken(), 0);
3014 public void onApplyNewFontSize(DialogFragment dialogFragment) {
3015 // Remove the incorrect lint warning below that the dialog fragment might be null.
3016 assert dialogFragment != null;
3019 Dialog dialog = dialogFragment.getDialog();
3021 // Remove the incorrect lint warning below tha the dialog might be null.
3022 assert dialog != null;
3024 // Get a handle for the font size edit text.
3025 EditText fontSizeEditText = dialog.findViewById(R.id.font_size_edittext);
3027 // Initialize the new font size variable with the current font size.
3028 int newFontSize = currentWebView.getSettings().getTextZoom();
3030 // Get the font size from the edit text.
3032 newFontSize = Integer.parseInt(fontSizeEditText.getText().toString());
3033 } catch (Exception exception) {
3034 // If the edit text does not contain a valid font size do nothing.
3037 // Apply the new font size.
3038 currentWebView.getSettings().setTextZoom(newFontSize);
3042 public void onOpen(DialogFragment dialogFragment) {
3044 Dialog dialog = dialogFragment.getDialog();
3046 // Remove the incorrect lint warning below that the dialog might be null.
3047 assert dialog != null;
3049 // Get handles for the views.
3050 EditText fileNameEditText = dialog.findViewById(R.id.file_name_edittext);
3051 CheckBox mhtCheckBox = dialog.findViewById(R.id.mht_checkbox);
3053 // Get the file path string.
3054 String openFilePath = fileNameEditText.getText().toString();
3056 // Apply the domain settings. This resets the favorite icon and removes any domain settings.
3057 applyDomainSettings(currentWebView, openFilePath, true, false, false);
3059 // Open the file according to the type.
3060 if (mhtCheckBox.isChecked()) { // Force opening of an MHT file.
3062 // Get the MHT file input stream.
3063 InputStream mhtFileInputStream = getContentResolver().openInputStream(Uri.parse(openFilePath));
3065 // Create a temporary MHT file.
3066 File temporaryMhtFile = File.createTempFile("temporary_mht_file", ".mht", getCacheDir());
3068 // Get a file output stream for the temporary MHT file.
3069 FileOutputStream temporaryMhtFileOutputStream = new FileOutputStream(temporaryMhtFile);
3071 // Create a transfer byte array.
3072 byte[] transferByteArray = new byte[1024];
3074 // Create an integer to track the number of bytes read.
3077 // Copy the temporary MHT file input stream to the MHT output stream.
3078 while ((bytesRead = mhtFileInputStream.read(transferByteArray)) > 0) {
3079 temporaryMhtFileOutputStream.write(transferByteArray, 0, bytesRead);
3082 // Flush the temporary MHT file output stream.
3083 temporaryMhtFileOutputStream.flush();
3085 // Close the streams.
3086 temporaryMhtFileOutputStream.close();
3087 mhtFileInputStream.close();
3089 // Load the temporary MHT file.
3090 currentWebView.loadUrl(temporaryMhtFile.toString());
3091 } catch (Exception exception) {
3092 // Display a snackbar.
3093 Snackbar.make(currentWebView, getString(R.string.error) + " " + exception.toString(), Snackbar.LENGTH_INDEFINITE).show();
3095 } else { // Let the WebView handle opening of the file.
3097 currentWebView.loadUrl(openFilePath);
3102 public void onSaveWebpage(int saveType, @NonNull String originalUrlString, DialogFragment dialogFragment) {
3104 Dialog dialog = dialogFragment.getDialog();
3106 // Remove the incorrect lint warning below that the dialog might be null.
3107 assert dialog != null;
3109 // Get a handle for the file name edit text.
3110 EditText fileNameEditText = dialog.findViewById(R.id.file_name_edittext);
3112 // Get the file path from the edit text.
3113 String saveWebpageFilePath = fileNameEditText.getText().toString();
3115 //Save the webpage according to the save type.
3117 case SaveWebpageDialog.SAVE_URL:
3118 // Get a handle for the dialog URL edit text.
3119 EditText dialogUrlEditText = dialog.findViewById(R.id.url_edittext);
3121 // Define the save webpage URL.
3122 String saveWebpageUrl;
3125 if (originalUrlString.startsWith("data:")) {
3126 // Save the original URL.
3127 saveWebpageUrl = originalUrlString;
3129 // Get the URL from the edit text, which may have been modified.
3130 saveWebpageUrl = dialogUrlEditText.getText().toString();
3134 new SaveUrl(this, this, saveWebpageFilePath, currentWebView.getSettings().getUserAgentString(), currentWebView.getAcceptFirstPartyCookies()).execute(saveWebpageUrl);
3137 case SaveWebpageDialog.SAVE_ARCHIVE:
3139 // Create a temporary MHT file.
3140 File temporaryMhtFile = File.createTempFile("temporary_mht_file", ".mht", getCacheDir());
3142 // Save the temporary MHT file.
3143 currentWebView.saveWebArchive(temporaryMhtFile.toString(), false, callbackValue -> {
3144 if (callbackValue != null) { // The temporary MHT file was saved successfully.
3146 // Create a temporary MHT file input stream.
3147 FileInputStream temporaryMhtFileInputStream = new FileInputStream(temporaryMhtFile);
3149 // Get an output stream for the save webpage file path.
3150 OutputStream mhtOutputStream = getContentResolver().openOutputStream(Uri.parse(saveWebpageFilePath));
3152 // Create a transfer byte array.
3153 byte[] transferByteArray = new byte[1024];
3155 // Create an integer to track the number of bytes read.
3158 // Copy the temporary MHT file input stream to the MHT output stream.
3159 while ((bytesRead = temporaryMhtFileInputStream.read(transferByteArray)) > 0) {
3160 mhtOutputStream.write(transferByteArray, 0, bytesRead);
3163 // Close the streams.
3164 mhtOutputStream.close();
3165 temporaryMhtFileInputStream.close();
3167 // Display a snackbar.
3168 Snackbar.make(currentWebView, getString(R.string.file_saved) + " " + currentWebView.getCurrentUrl(), Snackbar.LENGTH_SHORT).show();
3169 } catch (Exception exception) {
3170 // Display a snackbar with the exception.
3171 Snackbar.make(currentWebView, getString(R.string.error_saving_file) + " " + exception.toString(), Snackbar.LENGTH_INDEFINITE).show();
3173 // Delete the temporary MHT file.
3174 //noinspection ResultOfMethodCallIgnored
3175 temporaryMhtFile.delete();
3177 } else { // There was an unspecified error while saving the temporary MHT file.
3178 // Display an error snackbar.
3179 Snackbar.make(currentWebView, getString(R.string.error_saving_file), Snackbar.LENGTH_INDEFINITE).show();
3182 } catch (IOException ioException) {
3183 // Display a snackbar with the IO exception.
3184 Snackbar.make(currentWebView, getString(R.string.error_saving_file) + " " + ioException.toString(), Snackbar.LENGTH_INDEFINITE).show();
3188 case SaveWebpageDialog.SAVE_IMAGE:
3189 // Save the webpage image.
3190 new SaveWebpageImage(this, saveWebpageFilePath, currentWebView).execute();
3195 private void initializeApp() {
3196 // Get a handle for the input method.
3197 InputMethodManager inputMethodManager = (InputMethodManager) getSystemService(Context.INPUT_METHOD_SERVICE);
3199 // Remove the lint warning below that the input method manager might be null.
3200 assert inputMethodManager != null;
3202 // Initialize the gray foreground color spans for highlighting the URLs. The deprecated `getResources()` must be used until API >= 23.
3203 initialGrayColorSpan = new ForegroundColorSpan(getResources().getColor(R.color.gray_500));
3204 finalGrayColorSpan = new ForegroundColorSpan(getResources().getColor(R.color.gray_500));
3206 // Get the current theme status.
3207 int currentThemeStatus = getResources().getConfiguration().uiMode & Configuration.UI_MODE_NIGHT_MASK;
3209 // Set the red color span according to the theme.
3210 if (currentThemeStatus == Configuration.UI_MODE_NIGHT_NO) {
3211 redColorSpan = new ForegroundColorSpan(getResources().getColor(R.color.red_a700));
3213 redColorSpan = new ForegroundColorSpan(getResources().getColor(R.color.red_900));
3216 // Remove the formatting from the URL edit text when the user is editing the text.
3217 urlEditText.setOnFocusChangeListener((View v, boolean hasFocus) -> {
3218 if (hasFocus) { // The user is editing the URL text box.
3219 // Remove the highlighting.
3220 urlEditText.getText().removeSpan(redColorSpan);
3221 urlEditText.getText().removeSpan(initialGrayColorSpan);
3222 urlEditText.getText().removeSpan(finalGrayColorSpan);
3223 } else { // The user has stopped editing the URL text box.
3224 // Move to the beginning of the string.
3225 urlEditText.setSelection(0);
3227 // Reapply the highlighting.
3232 // Set the go button on the keyboard to load the URL in `urlTextBox`.
3233 urlEditText.setOnKeyListener((View v, int keyCode, KeyEvent event) -> {
3234 // If the event is a key-down event on the `enter` button, load the URL.
3235 if ((event.getAction() == KeyEvent.ACTION_DOWN) && (keyCode == KeyEvent.KEYCODE_ENTER)) {
3236 // Load the URL into the mainWebView and consume the event.
3237 loadUrlFromTextBox();
3239 // If the enter key was pressed, consume the event.
3242 // If any other key was pressed, do not consume the event.
3247 // Create an Orbot status broadcast receiver.
3248 orbotStatusBroadcastReceiver = new BroadcastReceiver() {
3250 public void onReceive(Context context, Intent intent) {
3251 // Store the content of the status message in `orbotStatus`.
3252 orbotStatus = intent.getStringExtra("org.torproject.android.intent.extra.STATUS");
3254 // If Privacy Browser is waiting on the proxy, load the website now that Orbot is connected.
3255 if ((orbotStatus != null) && orbotStatus.equals("ON") && waitingForProxy) {
3256 // Reset the waiting for proxy status.
3257 waitingForProxy = false;
3259 // Get a handle for the waiting for proxy dialog.
3260 DialogFragment waitingForProxyDialogFragment = (DialogFragment) getSupportFragmentManager().findFragmentByTag(getString(R.string.waiting_for_proxy_dialog));
3262 // Dismiss the waiting for proxy dialog if it is displayed.
3263 if (waitingForProxyDialogFragment != null) {
3264 waitingForProxyDialogFragment.dismiss();
3267 // Reload existing URLs and load any URLs that are waiting for the proxy.
3268 for (int i = 0; i < webViewPagerAdapter.getCount(); i++) {
3269 // Get the WebView tab fragment.
3270 WebViewTabFragment webViewTabFragment = webViewPagerAdapter.getPageFragment(i);
3272 // Get the fragment view.
3273 View fragmentView = webViewTabFragment.getView();
3275 // Only process the WebViews if they exist.
3276 if (fragmentView != null) {
3277 // Get the nested scroll WebView from the tab fragment.
3278 NestedScrollWebView nestedScrollWebView = fragmentView.findViewById(R.id.nestedscroll_webview);
3280 // Get the waiting for proxy URL string.
3281 String waitingForProxyUrlString = nestedScrollWebView.getWaitingForProxyUrlString();
3283 // Load the pending URL if it exists.
3284 if (!waitingForProxyUrlString.isEmpty()) { // A URL is waiting to be loaded.
3286 loadUrl(nestedScrollWebView, waitingForProxyUrlString);
3288 // Reset the waiting for proxy URL string.
3289 nestedScrollWebView.resetWaitingForProxyUrlString();
3290 } else { // No URL is waiting to be loaded.
3291 // Reload the existing URL.
3292 nestedScrollWebView.reload();
3300 // Register the Orbot status broadcast receiver on `this` context.
3301 this.registerReceiver(orbotStatusBroadcastReceiver, new IntentFilter("org.torproject.android.intent.action.STATUS"));
3303 // Get handles for views that need to be modified.
3304 ListView bookmarksListView = findViewById(R.id.bookmarks_drawer_listview);
3305 FloatingActionButton launchBookmarksActivityFab = findViewById(R.id.launch_bookmarks_activity_fab);
3306 FloatingActionButton createBookmarkFolderFab = findViewById(R.id.create_bookmark_folder_fab);
3307 FloatingActionButton createBookmarkFab = findViewById(R.id.create_bookmark_fab);
3308 EditText findOnPageEditText = findViewById(R.id.find_on_page_edittext);
3310 // Update the web view pager every time a tab is modified.
3311 webViewPager.addOnPageChangeListener(new ViewPager.OnPageChangeListener() {
3313 public void onPageScrolled(int position, float positionOffset, int positionOffsetPixels) {
3318 public void onPageSelected(int position) {
3319 // Close the find on page bar if it is open.
3320 closeFindOnPage(null);
3322 // Set the current WebView.
3323 setCurrentWebView(position);
3325 // Select the corresponding tab if it does not match the currently selected page. This will happen if the page was scrolled by creating a new tab.
3326 if (tabLayout.getSelectedTabPosition() != position) {
3327 // Wait until the new tab has been created.
3328 tabLayout.post(() -> {
3329 // Get a handle for the tab.
3330 TabLayout.Tab tab = tabLayout.getTabAt(position);
3332 // Assert that the tab is not null.
3342 public void onPageScrollStateChanged(int state) {
3347 // Display the View SSL Certificate dialog when the currently selected tab is reselected.
3348 tabLayout.addOnTabSelectedListener(new TabLayout.OnTabSelectedListener() {
3350 public void onTabSelected(TabLayout.Tab tab) {
3351 // Select the same page in the view pager.
3352 webViewPager.setCurrentItem(tab.getPosition());
3356 public void onTabUnselected(TabLayout.Tab tab) {
3361 public void onTabReselected(TabLayout.Tab tab) {
3362 // Instantiate the View SSL Certificate dialog.
3363 DialogFragment viewSslCertificateDialogFragment = ViewSslCertificateDialog.displayDialog(currentWebView.getWebViewFragmentId());
3365 // Display the View SSL Certificate dialog.
3366 viewSslCertificateDialogFragment.show(getSupportFragmentManager(), getString(R.string.view_ssl_certificate));
3370 // Set the launch bookmarks activity FAB to launch the bookmarks activity.
3371 launchBookmarksActivityFab.setOnClickListener(v -> {
3372 // Get a copy of the favorite icon bitmap.
3373 Bitmap favoriteIconBitmap = currentWebView.getFavoriteOrDefaultIcon();
3375 // Create a favorite icon byte array output stream.
3376 ByteArrayOutputStream favoriteIconByteArrayOutputStream = new ByteArrayOutputStream();
3378 // Convert the favorite icon bitmap to a byte array. `0` is for lossless compression (the only option for a PNG).
3379 favoriteIconBitmap.compress(Bitmap.CompressFormat.PNG, 0, favoriteIconByteArrayOutputStream);
3381 // Convert the favorite icon byte array stream to a byte array.
3382 byte[] favoriteIconByteArray = favoriteIconByteArrayOutputStream.toByteArray();
3384 // Create an intent to launch the bookmarks activity.
3385 Intent bookmarksIntent = new Intent(getApplicationContext(), BookmarksActivity.class);
3387 // Add the extra information to the intent.
3388 bookmarksIntent.putExtra("current_url", currentWebView.getUrl());
3389 bookmarksIntent.putExtra("current_title", currentWebView.getTitle());
3390 bookmarksIntent.putExtra("current_folder", currentBookmarksFolder);
3391 bookmarksIntent.putExtra("favorite_icon_byte_array", favoriteIconByteArray);
3394 startActivity(bookmarksIntent);
3397 // Set the create new bookmark folder FAB to display an alert dialog.
3398 createBookmarkFolderFab.setOnClickListener(v -> {
3399 // Create a create bookmark folder dialog.
3400 DialogFragment createBookmarkFolderDialog = CreateBookmarkFolderDialog.createBookmarkFolder(currentWebView.getFavoriteOrDefaultIcon());
3402 // Show the create bookmark folder dialog.
3403 createBookmarkFolderDialog.show(getSupportFragmentManager(), getString(R.string.create_folder));
3406 // Set the create new bookmark FAB to display an alert dialog.
3407 createBookmarkFab.setOnClickListener(view -> {
3408 // Instantiate the create bookmark dialog.
3409 DialogFragment createBookmarkDialog = CreateBookmarkDialog.createBookmark(currentWebView.getUrl(), currentWebView.getTitle(), currentWebView.getFavoriteOrDefaultIcon());
3411 // Display the create bookmark dialog.
3412 createBookmarkDialog.show(getSupportFragmentManager(), getString(R.string.create_bookmark));
3415 // Search for the string on the page whenever a character changes in the `findOnPageEditText`.
3416 findOnPageEditText.addTextChangedListener(new TextWatcher() {
3418 public void beforeTextChanged(CharSequence s, int start, int count, int after) {
3423 public void onTextChanged(CharSequence s, int start, int before, int count) {
3428 public void afterTextChanged(Editable s) {
3429 // Search for the text in the WebView if it is not null. Sometimes on resume after a period of non-use the WebView will be null.
3430 if (currentWebView != null) {
3431 currentWebView.findAllAsync(findOnPageEditText.getText().toString());
3436 // Set the `check mark` button for the `findOnPageEditText` keyboard to close the soft keyboard.
3437 findOnPageEditText.setOnKeyListener((v, keyCode, event) -> {
3438 if ((event.getAction() == KeyEvent.ACTION_DOWN) && (keyCode == KeyEvent.KEYCODE_ENTER)) { // The `enter` key was pressed.
3439 // Hide the soft keyboard.
3440 inputMethodManager.hideSoftInputFromWindow(currentWebView.getWindowToken(), 0);
3442 // Consume the event.
3444 } else { // A different key was pressed.
3445 // Do not consume the event.
3450 // Implement swipe to refresh.
3451 swipeRefreshLayout.setOnRefreshListener(() -> currentWebView.reload());
3453 // Store the default progress view offsets for use later in `initializeWebView()`.
3454 defaultProgressViewStartOffset = swipeRefreshLayout.getProgressViewStartOffset();
3455 defaultProgressViewEndOffset = swipeRefreshLayout.getProgressViewEndOffset();
3457 // Set the refresh color scheme according to the theme.
3458 if (currentThemeStatus == Configuration.UI_MODE_NIGHT_NO) {
3459 swipeRefreshLayout.setColorSchemeResources(R.color.blue_700);
3461 swipeRefreshLayout.setColorSchemeResources(R.color.violet_500);
3464 // Initialize a color background typed value.
3465 TypedValue colorBackgroundTypedValue = new TypedValue();
3467 // Get the color background from the theme.
3468 getTheme().resolveAttribute(android.R.attr.colorBackground, colorBackgroundTypedValue, true);
3470 // Get the color background int from the typed value.
3471 int colorBackgroundInt = colorBackgroundTypedValue.data;
3473 // Set the swipe refresh background color.
3474 swipeRefreshLayout.setProgressBackgroundColorSchemeColor(colorBackgroundInt);
3476 // The drawer titles identify the drawer layouts in accessibility mode.
3477 drawerLayout.setDrawerTitle(GravityCompat.START, getString(R.string.navigation_drawer));
3478 drawerLayout.setDrawerTitle(GravityCompat.END, getString(R.string.bookmarks));
3480 // Initialize the bookmarks database helper. The `0` specifies a database version, but that is ignored and set instead using a constant in `BookmarksDatabaseHelper`.
3481 bookmarksDatabaseHelper = new BookmarksDatabaseHelper(this, null, null, 0);
3483 // Initialize `currentBookmarksFolder`. `""` is the home folder in the database.
3484 currentBookmarksFolder = "";
3486 // Load the home folder, which is `""` in the database.
3487 loadBookmarksFolder();
3489 bookmarksListView.setOnItemClickListener((parent, view, position, id) -> {
3490 // Convert the id from long to int to match the format of the bookmarks database.
3491 int databaseId = (int) id;
3493 // Get the bookmark cursor for this ID.
3494 Cursor bookmarkCursor = bookmarksDatabaseHelper.getBookmark(databaseId);
3496 // Move the bookmark cursor to the first row.
3497 bookmarkCursor.moveToFirst();
3499 // Act upon the bookmark according to the type.
3500 if (bookmarkCursor.getInt(bookmarkCursor.getColumnIndex(BookmarksDatabaseHelper.IS_FOLDER)) == 1) { // The selected bookmark is a folder.
3501 // Store the new folder name in `currentBookmarksFolder`.
3502 currentBookmarksFolder = bookmarkCursor.getString(bookmarkCursor.getColumnIndex(BookmarksDatabaseHelper.BOOKMARK_NAME));
3504 // Load the new folder.
3505 loadBookmarksFolder();
3506 } else { // The selected bookmark is not a folder.
3507 // Load the bookmark URL.
3508 loadUrl(currentWebView, bookmarkCursor.getString(bookmarkCursor.getColumnIndex(BookmarksDatabaseHelper.BOOKMARK_URL)));
3510 // Close the bookmarks drawer.
3511 drawerLayout.closeDrawer(GravityCompat.END);
3514 // Close the `Cursor`.
3515 bookmarkCursor.close();
3518 bookmarksListView.setOnItemLongClickListener((parent, view, position, id) -> {
3519 // Convert the database ID from `long` to `int`.
3520 int databaseId = (int) id;
3522 // Find out if the selected bookmark is a folder.
3523 boolean isFolder = bookmarksDatabaseHelper.isFolder(databaseId);
3526 // Save the current folder name, which is used in `onSaveEditBookmarkFolder()`.
3527 oldFolderNameString = bookmarksCursor.getString(bookmarksCursor.getColumnIndex(BookmarksDatabaseHelper.BOOKMARK_NAME));
3529 // Instantiate the edit folder bookmark dialog.
3530 DialogFragment editBookmarkFolderDialog = EditBookmarkFolderDialog.folderDatabaseId(databaseId, currentWebView.getFavoriteOrDefaultIcon());
3532 // Show the edit folder bookmark dialog.
3533 editBookmarkFolderDialog.show(getSupportFragmentManager(), getString(R.string.edit_folder));
3535 // Get the bookmark cursor for this ID.
3536 Cursor bookmarkCursor = bookmarksDatabaseHelper.getBookmark(databaseId);
3538 // Move the bookmark cursor to the first row.
3539 bookmarkCursor.moveToFirst();
3541 // Load the bookmark in a new tab but do not switch to the tab or close the drawer.
3542 addNewTab(bookmarkCursor.getString(bookmarkCursor.getColumnIndex(BookmarksDatabaseHelper.BOOKMARK_URL)), false);
3545 // Consume the event.
3549 // The drawer listener is used to update the navigation menu.
3550 drawerLayout.addDrawerListener(new DrawerLayout.DrawerListener() {
3552 public void onDrawerSlide(@NonNull View drawerView, float slideOffset) {
3556 public void onDrawerOpened(@NonNull View drawerView) {
3560 public void onDrawerClosed(@NonNull View drawerView) {
3561 // Reset the drawer icon when the drawer is closed. Otherwise, it is an arrow if the drawer is open when the app is restarted.
3562 actionBarDrawerToggle.syncState();
3566 public void onDrawerStateChanged(int newState) {
3567 if ((newState == DrawerLayout.STATE_SETTLING) || (newState == DrawerLayout.STATE_DRAGGING)) { // A drawer is opening or closing.
3568 // Update the navigation menu items if the WebView is not null.
3569 if (currentWebView != null) {
3570 navigationBackMenuItem.setEnabled(currentWebView.canGoBack());
3571 navigationForwardMenuItem.setEnabled(currentWebView.canGoForward());
3572 navigationHistoryMenuItem.setEnabled((currentWebView.canGoBack() || currentWebView.canGoForward()));
3573 navigationRequestsMenuItem.setTitle(getString(R.string.requests) + " - " + currentWebView.getRequestsCount(NestedScrollWebView.BLOCKED_REQUESTS));
3575 // Hide the keyboard (if displayed).
3576 inputMethodManager.hideSoftInputFromWindow(currentWebView.getWindowToken(), 0);
3579 // Clear the focus from from the URL text box and the WebView. This removes any text selection markers and context menus, which otherwise draw above the open drawers.
3580 urlEditText.clearFocus();
3581 currentWebView.clearFocus();
3586 // 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).
3587 customHeaders.put("X-Requested-With", "");
3589 // Inflate a bare WebView to get the default user agent. It is not used to render content on the screen.
3590 @SuppressLint("InflateParams") View webViewLayout = getLayoutInflater().inflate(R.layout.bare_webview, null, false);
3592 // Get a handle for the WebView.
3593 WebView bareWebView = webViewLayout.findViewById(R.id.bare_webview);
3595 // Store the default user agent.
3596 webViewDefaultUserAgent = bareWebView.getSettings().getUserAgentString();
3598 // Destroy the bare WebView.
3599 bareWebView.destroy();
3602 private void applyAppSettings() {
3603 // Get a handle for the shared preferences.
3604 SharedPreferences sharedPreferences = PreferenceManager.getDefaultSharedPreferences(this);
3606 // Store the values from the shared preferences in variables.
3607 incognitoModeEnabled = sharedPreferences.getBoolean("incognito_mode", false);
3608 sanitizeGoogleAnalytics = sharedPreferences.getBoolean("google_analytics", true);
3609 sanitizeFacebookClickIds = sharedPreferences.getBoolean("facebook_click_ids", true);
3610 sanitizeTwitterAmpRedirects = sharedPreferences.getBoolean("twitter_amp_redirects", true);
3611 proxyMode = sharedPreferences.getString("proxy", getString(R.string.proxy_default_value));
3612 fullScreenBrowsingModeEnabled = sharedPreferences.getBoolean("full_screen_browsing_mode", false);
3613 hideAppBar = sharedPreferences.getBoolean("hide_app_bar", true);
3614 scrollAppBar = sharedPreferences.getBoolean("scroll_app_bar", true);
3616 // Apply the saved proxy mode if the app has been restarted.
3617 if (savedProxyMode != null) {
3618 // Apply the saved proxy mode.
3619 proxyMode = savedProxyMode;
3621 // Reset the saved proxy mode.
3622 savedProxyMode = null;
3625 // Get the search string.
3626 String searchString = sharedPreferences.getString("search", getString(R.string.search_default_value));
3628 // Set the search string.
3629 if (searchString.equals("Custom URL")) { // A custom search string is used.
3630 searchURL = sharedPreferences.getString("search_custom_url", getString(R.string.search_custom_url_default_value));
3631 } else { // A custom search string is not used.
3632 searchURL = searchString;
3638 // Get the current layout parameters. Using coordinator layout parameters allows the `setBehavior()` command and using app bar layout parameters allows the `setScrollFlags()` command.
3639 CoordinatorLayout.LayoutParams swipeRefreshLayoutParams = (CoordinatorLayout.LayoutParams) swipeRefreshLayout.getLayoutParams();
3640 AppBarLayout.LayoutParams toolbarLayoutParams = (AppBarLayout.LayoutParams) toolbar.getLayoutParams();
3641 AppBarLayout.LayoutParams findOnPageLayoutParams = (AppBarLayout.LayoutParams) findOnPageLinearLayout.getLayoutParams();
3642 AppBarLayout.LayoutParams tabsLayoutParams = (AppBarLayout.LayoutParams) tabsLinearLayout.getLayoutParams();
3644 // Add the scrolling behavior to the layout parameters.
3646 // Enable scrolling of the app bar.
3647 swipeRefreshLayoutParams.setBehavior(new AppBarLayout.ScrollingViewBehavior());
3648 toolbarLayoutParams.setScrollFlags(AppBarLayout.LayoutParams.SCROLL_FLAG_SCROLL | AppBarLayout.LayoutParams.SCROLL_FLAG_ENTER_ALWAYS | AppBarLayout.LayoutParams.SCROLL_FLAG_SNAP);
3649 findOnPageLayoutParams.setScrollFlags(AppBarLayout.LayoutParams.SCROLL_FLAG_SCROLL | AppBarLayout.LayoutParams.SCROLL_FLAG_ENTER_ALWAYS | AppBarLayout.LayoutParams.SCROLL_FLAG_SNAP);
3650 tabsLayoutParams.setScrollFlags(AppBarLayout.LayoutParams.SCROLL_FLAG_SCROLL | AppBarLayout.LayoutParams.SCROLL_FLAG_ENTER_ALWAYS | AppBarLayout.LayoutParams.SCROLL_FLAG_SNAP);
3652 // Disable scrolling of the app bar.
3653 swipeRefreshLayoutParams.setBehavior(null);
3654 toolbarLayoutParams.setScrollFlags(0);
3655 findOnPageLayoutParams.setScrollFlags(0);
3656 tabsLayoutParams.setScrollFlags(0);
3658 // Expand the app bar if it is currently collapsed.
3659 appBarLayout.setExpanded(true);
3662 // Apply the modified layout parameters.
3663 swipeRefreshLayout.setLayoutParams(swipeRefreshLayoutParams);
3664 toolbar.setLayoutParams(toolbarLayoutParams);
3665 findOnPageLinearLayout.setLayoutParams(findOnPageLayoutParams);
3666 tabsLinearLayout.setLayoutParams(tabsLayoutParams);
3668 // Set the app bar scrolling for each WebView.
3669 for (int i = 0; i < webViewPagerAdapter.getCount(); i++) {
3670 // Get the WebView tab fragment.
3671 WebViewTabFragment webViewTabFragment = webViewPagerAdapter.getPageFragment(i);
3673 // Get the fragment view.
3674 View fragmentView = webViewTabFragment.getView();
3676 // Only modify the WebViews if they exist.
3677 if (fragmentView != null) {
3678 // Get the nested scroll WebView from the tab fragment.
3679 NestedScrollWebView nestedScrollWebView = fragmentView.findViewById(R.id.nestedscroll_webview);
3681 // Set the app bar scrolling.
3682 nestedScrollWebView.setNestedScrollingEnabled(scrollAppBar);
3686 // Update the full screen browsing mode settings.
3687 if (fullScreenBrowsingModeEnabled && inFullScreenBrowsingMode) { // Privacy Browser is currently in full screen browsing mode.
3688 // Update the visibility of the app bar, which might have changed in the settings.
3690 // Hide the tab linear layout.
3691 tabsLinearLayout.setVisibility(View.GONE);
3693 // Hide the action bar.
3696 // Show the tab linear layout.
3697 tabsLinearLayout.setVisibility(View.VISIBLE);
3699 // Show the action bar.
3703 // Hide the banner ad in the free flavor.
3704 if (BuildConfig.FLAVOR.contentEquals("free")) {
3705 // Get a handle for the ad view. This cannot be a class variable because it changes with each ad load.
3706 View adView = findViewById(R.id.adview);
3708 // Hide the banner ad.
3709 AdHelper.hideAd(adView);
3712 /* Hide the system bars.
3713 * SYSTEM_UI_FLAG_FULLSCREEN hides the status bar at the top of the screen.
3714 * SYSTEM_UI_FLAG_LAYOUT_FULLSCREEN makes the root frame layout fill the area that is normally reserved for the status bar.
3715 * SYSTEM_UI_FLAG_HIDE_NAVIGATION hides the navigation bar on the bottom or right of the screen.
3716 * SYSTEM_UI_FLAG_IMMERSIVE_STICKY makes the status and navigation bars translucent and automatically re-hides them after they are shown.
3718 rootFrameLayout.setSystemUiVisibility(View.SYSTEM_UI_FLAG_FULLSCREEN | View.SYSTEM_UI_FLAG_LAYOUT_FULLSCREEN | View.SYSTEM_UI_FLAG_HIDE_NAVIGATION |
3719 View.SYSTEM_UI_FLAG_IMMERSIVE_STICKY);
3720 } else { // Privacy Browser is not in full screen browsing mode.
3721 // Reset the full screen tracker, which could be true if Privacy Browser was in full screen mode before entering settings and full screen browsing was disabled.
3722 inFullScreenBrowsingMode = false;
3724 // Show the tab linear layout.
3725 tabsLinearLayout.setVisibility(View.VISIBLE);
3727 // Show the action bar.
3730 // Show the banner ad in the free flavor.
3731 if (BuildConfig.FLAVOR.contentEquals("free")) {
3732 // Get a handle for the ad view. This cannot be a class variable because it changes with each ad load.
3733 View adView = findViewById(R.id.adview);
3735 // Initialize the ads. If this isn't the first run, `loadAd()` will be automatically called instead.
3736 // `getContext()` can be used instead of `getActivity.getApplicationContext()` once the minimum API >= 23.
3737 AdHelper.initializeAds(adView, getApplicationContext(), this, getSupportFragmentManager(), getString(R.string.ad_unit_id));
3740 // Remove the `SYSTEM_UI` flags from the root frame layout.
3741 rootFrameLayout.setSystemUiVisibility(0);
3746 public void navigateHistory(@NonNull String url, int steps) {
3747 // Apply the domain settings.
3748 applyDomainSettings(currentWebView, url, false, false, false);
3750 // Load the history entry.
3751 currentWebView.goBackOrForward(steps);
3755 public void pinnedErrorGoBack() {
3756 // Get the current web back forward list.
3757 WebBackForwardList webBackForwardList = currentWebView.copyBackForwardList();
3759 // Get the previous entry URL.
3760 String previousUrl = webBackForwardList.getItemAtIndex(webBackForwardList.getCurrentIndex() - 1).getUrl();
3762 // Apply the domain settings.
3763 applyDomainSettings(currentWebView, previousUrl, false, false, false);
3766 currentWebView.goBack();
3769 // `reloadWebsite` is used if returning from the Domains activity. Otherwise JavaScript might not function correctly if it is newly enabled.
3770 @SuppressLint("SetJavaScriptEnabled")
3771 private void applyDomainSettings(NestedScrollWebView nestedScrollWebView, String url, boolean resetTab, boolean reloadWebsite, boolean loadUrl) {
3772 // Store the current URL.
3773 nestedScrollWebView.setCurrentUrl(url);
3775 // Parse the URL into a URI.
3776 Uri uri = Uri.parse(url);
3778 // Extract the domain from `uri`.
3779 String newHostName = uri.getHost();
3781 // Strings don't like to be null.
3782 if (newHostName == null) {
3786 // Apply the domain settings if a new domain is being loaded or if the new domain is blank. This allows the user to set temporary settings for JavaScript, cookies, DOM storage, etc.
3787 if (!nestedScrollWebView.getCurrentDomainName().equals(newHostName) || newHostName.equals("")) {
3788 // Set the new host name as the current domain name.
3789 nestedScrollWebView.setCurrentDomainName(newHostName);
3791 // Reset the ignoring of pinned domain information.
3792 nestedScrollWebView.setIgnorePinnedDomainInformation(false);
3794 // Clear any pinned SSL certificate or IP addresses.
3795 nestedScrollWebView.clearPinnedSslCertificate();
3796 nestedScrollWebView.clearPinnedIpAddresses();
3798 // Reset the favorite icon if specified.
3800 // Initialize the favorite icon.
3801 nestedScrollWebView.initializeFavoriteIcon();
3803 // Get the current page position.
3804 int currentPagePosition = webViewPagerAdapter.getPositionForId(nestedScrollWebView.getWebViewFragmentId());
3806 // Get the corresponding tab.
3807 TabLayout.Tab tab = tabLayout.getTabAt(currentPagePosition);
3809 // Update the tab if it isn't null, which sometimes happens when restarting from the background.
3811 // Get the tab custom view.
3812 View tabCustomView = tab.getCustomView();
3814 // Remove the warning below that the tab custom view might be null.
3815 assert tabCustomView != null;
3817 // Get the tab views.
3818 ImageView tabFavoriteIconImageView = tabCustomView.findViewById(R.id.favorite_icon_imageview);
3819 TextView tabTitleTextView = tabCustomView.findViewById(R.id.title_textview);
3821 // Set the default favorite icon as the favorite icon for this tab.
3822 tabFavoriteIconImageView.setImageBitmap(Bitmap.createScaledBitmap(nestedScrollWebView.getFavoriteOrDefaultIcon(), 64, 64, true));
3824 // Set the loading title text.
3825 tabTitleTextView.setText(R.string.loading);
3829 // Initialize the database handler. The `0` specifies the database version, but that is ignored and set instead using a constant in `DomainsDatabaseHelper`.
3830 DomainsDatabaseHelper domainsDatabaseHelper = new DomainsDatabaseHelper(this, null, null, 0);
3832 // Get a full cursor from `domainsDatabaseHelper`.
3833 Cursor domainNameCursor = domainsDatabaseHelper.getDomainNameCursorOrderedByDomain();
3835 // Initialize `domainSettingsSet`.
3836 Set<String> domainSettingsSet = new HashSet<>();
3838 // Get the domain name column index.
3839 int domainNameColumnIndex = domainNameCursor.getColumnIndex(DomainsDatabaseHelper.DOMAIN_NAME);
3841 // Populate `domainSettingsSet`.
3842 for (int i = 0; i < domainNameCursor.getCount(); i++) {
3843 // Move `domainsCursor` to the current row.
3844 domainNameCursor.moveToPosition(i);
3846 // Store the domain name in `domainSettingsSet`.
3847 domainSettingsSet.add(domainNameCursor.getString(domainNameColumnIndex));
3850 // Close `domainNameCursor.
3851 domainNameCursor.close();
3853 // Initialize the domain name in database variable.
3854 String domainNameInDatabase = null;
3856 // Check the hostname against the domain settings set.
3857 if (domainSettingsSet.contains(newHostName)) { // The hostname is contained in the domain settings set.
3858 // Record the domain name in the database.
3859 domainNameInDatabase = newHostName;
3861 // Set the domain settings applied tracker to true.
3862 nestedScrollWebView.setDomainSettingsApplied(true);
3863 } else { // The hostname is not contained in the domain settings set.
3864 // Set the domain settings applied tracker to false.
3865 nestedScrollWebView.setDomainSettingsApplied(false);
3868 // Check all the subdomains of the host name against wildcard domains in the domain cursor.
3869 while (!nestedScrollWebView.getDomainSettingsApplied() && newHostName.contains(".")) { // Stop checking if domain settings are already applied or there are no more `.` in the host name.
3870 if (domainSettingsSet.contains("*." + newHostName)) { // Check the host name prepended by `*.`.
3871 // Set the domain settings applied tracker to true.
3872 nestedScrollWebView.setDomainSettingsApplied(true);
3874 // Store the applied domain names as it appears in the database.
3875 domainNameInDatabase = "*." + newHostName;
3878 // Strip out the lowest subdomain of of the host name.
3879 newHostName = newHostName.substring(newHostName.indexOf(".") + 1);
3883 // Get a handle for the shared preferences.
3884 SharedPreferences sharedPreferences = PreferenceManager.getDefaultSharedPreferences(this);
3886 // Store the general preference information.
3887 String defaultFontSizeString = sharedPreferences.getString("font_size", getString(R.string.font_size_default_value));
3888 String defaultUserAgentName = sharedPreferences.getString("user_agent", getString(R.string.user_agent_default_value));
3889 boolean defaultSwipeToRefresh = sharedPreferences.getBoolean("swipe_to_refresh", true);
3890 String webViewTheme = sharedPreferences.getString("webview_theme", getString(R.string.webview_theme_default_value));
3891 boolean wideViewport = sharedPreferences.getBoolean("wide_viewport", true);
3892 boolean displayWebpageImages = sharedPreferences.getBoolean("display_webpage_images", true);
3894 // Get the WebView theme entry values string array.
3895 String[] webViewThemeEntryValuesStringArray = getResources().getStringArray(R.array.webview_theme_entry_values);
3897 // Get a handle for the cookie manager.
3898 CookieManager cookieManager = CookieManager.getInstance();
3900 // Initialize the user agent array adapter and string array.
3901 ArrayAdapter<CharSequence> userAgentNamesArray = ArrayAdapter.createFromResource(this, R.array.user_agent_names, R.layout.spinner_item);
3902 String[] userAgentDataArray = getResources().getStringArray(R.array.user_agent_data);
3904 if (nestedScrollWebView.getDomainSettingsApplied()) { // The url has custom domain settings.
3905 // Get a cursor for the current host and move it to the first position.
3906 Cursor currentDomainSettingsCursor = domainsDatabaseHelper.getCursorForDomainName(domainNameInDatabase);
3907 currentDomainSettingsCursor.moveToFirst();
3909 // Get the settings from the cursor.
3910 nestedScrollWebView.setDomainSettingsDatabaseId(currentDomainSettingsCursor.getInt(currentDomainSettingsCursor.getColumnIndex(DomainsDatabaseHelper._ID)));
3911 nestedScrollWebView.getSettings().setJavaScriptEnabled(currentDomainSettingsCursor.getInt(currentDomainSettingsCursor.getColumnIndex(DomainsDatabaseHelper.ENABLE_JAVASCRIPT)) == 1);
3912 nestedScrollWebView.setAcceptFirstPartyCookies(currentDomainSettingsCursor.getInt(currentDomainSettingsCursor.getColumnIndex(DomainsDatabaseHelper.ENABLE_FIRST_PARTY_COOKIES)) == 1);
3913 boolean domainThirdPartyCookiesEnabled = (currentDomainSettingsCursor.getInt(currentDomainSettingsCursor.getColumnIndex(DomainsDatabaseHelper.ENABLE_THIRD_PARTY_COOKIES)) == 1);
3914 nestedScrollWebView.getSettings().setDomStorageEnabled(currentDomainSettingsCursor.getInt(currentDomainSettingsCursor.getColumnIndex(DomainsDatabaseHelper.ENABLE_DOM_STORAGE)) == 1);
3915 // Form data can be removed once the minimum API >= 26.
3916 boolean saveFormData = (currentDomainSettingsCursor.getInt(currentDomainSettingsCursor.getColumnIndex(DomainsDatabaseHelper.ENABLE_FORM_DATA)) == 1);
3917 nestedScrollWebView.enableBlocklist(NestedScrollWebView.EASYLIST,
3918 currentDomainSettingsCursor.getInt(currentDomainSettingsCursor.getColumnIndex(DomainsDatabaseHelper.ENABLE_EASYLIST)) == 1);
3919 nestedScrollWebView.enableBlocklist(NestedScrollWebView.EASYPRIVACY,
3920 currentDomainSettingsCursor.getInt(currentDomainSettingsCursor.getColumnIndex(DomainsDatabaseHelper.ENABLE_EASYPRIVACY)) == 1);
3921 nestedScrollWebView.enableBlocklist(NestedScrollWebView.FANBOYS_ANNOYANCE_LIST,
3922 currentDomainSettingsCursor.getInt(currentDomainSettingsCursor.getColumnIndex(DomainsDatabaseHelper.ENABLE_FANBOYS_ANNOYANCE_LIST)) == 1);
3923 nestedScrollWebView.enableBlocklist(NestedScrollWebView.FANBOYS_SOCIAL_BLOCKING_LIST,
3924 currentDomainSettingsCursor.getInt(currentDomainSettingsCursor.getColumnIndex(DomainsDatabaseHelper.ENABLE_FANBOYS_SOCIAL_BLOCKING_LIST)) == 1);
3925 nestedScrollWebView.enableBlocklist(NestedScrollWebView.ULTRALIST, currentDomainSettingsCursor.getInt(currentDomainSettingsCursor.getColumnIndex(DomainsDatabaseHelper.ULTRALIST)) == 1);
3926 nestedScrollWebView.enableBlocklist(NestedScrollWebView.ULTRAPRIVACY,
3927 currentDomainSettingsCursor.getInt(currentDomainSettingsCursor.getColumnIndex(DomainsDatabaseHelper.ENABLE_ULTRAPRIVACY)) == 1);
3928 nestedScrollWebView.enableBlocklist(NestedScrollWebView.THIRD_PARTY_REQUESTS,
3929 currentDomainSettingsCursor.getInt(currentDomainSettingsCursor.getColumnIndex(DomainsDatabaseHelper.BLOCK_ALL_THIRD_PARTY_REQUESTS)) == 1);
3930 String userAgentName = currentDomainSettingsCursor.getString(currentDomainSettingsCursor.getColumnIndex(DomainsDatabaseHelper.USER_AGENT));
3931 int fontSize = currentDomainSettingsCursor.getInt(currentDomainSettingsCursor.getColumnIndex(DomainsDatabaseHelper.FONT_SIZE));
3932 int swipeToRefreshInt = currentDomainSettingsCursor.getInt(currentDomainSettingsCursor.getColumnIndex(DomainsDatabaseHelper.SWIPE_TO_REFRESH));
3933 int webViewThemeInt = currentDomainSettingsCursor.getInt(currentDomainSettingsCursor.getColumnIndex(DomainsDatabaseHelper.WEBVIEW_THEME));
3934 int wideViewportInt = currentDomainSettingsCursor.getInt(currentDomainSettingsCursor.getColumnIndex(DomainsDatabaseHelper.WIDE_VIEWPORT));
3935 int displayWebpageImagesInt = currentDomainSettingsCursor.getInt(currentDomainSettingsCursor.getColumnIndex(DomainsDatabaseHelper.DISPLAY_IMAGES));
3936 boolean pinnedSslCertificate = (currentDomainSettingsCursor.getInt(currentDomainSettingsCursor.getColumnIndex(DomainsDatabaseHelper.PINNED_SSL_CERTIFICATE)) == 1);
3937 String pinnedSslIssuedToCName = currentDomainSettingsCursor.getString(currentDomainSettingsCursor.getColumnIndex(DomainsDatabaseHelper.SSL_ISSUED_TO_COMMON_NAME));
3938 String pinnedSslIssuedToOName = currentDomainSettingsCursor.getString(currentDomainSettingsCursor.getColumnIndex(DomainsDatabaseHelper.SSL_ISSUED_TO_ORGANIZATION));
3939 String pinnedSslIssuedToUName = currentDomainSettingsCursor.getString(currentDomainSettingsCursor.getColumnIndex(DomainsDatabaseHelper.SSL_ISSUED_TO_ORGANIZATIONAL_UNIT));
3940 String pinnedSslIssuedByCName = currentDomainSettingsCursor.getString(currentDomainSettingsCursor.getColumnIndex(DomainsDatabaseHelper.SSL_ISSUED_BY_COMMON_NAME));
3941 String pinnedSslIssuedByOName = currentDomainSettingsCursor.getString(currentDomainSettingsCursor.getColumnIndex(DomainsDatabaseHelper.SSL_ISSUED_BY_ORGANIZATION));
3942 String pinnedSslIssuedByUName = currentDomainSettingsCursor.getString(currentDomainSettingsCursor.getColumnIndex(DomainsDatabaseHelper.SSL_ISSUED_BY_ORGANIZATIONAL_UNIT));
3943 boolean pinnedIpAddresses = (currentDomainSettingsCursor.getInt(currentDomainSettingsCursor.getColumnIndex(DomainsDatabaseHelper.PINNED_IP_ADDRESSES)) == 1);
3944 String pinnedHostIpAddresses = currentDomainSettingsCursor.getString(currentDomainSettingsCursor.getColumnIndex(DomainsDatabaseHelper.IP_ADDRESSES));
3946 // Get the pinned SSL date longs.
3947 long pinnedSslStartDateLong = currentDomainSettingsCursor.getLong(currentDomainSettingsCursor.getColumnIndex(DomainsDatabaseHelper.SSL_START_DATE));
3948 long pinnedSslEndDateLong = currentDomainSettingsCursor.getLong(currentDomainSettingsCursor.getColumnIndex(DomainsDatabaseHelper.SSL_END_DATE));
3950 // Define the pinned SSL date variables.
3951 Date pinnedSslStartDate;
3952 Date pinnedSslEndDate;
3954 // Set the pinned SSL certificate start date to `null` if the saved date long is 0 because creating a new date results in an error if the input is 0.
3955 if (pinnedSslStartDateLong == 0) {
3956 pinnedSslStartDate = null;
3958 pinnedSslStartDate = new Date(pinnedSslStartDateLong);
3961 // Set the pinned SSL certificate end date to `null` if the saved date long is 0 because creating a new date results in an error if the input is 0.
3962 if (pinnedSslEndDateLong == 0) {
3963 pinnedSslEndDate = null;
3965 pinnedSslEndDate = new Date(pinnedSslEndDateLong);
3968 // Close the current host domain settings cursor.
3969 currentDomainSettingsCursor.close();
3971 // If there is a pinned SSL certificate, store it in the WebView.
3972 if (pinnedSslCertificate) {
3973 nestedScrollWebView.setPinnedSslCertificate(pinnedSslIssuedToCName, pinnedSslIssuedToOName, pinnedSslIssuedToUName, pinnedSslIssuedByCName, pinnedSslIssuedByOName, pinnedSslIssuedByUName,
3974 pinnedSslStartDate, pinnedSslEndDate);
3977 // If there is a pinned IP address, store it in the WebView.
3978 if (pinnedIpAddresses) {
3979 nestedScrollWebView.setPinnedIpAddresses(pinnedHostIpAddresses);
3982 // Apply the cookie domain settings.
3983 cookieManager.setAcceptCookie(nestedScrollWebView.getAcceptFirstPartyCookies());
3985 // Set third-party cookies status if API >= 21.
3986 if (Build.VERSION.SDK_INT >= 21) {
3987 cookieManager.setAcceptThirdPartyCookies(nestedScrollWebView, domainThirdPartyCookiesEnabled);
3990 // Apply the form data setting if the API < 26.
3991 if (Build.VERSION.SDK_INT < 26) {
3992 nestedScrollWebView.getSettings().setSaveFormData(saveFormData);
3995 // Apply the font size.
3996 try { // Try the specified font size to see if it is valid.
3997 if (fontSize == 0) { // Apply the default font size.
3998 // Try to set the font size from the value in the app settings.
3999 nestedScrollWebView.getSettings().setTextZoom(Integer.parseInt(defaultFontSizeString));
4000 } else { // Apply the font size from domain settings.
4001 nestedScrollWebView.getSettings().setTextZoom(fontSize);
4003 } catch (Exception exception) { // The specified font size is invalid
4004 // Set the font size to be 100%
4005 nestedScrollWebView.getSettings().setTextZoom(100);
4008 // Set the user agent.
4009 if (userAgentName.equals(getString(R.string.system_default_user_agent))) { // Use the system default user agent.
4010 // Get the array position of the default user agent name.
4011 int defaultUserAgentArrayPosition = userAgentNamesArray.getPosition(defaultUserAgentName);
4013 // Set the user agent according to the system default.
4014 switch (defaultUserAgentArrayPosition) {
4015 case UNRECOGNIZED_USER_AGENT: // The default user agent name is not on the canonical list.
4016 // This is probably because it was set in an older version of Privacy Browser before the switch to persistent user agent names.
4017 nestedScrollWebView.getSettings().setUserAgentString(defaultUserAgentName);
4020 case SETTINGS_WEBVIEW_DEFAULT_USER_AGENT:
4021 // Set the user agent to `""`, which uses the default value.
4022 nestedScrollWebView.getSettings().setUserAgentString("");
4025 case SETTINGS_CUSTOM_USER_AGENT:
4026 // Set the default custom user agent.
4027 nestedScrollWebView.getSettings().setUserAgentString(sharedPreferences.getString("custom_user_agent", getString(R.string.custom_user_agent_default_value)));
4031 // Get the user agent string from the user agent data array
4032 nestedScrollWebView.getSettings().setUserAgentString(userAgentDataArray[defaultUserAgentArrayPosition]);
4034 } else { // Set the user agent according to the stored name.
4035 // Get the array position of the user agent name.
4036 int userAgentArrayPosition = userAgentNamesArray.getPosition(userAgentName);
4038 switch (userAgentArrayPosition) {
4039 case UNRECOGNIZED_USER_AGENT: // The user agent name contains a custom user agent.
4040 nestedScrollWebView.getSettings().setUserAgentString(userAgentName);
4043 case SETTINGS_WEBVIEW_DEFAULT_USER_AGENT:
4044 // Set the user agent to `""`, which uses the default value.
4045 nestedScrollWebView.getSettings().setUserAgentString("");
4049 // Get the user agent string from the user agent data array.
4050 nestedScrollWebView.getSettings().setUserAgentString(userAgentDataArray[userAgentArrayPosition]);
4054 // Set swipe to refresh.
4055 switch (swipeToRefreshInt) {
4056 case DomainsDatabaseHelper.SYSTEM_DEFAULT:
4057 // Store the swipe to refresh status in the nested scroll WebView.
4058 nestedScrollWebView.setSwipeToRefresh(defaultSwipeToRefresh);
4060 // Update the swipe refresh layout.
4061 if (defaultSwipeToRefresh) { // Swipe to refresh is enabled.
4062 // Only enable the swipe refresh layout if the WebView is scrolled to the top. It is updated every time the scroll changes.
4063 swipeRefreshLayout.setEnabled(currentWebView.getScrollY() == 0);
4064 } else { // Swipe to refresh is disabled.
4065 // Disable the swipe refresh layout.
4066 swipeRefreshLayout.setEnabled(false);
4070 case DomainsDatabaseHelper.ENABLED:
4071 // Store the swipe to refresh status in the nested scroll WebView.
4072 nestedScrollWebView.setSwipeToRefresh(true);
4074 // Only enable the swipe refresh layout if the WebView is scrolled to the top. It is updated every time the scroll changes.
4075 swipeRefreshLayout.setEnabled(currentWebView.getScrollY() == 0);
4078 case DomainsDatabaseHelper.DISABLED:
4079 // Store the swipe to refresh status in the nested scroll WebView.
4080 nestedScrollWebView.setSwipeToRefresh(false);
4082 // Disable swipe to refresh.
4083 swipeRefreshLayout.setEnabled(false);
4086 // Check to see if WebView themes are supported.
4087 if (WebViewFeature.isFeatureSupported(WebViewFeature.FORCE_DARK)) {
4088 // Set the WebView theme.
4089 switch (webViewThemeInt) {
4090 case DomainsDatabaseHelper.SYSTEM_DEFAULT:
4091 // Set the WebView theme. A switch statement cannot be used because the WebView theme entry values string array is not a compile time constant.
4092 if (webViewTheme.equals(webViewThemeEntryValuesStringArray[1])) { // The light theme is selected.
4093 // Turn off the WebView dark mode.
4094 WebSettingsCompat.setForceDark(nestedScrollWebView.getSettings(), WebSettingsCompat.FORCE_DARK_OFF);
4095 } else if (webViewTheme.equals(webViewThemeEntryValuesStringArray[2])) { // The dark theme is selected.
4096 // Turn on the WebView dark mode.
4097 WebSettingsCompat.setForceDark(nestedScrollWebView.getSettings(), WebSettingsCompat.FORCE_DARK_ON);
4098 } else { // The system default theme is selected.
4099 // Get the current system theme status.
4100 int currentThemeStatus = getResources().getConfiguration().uiMode & Configuration.UI_MODE_NIGHT_MASK;
4102 // Set the WebView theme according to the current system theme status.
4103 if (currentThemeStatus == Configuration.UI_MODE_NIGHT_NO) { // The system is in day mode.
4104 // Turn off the WebView dark mode.
4105 WebSettingsCompat.setForceDark(nestedScrollWebView.getSettings(), WebSettingsCompat.FORCE_DARK_OFF);
4106 } else { // The system is in night mode.
4107 // Turn on the WebView dark mode.
4108 WebSettingsCompat.setForceDark(nestedScrollWebView.getSettings(), WebSettingsCompat.FORCE_DARK_ON);
4113 case DomainsDatabaseHelper.LIGHT_THEME:
4114 // Turn off the WebView dark mode.
4115 WebSettingsCompat.setForceDark(nestedScrollWebView.getSettings(), WebSettingsCompat.FORCE_DARK_OFF);
4118 case DomainsDatabaseHelper.DARK_THEME:
4119 // Turn on the WebView dark mode.
4120 WebSettingsCompat.setForceDark(nestedScrollWebView.getSettings(), WebSettingsCompat.FORCE_DARK_ON);
4125 // Set the viewport.
4126 switch (wideViewportInt) {
4127 case DomainsDatabaseHelper.SYSTEM_DEFAULT:
4128 nestedScrollWebView.getSettings().setUseWideViewPort(wideViewport);
4131 case DomainsDatabaseHelper.ENABLED:
4132 nestedScrollWebView.getSettings().setUseWideViewPort(true);
4135 case DomainsDatabaseHelper.DISABLED:
4136 nestedScrollWebView.getSettings().setUseWideViewPort(false);
4140 // Set the loading of webpage images.
4141 switch (displayWebpageImagesInt) {
4142 case DomainsDatabaseHelper.SYSTEM_DEFAULT:
4143 nestedScrollWebView.getSettings().setLoadsImagesAutomatically(displayWebpageImages);
4146 case DomainsDatabaseHelper.ENABLED:
4147 nestedScrollWebView.getSettings().setLoadsImagesAutomatically(true);
4150 case DomainsDatabaseHelper.DISABLED:
4151 nestedScrollWebView.getSettings().setLoadsImagesAutomatically(false);
4155 // Get the current theme status.
4156 int currentThemeStatus = getResources().getConfiguration().uiMode & Configuration.UI_MODE_NIGHT_MASK;
4158 // Set a background on the URL relative layout to indicate that custom domain settings are being used.
4159 if (currentThemeStatus == Configuration.UI_MODE_NIGHT_NO) {
4160 urlRelativeLayout.setBackground(ResourcesCompat.getDrawable(getResources(), R.drawable.url_bar_background_light_green, null));
4162 urlRelativeLayout.setBackground(ResourcesCompat.getDrawable(getResources(), R.drawable.url_bar_background_dark_blue, null));
4164 } else { // The new URL does not have custom domain settings. Load the defaults.
4165 // Store the values from the shared preferences.
4166 nestedScrollWebView.getSettings().setJavaScriptEnabled(sharedPreferences.getBoolean("javascript", false));
4167 nestedScrollWebView.setAcceptFirstPartyCookies(sharedPreferences.getBoolean("first_party_cookies", false));
4168 boolean defaultThirdPartyCookiesEnabled = sharedPreferences.getBoolean("third_party_cookies", false);
4169 nestedScrollWebView.getSettings().setDomStorageEnabled(sharedPreferences.getBoolean("dom_storage", false));
4170 boolean saveFormData = sharedPreferences.getBoolean("save_form_data", false); // Form data can be removed once the minimum API >= 26.
4171 nestedScrollWebView.enableBlocklist(NestedScrollWebView.EASYLIST, sharedPreferences.getBoolean("easylist", true));
4172 nestedScrollWebView.enableBlocklist(NestedScrollWebView.EASYPRIVACY, sharedPreferences.getBoolean("easyprivacy", true));
4173 nestedScrollWebView.enableBlocklist(NestedScrollWebView.FANBOYS_ANNOYANCE_LIST, sharedPreferences.getBoolean("fanboys_annoyance_list", true));
4174 nestedScrollWebView.enableBlocklist(NestedScrollWebView.FANBOYS_SOCIAL_BLOCKING_LIST, sharedPreferences.getBoolean("fanboys_social_blocking_list", true));
4175 nestedScrollWebView.enableBlocklist(NestedScrollWebView.ULTRALIST, sharedPreferences.getBoolean("ultralist", true));
4176 nestedScrollWebView.enableBlocklist(NestedScrollWebView.ULTRAPRIVACY, sharedPreferences.getBoolean("ultraprivacy", true));
4177 nestedScrollWebView.enableBlocklist(NestedScrollWebView.THIRD_PARTY_REQUESTS, sharedPreferences.getBoolean("block_all_third_party_requests", false));
4179 // Apply the default first-party cookie setting.
4180 cookieManager.setAcceptCookie(nestedScrollWebView.getAcceptFirstPartyCookies());
4182 // Apply the default font size setting.
4184 // Try to set the font size from the value in the app settings.
4185 nestedScrollWebView.getSettings().setTextZoom(Integer.parseInt(defaultFontSizeString));
4186 } catch (Exception exception) {
4187 // If the app settings value is invalid, set the font size to 100%.
4188 nestedScrollWebView.getSettings().setTextZoom(100);
4191 // Apply the form data setting if the API < 26.
4192 if (Build.VERSION.SDK_INT < 26) {
4193 nestedScrollWebView.getSettings().setSaveFormData(saveFormData);
4196 // Store the swipe to refresh status in the nested scroll WebView.
4197 nestedScrollWebView.setSwipeToRefresh(defaultSwipeToRefresh);
4199 // Update the swipe refresh layout.
4200 if (defaultSwipeToRefresh) { // Swipe to refresh is enabled.
4201 // Only enable the swipe refresh layout if the WebView is scrolled to the top. It is updated every time the scroll changes.
4202 swipeRefreshLayout.setEnabled(currentWebView.getScrollY() == 0);
4203 } else { // Swipe to refresh is disabled.
4204 // Disable the swipe refresh layout.
4205 swipeRefreshLayout.setEnabled(false);
4208 // Reset the pinned variables.
4209 nestedScrollWebView.setDomainSettingsDatabaseId(-1);
4211 // Set third-party cookies status if API >= 21.
4212 if (Build.VERSION.SDK_INT >= 21) {
4213 cookieManager.setAcceptThirdPartyCookies(nestedScrollWebView, defaultThirdPartyCookiesEnabled);
4216 // Get the array position of the user agent name.
4217 int userAgentArrayPosition = userAgentNamesArray.getPosition(defaultUserAgentName);
4219 // Set the user agent.
4220 switch (userAgentArrayPosition) {
4221 case UNRECOGNIZED_USER_AGENT: // The default user agent name is not on the canonical list.
4222 // This is probably because it was set in an older version of Privacy Browser before the switch to persistent user agent names.
4223 nestedScrollWebView.getSettings().setUserAgentString(defaultUserAgentName);
4226 case SETTINGS_WEBVIEW_DEFAULT_USER_AGENT:
4227 // Set the user agent to `""`, which uses the default value.
4228 nestedScrollWebView.getSettings().setUserAgentString("");
4231 case SETTINGS_CUSTOM_USER_AGENT:
4232 // Set the default custom user agent.
4233 nestedScrollWebView.getSettings().setUserAgentString(sharedPreferences.getString("custom_user_agent", getString(R.string.custom_user_agent_default_value)));
4237 // Get the user agent string from the user agent data array
4238 nestedScrollWebView.getSettings().setUserAgentString(userAgentDataArray[userAgentArrayPosition]);
4241 // Apply the WebView theme if supported by the installed WebView.
4242 if (WebViewFeature.isFeatureSupported(WebViewFeature.FORCE_DARK)) {
4243 // Set the WebView theme. A switch statement cannot be used because the WebView theme entry values string array is not a compile time constant.
4244 if (webViewTheme.equals(webViewThemeEntryValuesStringArray[1])) { // The light theme is selected.
4245 // Turn off the WebView dark mode.
4246 WebSettingsCompat.setForceDark(nestedScrollWebView.getSettings(), WebSettingsCompat.FORCE_DARK_OFF);
4247 } else if (webViewTheme.equals(webViewThemeEntryValuesStringArray[2])) { // The dark theme is selected.
4248 // Turn on the WebView dark mode.
4249 WebSettingsCompat.setForceDark(nestedScrollWebView.getSettings(), WebSettingsCompat.FORCE_DARK_ON);
4250 } else { // The system default theme is selected.
4251 // Get the current system theme status.
4252 int currentThemeStatus = getResources().getConfiguration().uiMode & Configuration.UI_MODE_NIGHT_MASK;
4254 // Set the WebView theme according to the current system theme status.
4255 if (currentThemeStatus == Configuration.UI_MODE_NIGHT_NO) { // The system is in day mode.
4256 // Turn off the WebView dark mode.
4257 WebSettingsCompat.setForceDark(nestedScrollWebView.getSettings(), WebSettingsCompat.FORCE_DARK_OFF);
4258 } else { // The system is in night mode.
4259 // Turn on the WebView dark mode.
4260 WebSettingsCompat.setForceDark(nestedScrollWebView.getSettings(), WebSettingsCompat.FORCE_DARK_ON);
4265 // Set the viewport.
4266 nestedScrollWebView.getSettings().setUseWideViewPort(wideViewport);
4268 // Set the loading of webpage images.
4269 nestedScrollWebView.getSettings().setLoadsImagesAutomatically(displayWebpageImages);
4271 // Set a transparent background on the URL relative layout.
4272 urlRelativeLayout.setBackground(ResourcesCompat.getDrawable(getResources(), R.color.transparent, null));
4275 // Close the domains database helper.
4276 domainsDatabaseHelper.close();
4278 // Update the privacy icons.
4279 updatePrivacyIcons(true);
4282 // Reload the website if returning from the Domains activity.
4283 if (reloadWebsite) {
4284 nestedScrollWebView.reload();
4287 // Load the URL if directed. This makes sure that the domain settings are properly loaded before the URL. By using `loadUrl()`, instead of `loadUrlFromBase()`, the Referer header will never be sent.
4289 nestedScrollWebView.loadUrl(url, customHeaders);
4293 private void applyProxy(boolean reloadWebViews) {
4294 // Set the proxy according to the mode. `this` refers to the current activity where an alert dialog might be displayed.
4295 ProxyHelper.setProxy(getApplicationContext(), appBarLayout, proxyMode);
4297 // Reset the waiting for proxy tracker.
4298 waitingForProxy = false;
4300 // Get the current theme status.
4301 int currentThemeStatus = getResources().getConfiguration().uiMode & Configuration.UI_MODE_NIGHT_MASK;
4303 // Update the user interface and reload the WebViews if requested.
4304 switch (proxyMode) {
4305 case ProxyHelper.NONE:
4306 // Initialize a color background typed value.
4307 TypedValue colorBackgroundTypedValue = new TypedValue();
4309 // Get the color background from the theme.
4310 getTheme().resolveAttribute(android.R.attr.colorBackground, colorBackgroundTypedValue, true);
4312 // Get the color background int from the typed value.
4313 int colorBackgroundInt = colorBackgroundTypedValue.data;
4315 // Set the default app bar layout background.
4316 appBarLayout.setBackgroundColor(colorBackgroundInt);
4319 case ProxyHelper.TOR:
4320 // Set the app bar background to indicate proxying through Orbot is enabled.
4321 if (currentThemeStatus == Configuration.UI_MODE_NIGHT_NO) {
4322 appBarLayout.setBackgroundResource(R.color.blue_50);
4324 appBarLayout.setBackgroundResource(R.color.dark_blue_30);
4327 // Check to see if Orbot is installed.
4329 // Get the package manager.
4330 PackageManager packageManager = getPackageManager();
4332 // Check to see if Orbot is in the list. This will throw an error and drop to the catch section if it isn't installed.
4333 packageManager.getPackageInfo("org.torproject.android", 0);
4335 // Check to see if the proxy is ready.
4336 if (!orbotStatus.equals("ON")) { // Orbot is not ready.
4337 // Set the waiting for proxy status.
4338 waitingForProxy = true;
4340 // Show the waiting for proxy dialog if it isn't already displayed.
4341 if (getSupportFragmentManager().findFragmentByTag(getString(R.string.waiting_for_proxy_dialog)) == null) {
4342 // Get a handle for the waiting for proxy alert dialog.
4343 DialogFragment waitingForProxyDialogFragment = new WaitingForProxyDialog();
4345 // Display the waiting for proxy alert dialog.
4346 waitingForProxyDialogFragment.show(getSupportFragmentManager(), getString(R.string.waiting_for_proxy_dialog));
4349 } catch (PackageManager.NameNotFoundException exception) { // Orbot is not installed.
4350 // Show the Orbot not installed dialog if it is not already displayed.
4351 if (getSupportFragmentManager().findFragmentByTag(getString(R.string.proxy_not_installed_dialog)) == null) {
4352 // Get a handle for the Orbot not installed alert dialog.
4353 DialogFragment orbotNotInstalledDialogFragment = ProxyNotInstalledDialog.displayDialog(proxyMode);
4355 // Display the Orbot not installed alert dialog.
4356 orbotNotInstalledDialogFragment.show(getSupportFragmentManager(), getString(R.string.proxy_not_installed_dialog));
4361 case ProxyHelper.I2P:
4362 // Set the app bar background to indicate proxying through Orbot is enabled.
4363 if (currentThemeStatus == Configuration.UI_MODE_NIGHT_NO) {
4364 appBarLayout.setBackgroundResource(R.color.blue_50);
4366 appBarLayout.setBackgroundResource(R.color.dark_blue_30);
4369 // Check to see if I2P is installed.
4371 // Get the package manager.
4372 PackageManager packageManager = getPackageManager();
4374 // Check to see if I2P is in the list. This will throw an error and drop to the catch section if it isn't installed.
4375 packageManager.getPackageInfo("net.i2p.android.router", 0);
4376 } catch (PackageManager.NameNotFoundException exception) { // I2P is not installed.
4377 // Sow the I2P not installed dialog if it is not already displayed.
4378 if (getSupportFragmentManager().findFragmentByTag(getString(R.string.proxy_not_installed_dialog)) == null) {
4379 // Get a handle for the waiting for proxy alert dialog.
4380 DialogFragment i2pNotInstalledDialogFragment = ProxyNotInstalledDialog.displayDialog(proxyMode);
4382 // Display the I2P not installed alert dialog.
4383 i2pNotInstalledDialogFragment.show(getSupportFragmentManager(), getString(R.string.proxy_not_installed_dialog));
4388 case ProxyHelper.CUSTOM:
4389 // Set the app bar background to indicate proxying through Orbot is enabled.
4390 if (currentThemeStatus == Configuration.UI_MODE_NIGHT_NO) {
4391 appBarLayout.setBackgroundResource(R.color.blue_50);
4393 appBarLayout.setBackgroundResource(R.color.dark_blue_30);
4398 // Reload the WebViews if requested and not waiting for the proxy.
4399 if (reloadWebViews && !waitingForProxy) {
4400 // Reload the WebViews.
4401 for (int i = 0; i < webViewPagerAdapter.getCount(); i++) {
4402 // Get the WebView tab fragment.
4403 WebViewTabFragment webViewTabFragment = webViewPagerAdapter.getPageFragment(i);
4405 // Get the fragment view.
4406 View fragmentView = webViewTabFragment.getView();
4408 // Only reload the WebViews if they exist.
4409 if (fragmentView != null) {
4410 // Get the nested scroll WebView from the tab fragment.
4411 NestedScrollWebView nestedScrollWebView = fragmentView.findViewById(R.id.nestedscroll_webview);
4413 // Reload the WebView.
4414 nestedScrollWebView.reload();
4420 private void updatePrivacyIcons(boolean runInvalidateOptionsMenu) {
4421 // Only update the privacy icons if the options menu and the current WebView have already been populated.
4422 if ((optionsMenu != null) && (currentWebView != null)) {
4423 // Update the privacy icon.
4424 if (currentWebView.getSettings().getJavaScriptEnabled()) { // JavaScript is enabled.
4425 optionsPrivacyMenuItem.setIcon(R.drawable.javascript_enabled);
4426 } else if (currentWebView.getAcceptFirstPartyCookies()) { // JavaScript is disabled but cookies are enabled.
4427 optionsPrivacyMenuItem.setIcon(R.drawable.warning);
4428 } else { // All the dangerous features are disabled.
4429 optionsPrivacyMenuItem.setIcon(R.drawable.privacy_mode);
4432 // Get the current theme status.
4433 int currentThemeStatus = getResources().getConfiguration().uiMode & Configuration.UI_MODE_NIGHT_MASK;
4435 // Update the first-party cookies icon.
4436 if (currentWebView.getAcceptFirstPartyCookies()) { // First-party cookies are enabled.
4437 optionsFirstPartyCookiesMenuItem.setIcon(R.drawable.cookies_enabled);
4438 } else { // First-party cookies are disabled.
4439 if (currentThemeStatus == Configuration.UI_MODE_NIGHT_NO) {
4440 optionsFirstPartyCookiesMenuItem.setIcon(R.drawable.cookies_disabled_day);
4442 optionsFirstPartyCookiesMenuItem.setIcon(R.drawable.cookies_disabled_night);
4446 // Update the refresh icon.
4447 if (optionsRefreshMenuItem.getTitle() == getString(R.string.refresh)) { // The refresh icon is displayed.
4448 // Set the icon according to the theme.
4449 if (currentThemeStatus == Configuration.UI_MODE_NIGHT_NO) {
4450 optionsRefreshMenuItem.setIcon(R.drawable.refresh_enabled_day);
4452 optionsRefreshMenuItem.setIcon(R.drawable.refresh_enabled_night);
4454 } else { // The stop icon is displayed.
4455 // Set the icon according to the theme.
4456 if (currentThemeStatus == Configuration.UI_MODE_NIGHT_NO) {
4457 optionsRefreshMenuItem.setIcon(R.drawable.close_blue_day);
4459 optionsRefreshMenuItem.setIcon(R.drawable.close_blue_night);
4463 // `invalidateOptionsMenu()` calls `onPrepareOptionsMenu()` and redraws the icons in the app bar.
4464 if (runInvalidateOptionsMenu) {
4465 invalidateOptionsMenu();
4470 private void highlightUrlText() {
4471 // Only highlight the URL text if the box is not currently selected.
4472 if (!urlEditText.hasFocus()) {
4473 // Get the URL string.
4474 String urlString = urlEditText.getText().toString();
4476 // Highlight the URL according to the protocol.
4477 if (urlString.startsWith("file://") || urlString.startsWith("content://")) { // This is a file or content URL.
4478 // De-emphasize everything before the file name.
4479 urlEditText.getText().setSpan(initialGrayColorSpan, 0, urlString.lastIndexOf("/") + 1,Spanned.SPAN_INCLUSIVE_INCLUSIVE);
4480 } else { // This is a web URL.
4481 // Get the index of the `/` immediately after the domain name.
4482 int endOfDomainName = urlString.indexOf("/", (urlString.indexOf("//") + 2));
4484 // Create a base URL string.
4487 // Get the base URL.
4488 if (endOfDomainName > 0) { // There is at least one character after the base URL.
4489 // Get the base URL.
4490 baseUrl = urlString.substring(0, endOfDomainName);
4491 } else { // There are no characters after the base URL.
4492 // Set the base URL to be the entire URL string.
4493 baseUrl = urlString;
4496 // Get the index of the last `.` in the domain.
4497 int lastDotIndex = baseUrl.lastIndexOf(".");
4499 // Get the index of the penultimate `.` in the domain.
4500 int penultimateDotIndex = baseUrl.lastIndexOf(".", lastDotIndex - 1);
4502 // Markup the beginning of the URL.
4503 if (urlString.startsWith("http://")) { // Highlight the protocol of connections that are not encrypted.
4504 urlEditText.getText().setSpan(redColorSpan, 0, 7, Spanned.SPAN_INCLUSIVE_INCLUSIVE);
4506 // De-emphasize subdomains.
4507 if (penultimateDotIndex > 0) { // There is more than one subdomain in the domain name.
4508 urlEditText.getText().setSpan(initialGrayColorSpan, 7, penultimateDotIndex + 1, Spanned.SPAN_INCLUSIVE_INCLUSIVE);
4510 } else if (urlString.startsWith("https://")) { // De-emphasize the protocol of connections that are encrypted.
4511 if (penultimateDotIndex > 0) { // There is more than one subdomain in the domain name.
4512 // De-emphasize the protocol and the additional subdomains.
4513 urlEditText.getText().setSpan(initialGrayColorSpan, 0, penultimateDotIndex + 1, Spanned.SPAN_INCLUSIVE_INCLUSIVE);
4514 } else { // There is only one subdomain in the domain name.
4515 // De-emphasize only the protocol.
4516 urlEditText.getText().setSpan(initialGrayColorSpan, 0, 8, Spanned.SPAN_INCLUSIVE_INCLUSIVE);
4520 // De-emphasize the text after the domain name.
4521 if (endOfDomainName > 0) {
4522 urlEditText.getText().setSpan(finalGrayColorSpan, endOfDomainName, urlString.length(), Spanned.SPAN_INCLUSIVE_INCLUSIVE);
4528 private void loadBookmarksFolder() {
4529 // Update the bookmarks cursor with the contents of the bookmarks database for the current folder.
4530 bookmarksCursor = bookmarksDatabaseHelper.getBookmarksByDisplayOrder(currentBookmarksFolder);
4532 // Populate the bookmarks cursor adapter. `this` specifies the `Context`. `false` disables `autoRequery`.
4533 bookmarksCursorAdapter = new CursorAdapter(this, bookmarksCursor, false) {
4535 public View newView(Context context, Cursor cursor, ViewGroup parent) {
4536 // Inflate the individual item layout. `false` does not attach it to the root.
4537 return getLayoutInflater().inflate(R.layout.bookmarks_drawer_item_linearlayout, parent, false);
4541 public void bindView(View view, Context context, Cursor cursor) {
4542 // Get handles for the views.
4543 ImageView bookmarkFavoriteIcon = view.findViewById(R.id.bookmark_favorite_icon);
4544 TextView bookmarkNameTextView = view.findViewById(R.id.bookmark_name);
4546 // Get the favorite icon byte array from the cursor.
4547 byte[] favoriteIconByteArray = cursor.getBlob(cursor.getColumnIndex(BookmarksDatabaseHelper.FAVORITE_ICON));
4549 // Convert the byte array to a `Bitmap` beginning at the first byte and ending at the last.
4550 Bitmap favoriteIconBitmap = BitmapFactory.decodeByteArray(favoriteIconByteArray, 0, favoriteIconByteArray.length);
4552 // Display the bitmap in `bookmarkFavoriteIcon`.
4553 bookmarkFavoriteIcon.setImageBitmap(favoriteIconBitmap);
4555 // Get the bookmark name from the cursor and display it in `bookmarkNameTextView`.
4556 String bookmarkNameString = cursor.getString(cursor.getColumnIndex(BookmarksDatabaseHelper.BOOKMARK_NAME));
4557 bookmarkNameTextView.setText(bookmarkNameString);
4559 // Make the font bold for folders.
4560 if (cursor.getInt(cursor.getColumnIndex(BookmarksDatabaseHelper.IS_FOLDER)) == 1) {
4561 bookmarkNameTextView.setTypeface(Typeface.DEFAULT_BOLD);
4562 } else { // Reset the font to default for normal bookmarks.
4563 bookmarkNameTextView.setTypeface(Typeface.DEFAULT);
4568 // Get a handle for the bookmarks list view.
4569 ListView bookmarksListView = findViewById(R.id.bookmarks_drawer_listview);
4571 // Populate the list view with the adapter.
4572 bookmarksListView.setAdapter(bookmarksCursorAdapter);
4574 // Get a handle for the bookmarks title text view.
4575 TextView bookmarksTitleTextView = findViewById(R.id.bookmarks_title_textview);
4577 // Set the bookmarks drawer title.
4578 if (currentBookmarksFolder.isEmpty()) {
4579 bookmarksTitleTextView.setText(R.string.bookmarks);
4581 bookmarksTitleTextView.setText(currentBookmarksFolder);
4585 private void openWithApp(String url) {
4586 // Create an open with app intent with `ACTION_VIEW`.
4587 Intent openWithAppIntent = new Intent(Intent.ACTION_VIEW);
4589 // Set the URI but not the MIME type. This should open all available apps.
4590 openWithAppIntent.setData(Uri.parse(url));
4592 // Flag the intent to open in a new task.
4593 openWithAppIntent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
4597 // Show the chooser.
4598 startActivity(openWithAppIntent);
4599 } catch (ActivityNotFoundException exception) { // There are no apps available to open the URL.
4600 // Show a snackbar with the error.
4601 Snackbar.make(currentWebView, getString(R.string.error) + " " + exception, Snackbar.LENGTH_INDEFINITE).show();
4605 private void openWithBrowser(String url) {
4606 // Create an open with browser intent with `ACTION_VIEW`.
4607 Intent openWithBrowserIntent = new Intent(Intent.ACTION_VIEW);
4609 // Set the URI and the MIME type. `"text/html"` should load browser options.
4610 openWithBrowserIntent.setDataAndType(Uri.parse(url), "text/html");
4612 // Flag the intent to open in a new task.
4613 openWithBrowserIntent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
4617 // Show the chooser.
4618 startActivity(openWithBrowserIntent);
4619 } catch (ActivityNotFoundException exception) { // There are no browsers available to open the URL.
4620 // Show a snackbar with the error.
4621 Snackbar.make(currentWebView, getString(R.string.error) + " " + exception, Snackbar.LENGTH_INDEFINITE).show();
4625 private String sanitizeUrl(String url) {
4626 // Sanitize Google Analytics.
4627 if (sanitizeGoogleAnalytics) {
4629 if (url.contains("?utm_")) {
4630 url = url.substring(0, url.indexOf("?utm_"));
4634 if (url.contains("&utm_")) {
4635 url = url.substring(0, url.indexOf("&utm_"));
4639 // Sanitize Facebook Click IDs.
4640 if (sanitizeFacebookClickIds) {
4641 // Remove `?fbclid=`.
4642 if (url.contains("?fbclid=")) {
4643 url = url.substring(0, url.indexOf("?fbclid="));
4646 // Remove `&fbclid=`.
4647 if (url.contains("&fbclid=")) {
4648 url = url.substring(0, url.indexOf("&fbclid="));
4651 // Remove `?fbadid=`.
4652 if (url.contains("?fbadid=")) {
4653 url = url.substring(0, url.indexOf("?fbadid="));
4656 // Remove `&fbadid=`.
4657 if (url.contains("&fbadid=")) {
4658 url = url.substring(0, url.indexOf("&fbadid="));
4662 // Sanitize Twitter AMP redirects.
4663 if (sanitizeTwitterAmpRedirects) {
4665 if (url.contains("?amp=1")) {
4666 url = url.substring(0, url.indexOf("?amp=1"));
4670 // Return the sanitized URL.
4674 public void finishedPopulatingBlocklists(ArrayList<ArrayList<List<String[]>>> combinedBlocklists) {
4675 // Store the blocklists.
4676 easyList = combinedBlocklists.get(0);
4677 easyPrivacy = combinedBlocklists.get(1);
4678 fanboysAnnoyanceList = combinedBlocklists.get(2);
4679 fanboysSocialList = combinedBlocklists.get(3);
4680 ultraList = combinedBlocklists.get(4);
4681 ultraPrivacy = combinedBlocklists.get(5);
4683 // Check to see if the activity has been restarted with a saved state.
4684 if ((savedStateArrayList == null) || (savedStateArrayList.size() == 0)) { // The activity has not been restarted or it was restarted on start to force the night theme.
4685 // Add the first tab.
4686 addNewTab("", true);
4687 } else { // The activity has been restarted.
4688 // Restore each tab. Once the minimum API >= 24, a `forEach()` command can be used.
4689 for (int i = 0; i < savedStateArrayList.size(); i++) {
4691 tabLayout.addTab(tabLayout.newTab());
4694 TabLayout.Tab newTab = tabLayout.getTabAt(i);
4696 // Remove the lint warning below that the current tab might be null.
4697 assert newTab != null;
4699 // Set a custom view on the new tab.
4700 newTab.setCustomView(R.layout.tab_custom_view);
4702 // Add the new page.
4703 webViewPagerAdapter.restorePage(savedStateArrayList.get(i), savedNestedScrollWebViewStateArrayList.get(i));
4706 // Reset the saved state variables.
4707 savedStateArrayList = null;
4708 savedNestedScrollWebViewStateArrayList = null;
4710 // Restore the selected tab position.
4711 if (savedTabPosition == 0) { // The first tab is selected.
4712 // Set the first page as the current WebView.
4713 setCurrentWebView(0);
4714 } else { // the first tab is not selected.
4715 // Move to the selected tab.
4716 webViewPager.setCurrentItem(savedTabPosition);
4719 // Get the intent that started the app.
4720 Intent intent = getIntent();
4722 // Reset the intent. This prevents a duplicate tab from being created on restart.
4723 setIntent(new Intent());
4725 // Get the information from the intent.
4726 String intentAction = intent.getAction();
4727 Uri intentUriData = intent.getData();
4728 String intentStringExtra = intent.getStringExtra(Intent.EXTRA_TEXT);
4730 // Determine if this is a web search.
4731 boolean isWebSearch = ((intentAction != null) && intentAction.equals(Intent.ACTION_WEB_SEARCH));
4733 // Only process the URI if it contains data or it is a web search. If the user pressed the desktop icon after the app was already running the URI will be null.
4734 if (intentUriData != null || intentStringExtra != null || isWebSearch) {
4735 // Get the shared preferences.
4736 SharedPreferences sharedPreferences = PreferenceManager.getDefaultSharedPreferences(this);
4738 // Create a URL string.
4741 // If the intent action is a web search, perform the search.
4742 if (isWebSearch) { // The intent is a web search.
4743 // Create an encoded URL string.
4744 String encodedUrlString;
4746 // Sanitize the search input and convert it to a search.
4748 encodedUrlString = URLEncoder.encode(intent.getStringExtra(SearchManager.QUERY), "UTF-8");
4749 } catch (UnsupportedEncodingException exception) {
4750 encodedUrlString = "";
4753 // Add the base search URL.
4754 url = searchURL + encodedUrlString;
4755 } else if (intentUriData != null) { // The intent contains a URL formatted as a URI.
4756 // Set the intent data as the URL.
4757 url = intentUriData.toString();
4758 } else { // The intent contains a string, which might be a URL.
4759 // Set the intent string as the URL.
4760 url = intentStringExtra;
4763 // Add a new tab if specified in the preferences.
4764 if (sharedPreferences.getBoolean("open_intents_in_new_tab", true)) { // Load the URL in a new tab.
4765 // Set the loading new intent flag.
4766 loadingNewIntent = true;
4769 addNewTab(url, true);
4770 } else { // Load the URL in the current tab.
4772 loadUrl(currentWebView, url);
4778 public void addTab(View view) {
4779 // Add a new tab with a blank URL.
4780 addNewTab("", true);
4783 private void addNewTab(String url, boolean moveToTab) {
4784 // Clear the focus from the URL edit text, so that it will be populated with the information from the new tab.
4785 urlEditText.clearFocus();
4787 // Get the new page number. The page numbers are 0 indexed, so the new page number will match the current count.
4788 int newTabNumber = tabLayout.getTabCount();
4791 tabLayout.addTab(tabLayout.newTab());
4794 TabLayout.Tab newTab = tabLayout.getTabAt(newTabNumber);
4796 // Remove the lint warning below that the current tab might be null.
4797 assert newTab != null;
4799 // Set a custom view on the new tab.
4800 newTab.setCustomView(R.layout.tab_custom_view);
4802 // Add the new WebView page.
4803 webViewPagerAdapter.addPage(newTabNumber, webViewPager, url, moveToTab);
4806 public void closeTab(View view) {
4807 // Run the command according to the number of tabs.
4808 if (tabLayout.getTabCount() > 1) { // There is more than one tab open.
4809 // Close the current tab.
4811 } else { // There is only one tab open.
4816 private void closeCurrentTab() {
4817 // Get the current tab number.
4818 int currentTabNumber = tabLayout.getSelectedTabPosition();
4820 // Delete the current tab.
4821 tabLayout.removeTabAt(currentTabNumber);
4823 // Delete the current page. If the selected page number did not change during the delete (because the newly selected tab has has same number as the previously deleted tab), it will return true,
4824 // meaning that the current WebView must be reset. Otherwise it will happen automatically as the selected tab number changes.
4825 if (webViewPagerAdapter.deletePage(currentTabNumber, webViewPager)) {
4826 setCurrentWebView(currentTabNumber);
4830 private void clearAndExit() {
4831 // Get a handle for the shared preferences.
4832 SharedPreferences sharedPreferences = PreferenceManager.getDefaultSharedPreferences(this);
4834 // Close the bookmarks cursor and database.
4835 bookmarksCursor.close();
4836 bookmarksDatabaseHelper.close();
4838 // Get the status of the clear everything preference.
4839 boolean clearEverything = sharedPreferences.getBoolean("clear_everything", true);
4841 // Get a handle for the runtime.
4842 Runtime runtime = Runtime.getRuntime();
4844 // Get the application's private data directory, which will be something like `/data/user/0/com.stoutner.privacybrowser.standard`,
4845 // which links to `/data/data/com.stoutner.privacybrowser.standard`.
4846 String privateDataDirectoryString = getApplicationInfo().dataDir;
4849 if (clearEverything || sharedPreferences.getBoolean("clear_cookies", true)) {
4850 // The command to remove cookies changed slightly in API 21.
4851 if (Build.VERSION.SDK_INT >= 21) {
4852 CookieManager.getInstance().removeAllCookies(null);
4854 CookieManager.getInstance().removeAllCookie();
4857 // Manually delete the cookies database, as `CookieManager` sometimes will not flush its changes to disk before `System.exit(0)` is run.
4859 // Two commands must be used because `Runtime.exec()` does not like `*`.
4860 Process deleteCookiesProcess = runtime.exec("rm -f " + privateDataDirectoryString + "/app_webview/Cookies");
4861 Process deleteCookiesJournalProcess = runtime.exec("rm -f " + privateDataDirectoryString + "/app_webview/Cookies-journal");
4863 // Wait until the processes have finished.
4864 deleteCookiesProcess.waitFor();
4865 deleteCookiesJournalProcess.waitFor();
4866 } catch (Exception exception) {
4867 // Do nothing if an error is thrown.
4871 // Clear DOM storage.
4872 if (clearEverything || sharedPreferences.getBoolean("clear_dom_storage", true)) {
4873 // Ask `WebStorage` to clear the DOM storage.
4874 WebStorage webStorage = WebStorage.getInstance();
4875 webStorage.deleteAllData();
4877 // Manually delete the DOM storage files and directories, as `WebStorage` sometimes will not flush its changes to disk before `System.exit(0)` is run.
4879 // A `String[]` must be used because the directory contains a space and `Runtime.exec` will otherwise not escape the string correctly.
4880 Process deleteLocalStorageProcess = runtime.exec(new String[] {"rm", "-rf", privateDataDirectoryString + "/app_webview/Local Storage/"});
4882 // Multiple commands must be used because `Runtime.exec()` does not like `*`.
4883 Process deleteIndexProcess = runtime.exec("rm -rf " + privateDataDirectoryString + "/app_webview/IndexedDB");
4884 Process deleteQuotaManagerProcess = runtime.exec("rm -f " + privateDataDirectoryString + "/app_webview/QuotaManager");
4885 Process deleteQuotaManagerJournalProcess = runtime.exec("rm -f " + privateDataDirectoryString + "/app_webview/QuotaManager-journal");
4886 Process deleteDatabaseProcess = runtime.exec("rm -rf " + privateDataDirectoryString + "/app_webview/databases");
4888 // Wait until the processes have finished.
4889 deleteLocalStorageProcess.waitFor();
4890 deleteIndexProcess.waitFor();
4891 deleteQuotaManagerProcess.waitFor();
4892 deleteQuotaManagerJournalProcess.waitFor();
4893 deleteDatabaseProcess.waitFor();
4894 } catch (Exception exception) {
4895 // Do nothing if an error is thrown.
4899 // Clear form data if the API < 26.
4900 if ((Build.VERSION.SDK_INT < 26) && (clearEverything || sharedPreferences.getBoolean("clear_form_data", true))) {
4901 WebViewDatabase webViewDatabase = WebViewDatabase.getInstance(this);
4902 webViewDatabase.clearFormData();
4904 // Manually delete the form data database, as `WebViewDatabase` sometimes will not flush its changes to disk before `System.exit(0)` is run.
4906 // A string array must be used because the database contains a space and `Runtime.exec` will not otherwise escape the string correctly.
4907 Process deleteWebDataProcess = runtime.exec(new String[] {"rm", "-f", privateDataDirectoryString + "/app_webview/Web Data"});
4908 Process deleteWebDataJournalProcess = runtime.exec(new String[] {"rm", "-f", privateDataDirectoryString + "/app_webview/Web Data-journal"});
4910 // Wait until the processes have finished.
4911 deleteWebDataProcess.waitFor();
4912 deleteWebDataJournalProcess.waitFor();
4913 } catch (Exception exception) {
4914 // Do nothing if an error is thrown.
4918 // Clear the logcat.
4919 if (clearEverything || sharedPreferences.getBoolean(getString(R.string.clear_logcat_key), true)) {
4921 // Clear the logcat. `-c` clears the logcat. `-b all` clears all the buffers (instead of just crash, main, and system).
4922 Process process = Runtime.getRuntime().exec("logcat -b all -c");
4924 // Wait for the process to finish.
4926 } catch (IOException|InterruptedException exception) {
4932 if (clearEverything || sharedPreferences.getBoolean("clear_cache", true)) {
4933 // Clear the cache from each WebView.
4934 for (int i = 0; i < webViewPagerAdapter.getCount(); i++) {
4935 // Get the WebView tab fragment.
4936 WebViewTabFragment webViewTabFragment = webViewPagerAdapter.getPageFragment(i);
4938 // Get the WebView fragment view.
4939 View webViewFragmentView = webViewTabFragment.getView();
4941 // Only clear the cache if the WebView exists.
4942 if (webViewFragmentView != null) {
4943 // Get the nested scroll WebView from the tab fragment.
4944 NestedScrollWebView nestedScrollWebView = webViewFragmentView.findViewById(R.id.nestedscroll_webview);
4946 // Clear the cache for this WebView.
4947 nestedScrollWebView.clearCache(true);
4951 // Manually delete the cache directories.
4953 // Delete the main cache directory.
4954 Process deleteCacheProcess = runtime.exec("rm -rf " + privateDataDirectoryString + "/cache");
4956 // Delete the secondary `Service Worker` cache directory.
4957 // A string array must be used because the directory contains a space and `Runtime.exec` will otherwise not escape the string correctly.
4958 Process deleteServiceWorkerProcess = runtime.exec(new String[] {"rm", "-rf", privateDataDirectoryString + "/app_webview/Service Worker/"});
4960 // Wait until the processes have finished.
4961 deleteCacheProcess.waitFor();
4962 deleteServiceWorkerProcess.waitFor();
4963 } catch (Exception exception) {
4964 // Do nothing if an error is thrown.
4968 // Wipe out each WebView.
4969 for (int i = 0; i < webViewPagerAdapter.getCount(); i++) {
4970 // Get the WebView tab fragment.
4971 WebViewTabFragment webViewTabFragment = webViewPagerAdapter.getPageFragment(i);
4973 // Get the WebView frame layout.
4974 FrameLayout webViewFrameLayout = (FrameLayout) webViewTabFragment.getView();
4976 // Only wipe out the WebView if it exists.
4977 if (webViewFrameLayout != null) {
4978 // Get the nested scroll WebView from the tab fragment.
4979 NestedScrollWebView nestedScrollWebView = webViewFrameLayout.findViewById(R.id.nestedscroll_webview);
4981 // Clear SSL certificate preferences for this WebView.
4982 nestedScrollWebView.clearSslPreferences();
4984 // Clear the back/forward history for this WebView.
4985 nestedScrollWebView.clearHistory();
4987 // Remove all the views from the frame layout.
4988 webViewFrameLayout.removeAllViews();
4990 // Destroy the internal state of the WebView.
4991 nestedScrollWebView.destroy();
4995 // Clear the custom headers.
4996 customHeaders.clear();
4998 // Manually delete the `app_webview` folder, which contains the cookies, DOM storage, form data, and `Service Worker` cache.
4999 // See `https://code.google.com/p/android/issues/detail?id=233826&thanks=233826&ts=1486670530`.
5000 if (clearEverything) {
5002 // Delete the folder.
5003 Process deleteAppWebviewProcess = runtime.exec("rm -rf " + privateDataDirectoryString + "/app_webview");
5005 // Wait until the process has finished.
5006 deleteAppWebviewProcess.waitFor();
5007 } catch (Exception exception) {
5008 // Do nothing if an error is thrown.
5012 // Close Privacy Browser. `finishAndRemoveTask` also removes Privacy Browser from the recent app list.
5013 if (Build.VERSION.SDK_INT >= 21) {
5014 finishAndRemoveTask();
5019 // Remove the terminated program from RAM. The status code is `0`.
5023 public void bookmarksBack(View view) {
5024 if (currentBookmarksFolder.isEmpty()) { // The home folder is displayed.
5025 // close the bookmarks drawer.
5026 drawerLayout.closeDrawer(GravityCompat.END);
5027 } else { // A subfolder is displayed.
5028 // Place the former parent folder in `currentFolder`.
5029 currentBookmarksFolder = bookmarksDatabaseHelper.getParentFolderName(currentBookmarksFolder);
5031 // Load the new folder.
5032 loadBookmarksFolder();
5036 private void setCurrentWebView(int pageNumber) {
5037 // Stop the swipe to refresh indicator if it is running
5038 swipeRefreshLayout.setRefreshing(false);
5040 // Get the WebView tab fragment.
5041 WebViewTabFragment webViewTabFragment = webViewPagerAdapter.getPageFragment(pageNumber);
5043 // Get the fragment view.
5044 View webViewFragmentView = webViewTabFragment.getView();
5046 // Set the current WebView if the fragment view is not null.
5047 if (webViewFragmentView != null) { // The fragment has been populated.
5048 // Store the current WebView.
5049 currentWebView = webViewFragmentView.findViewById(R.id.nestedscroll_webview);
5051 // Update the status of swipe to refresh.
5052 if (currentWebView.getSwipeToRefresh()) { // Swipe to refresh is enabled.
5053 // Enable the swipe refresh layout if the WebView is scrolled all the way to the top. It is updated every time the scroll changes.
5054 swipeRefreshLayout.setEnabled(currentWebView.getScrollY() == 0);
5055 } else { // Swipe to refresh is disabled.
5056 // Disable the swipe refresh layout.
5057 swipeRefreshLayout.setEnabled(false);
5060 // Get a handle for the cookie manager.
5061 CookieManager cookieManager = CookieManager.getInstance();
5063 // Set the first-party cookie status.
5064 cookieManager.setAcceptCookie(currentWebView.getAcceptFirstPartyCookies());
5066 // Update the privacy icons. `true` redraws the icons in the app bar.
5067 updatePrivacyIcons(true);
5069 // Get a handle for the input method manager.
5070 InputMethodManager inputMethodManager = (InputMethodManager) getSystemService(Context.INPUT_METHOD_SERVICE);
5072 // Remove the lint warning below that the input method manager might be null.
5073 assert inputMethodManager != null;
5075 // Get the current URL.
5076 String url = currentWebView.getUrl();
5078 // Update the URL edit text if not loading a new intent. Otherwise, this will be handled by `onPageStarted()` (if called) and `onPageFinished()`.
5079 if (!loadingNewIntent) { // A new intent is not being loaded.
5080 if ((url == null) || url.equals("about:blank")) { // The WebView is blank.
5081 // Display the hint in the URL edit text.
5082 urlEditText.setText("");
5084 // Request focus for the URL text box.
5085 urlEditText.requestFocus();
5087 // Display the keyboard.
5088 inputMethodManager.showSoftInput(urlEditText, 0);
5089 } else { // The WebView has a loaded URL.
5090 // Clear the focus from the URL text box.
5091 urlEditText.clearFocus();
5093 // Hide the soft keyboard.
5094 inputMethodManager.hideSoftInputFromWindow(currentWebView.getWindowToken(), 0);
5096 // Display the current URL in the URL text box.
5097 urlEditText.setText(url);
5099 // Highlight the URL text.
5102 } else { // A new intent is being loaded.
5103 // Reset the loading new intent tracker.
5104 loadingNewIntent = false;
5107 // Set the background to indicate the domain settings status.
5108 if (currentWebView.getDomainSettingsApplied()) {
5109 // Get the current theme status.
5110 int currentThemeStatus = getResources().getConfiguration().uiMode & Configuration.UI_MODE_NIGHT_MASK;
5112 // Set a green background on the URL relative layout to indicate that custom domain settings are being used.
5113 if (currentThemeStatus == Configuration.UI_MODE_NIGHT_NO) {
5114 urlRelativeLayout.setBackground(ResourcesCompat.getDrawable(getResources(), R.drawable.url_bar_background_light_green, null));
5116 urlRelativeLayout.setBackground(ResourcesCompat.getDrawable(getResources(), R.drawable.url_bar_background_dark_blue, null));
5119 urlRelativeLayout.setBackground(ResourcesCompat.getDrawable(getResources(), R.color.transparent, null));
5121 } else { // The fragment has not been populated. Try again in 100 milliseconds.
5122 // Create a handler to set the current WebView.
5123 Handler setCurrentWebViewHandler = new Handler();
5125 // Create a runnable to set the current WebView.
5126 Runnable setCurrentWebWebRunnable = () -> {
5127 // Set the current WebView.
5128 setCurrentWebView(pageNumber);
5131 // Try setting the current WebView again after 100 milliseconds.
5132 setCurrentWebViewHandler.postDelayed(setCurrentWebWebRunnable, 100);
5137 public void initializeWebView(NestedScrollWebView nestedScrollWebView, int pageNumber, ProgressBar progressBar, String url, Boolean restoringState) {
5138 // Get a handle for the shared preferences.
5139 SharedPreferences sharedPreferences = PreferenceManager.getDefaultSharedPreferences(this);
5141 // Get the WebView theme.
5142 String webViewTheme = sharedPreferences.getString("webview_theme", getString(R.string.webview_theme_default_value));
5144 // Get the WebView theme entry values string array.
5145 String[] webViewThemeEntryValuesStringArray = getResources().getStringArray(R.array.webview_theme_entry_values);
5147 // Apply the WebView theme if supported by the installed WebView.
5148 if (WebViewFeature.isFeatureSupported(WebViewFeature.FORCE_DARK)) {
5149 // Set the WebView theme. A switch statement cannot be used because the WebView theme entry values string array is not a compile time constant.
5150 if (webViewTheme.equals(webViewThemeEntryValuesStringArray[1])) { // The light theme is selected.
5151 // Turn off the WebView dark mode.
5152 WebSettingsCompat.setForceDark(nestedScrollWebView.getSettings(), WebSettingsCompat.FORCE_DARK_OFF);
5154 // Make the WebView visible. The WebView was created invisible in `webview_framelayout` to prevent a white background splash in night mode.
5155 // If the system is currently in night mode, showing the WebView will be handled in `onProgressChanged()`.
5156 nestedScrollWebView.setVisibility(View.VISIBLE);
5157 } else if (webViewTheme.equals(webViewThemeEntryValuesStringArray[2])) { // The dark theme is selected.
5158 // Turn on the WebView dark mode.
5159 WebSettingsCompat.setForceDark(nestedScrollWebView.getSettings(), WebSettingsCompat.FORCE_DARK_ON);
5160 } else { // The system default theme is selected.
5161 // Get the current system theme status.
5162 int currentThemeStatus = getResources().getConfiguration().uiMode & Configuration.UI_MODE_NIGHT_MASK;
5164 // Set the WebView theme according to the current system theme status.
5165 if (currentThemeStatus == Configuration.UI_MODE_NIGHT_NO) { // The system is in day mode.
5166 // Turn off the WebView dark mode.
5167 WebSettingsCompat.setForceDark(nestedScrollWebView.getSettings(), WebSettingsCompat.FORCE_DARK_OFF);
5169 // Make the WebView visible. The WebView was created invisible in `webview_framelayout` to prevent a white background splash in night mode.
5170 // If the system is currently in night mode, showing the WebView will be handled in `onProgressChanged()`.
5171 nestedScrollWebView.setVisibility(View.VISIBLE);
5172 } else { // The system is in night mode.
5173 // Turn on the WebView dark mode.
5174 WebSettingsCompat.setForceDark(nestedScrollWebView.getSettings(), WebSettingsCompat.FORCE_DARK_ON);
5179 // Get a handle for the activity
5180 Activity activity = this;
5182 // Get a handle for the input method manager.
5183 InputMethodManager inputMethodManager = (InputMethodManager) getSystemService(Context.INPUT_METHOD_SERVICE);
5185 // Instantiate the blocklist helper.
5186 BlocklistHelper blocklistHelper = new BlocklistHelper();
5188 // Remove the lint warning below that the input method manager might be null.
5189 assert inputMethodManager != null;
5191 // Initialize the favorite icon.
5192 nestedScrollWebView.initializeFavoriteIcon();
5194 // Set the app bar scrolling.
5195 nestedScrollWebView.setNestedScrollingEnabled(sharedPreferences.getBoolean("scroll_app_bar", true));
5197 // Allow pinch to zoom.
5198 nestedScrollWebView.getSettings().setBuiltInZoomControls(true);
5200 // Hide zoom controls.
5201 nestedScrollWebView.getSettings().setDisplayZoomControls(false);
5203 // Don't allow mixed content (HTTP and HTTPS) on the same website.
5204 if (Build.VERSION.SDK_INT >= 21) {
5205 nestedScrollWebView.getSettings().setMixedContentMode(WebSettings.MIXED_CONTENT_NEVER_ALLOW);
5208 // Set the WebView to load in overview mode (zoomed out to the maximum width).
5209 nestedScrollWebView.getSettings().setLoadWithOverviewMode(true);
5211 // Explicitly disable geolocation.
5212 nestedScrollWebView.getSettings().setGeolocationEnabled(false);
5214 // Allow loading of file:// URLs. This is necessary for opening MHT web archives, which are copies into a temporary cache location.
5215 nestedScrollWebView.getSettings().setAllowFileAccess(true);
5217 // Create a double-tap gesture detector to toggle full-screen mode.
5218 GestureDetector doubleTapGestureDetector = new GestureDetector(getApplicationContext(), new GestureDetector.SimpleOnGestureListener() {
5219 // Override `onDoubleTap()`. All other events are handled using the default settings.
5221 public boolean onDoubleTap(MotionEvent event) {
5222 if (fullScreenBrowsingModeEnabled) { // Only process the double-tap if full screen browsing mode is enabled.
5223 // Toggle the full screen browsing mode tracker.
5224 inFullScreenBrowsingMode = !inFullScreenBrowsingMode;
5226 // Toggle the full screen browsing mode.
5227 if (inFullScreenBrowsingMode) { // Switch to full screen mode.
5228 // Hide the app bar if specified.
5230 // Close the find on page bar if it is visible.
5231 closeFindOnPage(null);
5233 // Hide the tab linear layout.
5234 tabsLinearLayout.setVisibility(View.GONE);
5236 // Hide the action bar.
5239 // Check to see if the app bar is normally scrolled.
5240 if (scrollAppBar) { // The app bar is scrolled when it is displayed.
5241 // Get the swipe refresh layout parameters.
5242 CoordinatorLayout.LayoutParams swipeRefreshLayoutParams = (CoordinatorLayout.LayoutParams) swipeRefreshLayout.getLayoutParams();
5244 // Remove the off-screen scrolling layout.
5245 swipeRefreshLayoutParams.setBehavior(null);
5246 } else { // The app bar is not scrolled when it is displayed.
5247 // Remove the padding from the top of the swipe refresh layout.
5248 swipeRefreshLayout.setPadding(0, 0, 0, 0);
5250 // The swipe refresh circle must be moved above the now removed status bar location.
5251 swipeRefreshLayout.setProgressViewOffset(false, -200, defaultProgressViewEndOffset);
5255 // Hide the banner ad in the free flavor.
5256 if (BuildConfig.FLAVOR.contentEquals("free")) {
5257 // Get a handle for the ad view. This cannot be a class variable because it changes with each ad load.
5258 View adView = findViewById(R.id.adview);
5260 // Hide the banner ad.
5261 AdHelper.hideAd(adView);
5264 /* Hide the system bars.
5265 * SYSTEM_UI_FLAG_FULLSCREEN hides the status bar at the top of the screen.
5266 * SYSTEM_UI_FLAG_LAYOUT_FULLSCREEN makes the root frame layout fill the area that is normally reserved for the status bar.
5267 * SYSTEM_UI_FLAG_HIDE_NAVIGATION hides the navigation bar on the bottom or right of the screen.
5268 * SYSTEM_UI_FLAG_IMMERSIVE_STICKY makes the status and navigation bars translucent and automatically re-hides them after they are shown.
5270 rootFrameLayout.setSystemUiVisibility(View.SYSTEM_UI_FLAG_FULLSCREEN | View.SYSTEM_UI_FLAG_LAYOUT_FULLSCREEN | View.SYSTEM_UI_FLAG_HIDE_NAVIGATION |
5271 View.SYSTEM_UI_FLAG_IMMERSIVE_STICKY);
5272 } else { // Switch to normal viewing mode.
5273 // Show the app bar if it was hidden.
5275 // Show the tab linear layout.
5276 tabsLinearLayout.setVisibility(View.VISIBLE);
5278 // Show the action bar.
5281 // Check to see if the app bar is normally scrolled.
5282 if (scrollAppBar) { // The app bar is scrolled when it is displayed.
5283 // Get the swipe refresh layout parameters.
5284 CoordinatorLayout.LayoutParams swipeRefreshLayoutParams = (CoordinatorLayout.LayoutParams) swipeRefreshLayout.getLayoutParams();
5286 // Add the off-screen scrolling layout.
5287 swipeRefreshLayoutParams.setBehavior(new AppBarLayout.ScrollingViewBehavior());
5288 } else { // The app bar is not scrolled when it is displayed.
5289 // The swipe refresh layout must be manually moved below the app bar layout.
5290 swipeRefreshLayout.setPadding(0, appBarHeight, 0, 0);
5292 // The swipe to refresh circle doesn't always hide itself completely unless it is moved up 10 pixels.
5293 swipeRefreshLayout.setProgressViewOffset(false, defaultProgressViewStartOffset - 10 + appBarHeight, defaultProgressViewEndOffset + appBarHeight);
5297 // Show the banner ad in the free flavor.
5298 if (BuildConfig.FLAVOR.contentEquals("free")) {
5299 // Get a handle for the ad view. This cannot be a class variable because it changes with each ad load.
5300 View adView = findViewById(R.id.adview);
5302 // Reload the ad. `getContext()` can be used instead of `getActivity.getApplicationContext()` once the minimum API >= 23.
5303 AdHelper.loadAd(adView, getApplicationContext(), activity, getString(R.string.ad_unit_id));
5306 // Remove the `SYSTEM_UI` flags from the root frame layout.
5307 rootFrameLayout.setSystemUiVisibility(0);
5310 // Consume the double-tap.
5312 } else { // Do not consume the double-tap because full screen browsing mode is disabled.
5318 // Pass all touch events on the WebView through the double-tap gesture detector.
5319 nestedScrollWebView.setOnTouchListener((View view, MotionEvent event) -> {
5320 // Call `performClick()` on the view, which is required for accessibility.
5321 view.performClick();
5323 // Send the event to the gesture detector.
5324 return doubleTapGestureDetector.onTouchEvent(event);
5327 // Register the WebView for a context menu. This is used to see link targets and download images.
5328 registerForContextMenu(nestedScrollWebView);
5330 // Allow the downloading of files.
5331 nestedScrollWebView.setDownloadListener((String downloadUrl, String userAgent, String contentDisposition, String mimetype, long contentLength) -> {
5332 // Define a formatted file size string.
5333 String formattedFileSizeString;
5335 // Process the content length if it contains data.
5336 if (contentLength > 0) { // The content length is greater than 0.
5337 // Format the content length as a string.
5338 formattedFileSizeString = NumberFormat.getInstance().format(contentLength) + " " + getString(R.string.bytes);
5339 } else { // The content length is not greater than 0.
5340 // Set the formatted file size string to be `unknown size`.
5341 formattedFileSizeString = getString(R.string.unknown_size);
5344 // Get the file name from the content disposition.
5345 String fileNameString = PrepareSaveDialog.getFileNameFromHeaders(this, contentDisposition, mimetype, downloadUrl);
5347 // Prevent the dialog from displaying if the app window is not visible.
5348 // The download listener continues to function even when the WebView is paused. Attempting to display a dialog in that state leads to a crash.
5349 while (!activity.getWindow().isActive()) {
5351 // The window is not active. Wait 1 second.
5353 } catch (InterruptedException e) {
5358 // Instantiate the save dialog.
5359 DialogFragment saveDialogFragment = SaveWebpageDialog.saveWebpage(SaveWebpageDialog.SAVE_URL, downloadUrl, formattedFileSizeString, fileNameString, userAgent,
5360 nestedScrollWebView.getAcceptFirstPartyCookies());
5362 // Show the save dialog. It must be named `save_dialog` so that the file picker can update the file name.
5363 saveDialogFragment.show(getSupportFragmentManager(), getString(R.string.save_dialog));
5366 // Update the find on page count.
5367 nestedScrollWebView.setFindListener(new WebView.FindListener() {
5368 // Get a handle for `findOnPageCountTextView`.
5369 final TextView findOnPageCountTextView = findViewById(R.id.find_on_page_count_textview);
5372 public void onFindResultReceived(int activeMatchOrdinal, int numberOfMatches, boolean isDoneCounting) {
5373 if ((isDoneCounting) && (numberOfMatches == 0)) { // There are no matches.
5374 // Set `findOnPageCountTextView` to `0/0`.
5375 findOnPageCountTextView.setText(R.string.zero_of_zero);
5376 } else if (isDoneCounting) { // There are matches.
5377 // `activeMatchOrdinal` is zero-based.
5378 int activeMatch = activeMatchOrdinal + 1;
5380 // Build the match string.
5381 String matchString = activeMatch + "/" + numberOfMatches;
5383 // Set `findOnPageCountTextView`.
5384 findOnPageCountTextView.setText(matchString);
5389 // Update the status of swipe to refresh based on the scroll position of the nested scroll WebView. Also reinforce full screen browsing mode.
5390 // On API < 23, `getViewTreeObserver().addOnScrollChangedListener()` must be used, but it is a little bit buggy and appears to get garbage collected from time to time.
5391 if (Build.VERSION.SDK_INT >= 23) {
5392 nestedScrollWebView.setOnScrollChangeListener((view, i, i1, i2, i3) -> {
5393 if (nestedScrollWebView.getSwipeToRefresh()) {
5394 // Only enable swipe to refresh if the WebView is scrolled to the top.
5395 swipeRefreshLayout.setEnabled(nestedScrollWebView.getScrollY() == 0);
5397 // Disable swipe to refresh.
5398 swipeRefreshLayout.setEnabled(false);
5401 // Reinforce the system UI visibility flags if in full screen browsing mode.
5402 // This hides the status and navigation bars, which are displayed if other elements are shown, like dialog boxes, the options menu, or the keyboard.
5403 if (inFullScreenBrowsingMode) {
5404 /* Hide the system bars.
5405 * SYSTEM_UI_FLAG_FULLSCREEN hides the status bar at the top of the screen.
5406 * SYSTEM_UI_FLAG_LAYOUT_FULLSCREEN makes the root frame layout fill the area that is normally reserved for the status bar.
5407 * SYSTEM_UI_FLAG_HIDE_NAVIGATION hides the navigation bar on the bottom or right of the screen.
5408 * SYSTEM_UI_FLAG_IMMERSIVE_STICKY makes the status and navigation bars translucent and automatically re-hides them after they are shown.
5410 rootFrameLayout.setSystemUiVisibility(View.SYSTEM_UI_FLAG_FULLSCREEN | View.SYSTEM_UI_FLAG_LAYOUT_FULLSCREEN | View.SYSTEM_UI_FLAG_HIDE_NAVIGATION |
5411 View.SYSTEM_UI_FLAG_IMMERSIVE_STICKY);
5415 nestedScrollWebView.getViewTreeObserver().addOnScrollChangedListener(() -> {
5416 if (nestedScrollWebView.getSwipeToRefresh()) {
5417 // Only enable swipe to refresh if the WebView is scrolled to the top.
5418 swipeRefreshLayout.setEnabled(nestedScrollWebView.getScrollY() == 0);
5420 // Disable swipe to refresh.
5421 swipeRefreshLayout.setEnabled(false);
5425 // Reinforce the system UI visibility flags if in full screen browsing mode.
5426 // This hides the status and navigation bars, which are displayed if other elements are shown, like dialog boxes, the options menu, or the keyboard.
5427 if (inFullScreenBrowsingMode) {
5428 /* Hide the system bars.
5429 * SYSTEM_UI_FLAG_FULLSCREEN hides the status bar at the top of the screen.
5430 * SYSTEM_UI_FLAG_LAYOUT_FULLSCREEN makes the root frame layout fill the area that is normally reserved for the status bar.
5431 * SYSTEM_UI_FLAG_HIDE_NAVIGATION hides the navigation bar on the bottom or right of the screen.
5432 * SYSTEM_UI_FLAG_IMMERSIVE_STICKY makes the status and navigation bars translucent and automatically re-hides them after they are shown.
5434 rootFrameLayout.setSystemUiVisibility(View.SYSTEM_UI_FLAG_FULLSCREEN | View.SYSTEM_UI_FLAG_LAYOUT_FULLSCREEN | View.SYSTEM_UI_FLAG_HIDE_NAVIGATION |
5435 View.SYSTEM_UI_FLAG_IMMERSIVE_STICKY);
5440 // Set the web chrome client.
5441 nestedScrollWebView.setWebChromeClient(new WebChromeClient() {
5442 // Update the progress bar when a page is loading.
5444 public void onProgressChanged(WebView view, int progress) {
5445 // Update the progress bar.
5446 progressBar.setProgress(progress);
5448 // Set the visibility of the progress bar.
5449 if (progress < 100) {
5450 // Show the progress bar.
5451 progressBar.setVisibility(View.VISIBLE);
5453 // Hide the progress bar.
5454 progressBar.setVisibility(View.GONE);
5456 //Stop the swipe to refresh indicator if it is running
5457 swipeRefreshLayout.setRefreshing(false);
5459 // Make the current WebView visible. If this is a new tab, the current WebView would have been created invisible in `webview_framelayout` to prevent a white background splash in night mode.
5460 nestedScrollWebView.setVisibility(View.VISIBLE);
5464 // Set the favorite icon when it changes.
5466 public void onReceivedIcon(WebView view, Bitmap icon) {
5467 // Only update the favorite icon if the website has finished loading.
5468 if (progressBar.getVisibility() == View.GONE) {
5469 // Store the new favorite icon.
5470 nestedScrollWebView.setFavoriteOrDefaultIcon(icon);
5472 // Get the current page position.
5473 int currentPosition = webViewPagerAdapter.getPositionForId(nestedScrollWebView.getWebViewFragmentId());
5475 // Get the current tab.
5476 TabLayout.Tab tab = tabLayout.getTabAt(currentPosition);
5478 // Check to see if the tab has been populated.
5480 // Get the custom view from the tab.
5481 View tabView = tab.getCustomView();
5483 // Check to see if the custom tab view has been populated.
5484 if (tabView != null) {
5485 // Get the favorite icon image view from the tab.
5486 ImageView tabFavoriteIconImageView = tabView.findViewById(R.id.favorite_icon_imageview);
5488 // Display the favorite icon in the tab.
5489 tabFavoriteIconImageView.setImageBitmap(Bitmap.createScaledBitmap(icon, 64, 64, true));
5495 // Save a copy of the title when it changes.
5497 public void onReceivedTitle(WebView view, String title) {
5498 // Get the current page position.
5499 int currentPosition = webViewPagerAdapter.getPositionForId(nestedScrollWebView.getWebViewFragmentId());
5501 // Get the current tab.
5502 TabLayout.Tab tab = tabLayout.getTabAt(currentPosition);
5504 // Only populate the title text view if the tab has been fully created.
5506 // Get the custom view from the tab.
5507 View tabView = tab.getCustomView();
5509 // Only populate the title text view if the tab view has been fully populated.
5510 if (tabView != null) {
5511 // Get the title text view from the tab.
5512 TextView tabTitleTextView = tabView.findViewById(R.id.title_textview);
5514 // Set the title according to the URL.
5515 if (title.equals("about:blank")) {
5516 // Set the title to indicate a new tab.
5517 tabTitleTextView.setText(R.string.new_tab);
5519 // Set the title as the tab text.
5520 tabTitleTextView.setText(title);
5526 // Enter full screen video.
5528 public void onShowCustomView(View video, CustomViewCallback callback) {
5529 // Set the full screen video flag.
5530 displayingFullScreenVideo = true;
5532 // Pause the ad if this is the free flavor.
5533 if (BuildConfig.FLAVOR.contentEquals("free")) {
5534 // Get a handle for the ad view. This cannot be a class variable because it changes with each ad load.
5535 View adView = findViewById(R.id.adview);
5537 // The AdView is destroyed and recreated, which changes the ID, every time it is reloaded to handle possible rotations.
5538 AdHelper.pauseAd(adView);
5541 // Hide the keyboard.
5542 inputMethodManager.hideSoftInputFromWindow(nestedScrollWebView.getWindowToken(), 0);
5544 // Hide the main content relative layout.
5545 mainContentRelativeLayout.setVisibility(View.GONE);
5547 /* Hide the system bars.
5548 * SYSTEM_UI_FLAG_FULLSCREEN hides the status bar at the top of the screen.
5549 * SYSTEM_UI_FLAG_LAYOUT_FULLSCREEN makes the root frame layout fill the area that is normally reserved for the status bar.
5550 * SYSTEM_UI_FLAG_HIDE_NAVIGATION hides the navigation bar on the bottom or right of the screen.
5551 * SYSTEM_UI_FLAG_IMMERSIVE_STICKY makes the status and navigation bars translucent and automatically re-hides them after they are shown.
5553 rootFrameLayout.setSystemUiVisibility(View.SYSTEM_UI_FLAG_FULLSCREEN | View.SYSTEM_UI_FLAG_LAYOUT_FULLSCREEN | View.SYSTEM_UI_FLAG_HIDE_NAVIGATION |
5554 View.SYSTEM_UI_FLAG_IMMERSIVE_STICKY);
5556 // Disable the sliding drawers.
5557 drawerLayout.setDrawerLockMode(DrawerLayout.LOCK_MODE_LOCKED_CLOSED);
5559 // Add the video view to the full screen video frame layout.
5560 fullScreenVideoFrameLayout.addView(video);
5562 // Show the full screen video frame layout.
5563 fullScreenVideoFrameLayout.setVisibility(View.VISIBLE);
5565 // Disable the screen timeout while the video is playing. YouTube does this automatically, but not all other videos do.
5566 fullScreenVideoFrameLayout.setKeepScreenOn(true);
5569 // Exit full screen video.
5571 public void onHideCustomView() {
5572 // Re-enable the screen timeout.
5573 fullScreenVideoFrameLayout.setKeepScreenOn(false);
5575 // Unset the full screen video flag.
5576 displayingFullScreenVideo = false;
5578 // Remove all the views from the full screen video frame layout.
5579 fullScreenVideoFrameLayout.removeAllViews();
5581 // Hide the full screen video frame layout.
5582 fullScreenVideoFrameLayout.setVisibility(View.GONE);
5584 // Enable the sliding drawers.
5585 drawerLayout.setDrawerLockMode(DrawerLayout.LOCK_MODE_UNLOCKED);
5587 // Show the main content relative layout.
5588 mainContentRelativeLayout.setVisibility(View.VISIBLE);
5590 // Apply the appropriate full screen mode flags.
5591 if (fullScreenBrowsingModeEnabled && inFullScreenBrowsingMode) { // Privacy Browser is currently in full screen browsing mode.
5592 // Hide the app bar if specified.
5594 // Hide the tab linear layout.
5595 tabsLinearLayout.setVisibility(View.GONE);
5597 // Hide the action bar.
5601 // Hide the banner ad in the free flavor.
5602 if (BuildConfig.FLAVOR.contentEquals("free")) {
5603 // Get a handle for the ad view. This cannot be a class variable because it changes with each ad load.
5604 View adView = findViewById(R.id.adview);
5606 // Hide the banner ad.
5607 AdHelper.hideAd(adView);
5610 /* Hide the system bars.
5611 * SYSTEM_UI_FLAG_FULLSCREEN hides the status bar at the top of the screen.
5612 * SYSTEM_UI_FLAG_LAYOUT_FULLSCREEN makes the root frame layout fill the area that is normally reserved for the status bar.
5613 * SYSTEM_UI_FLAG_HIDE_NAVIGATION hides the navigation bar on the bottom or right of the screen.
5614 * SYSTEM_UI_FLAG_IMMERSIVE_STICKY makes the status and navigation bars translucent and automatically re-hides them after they are shown.
5616 rootFrameLayout.setSystemUiVisibility(View.SYSTEM_UI_FLAG_FULLSCREEN | View.SYSTEM_UI_FLAG_LAYOUT_FULLSCREEN | View.SYSTEM_UI_FLAG_HIDE_NAVIGATION |
5617 View.SYSTEM_UI_FLAG_IMMERSIVE_STICKY);
5618 } else { // Switch to normal viewing mode.
5619 // Remove the `SYSTEM_UI` flags from the root frame layout.
5620 rootFrameLayout.setSystemUiVisibility(0);
5623 // Reload the ad for the free flavor if not in full screen mode.
5624 if (BuildConfig.FLAVOR.contentEquals("free") && !inFullScreenBrowsingMode) {
5625 // Get a handle for the ad view. This cannot be a class variable because it changes with each ad load.
5626 View adView = findViewById(R.id.adview);
5628 // Reload the ad. `getContext()` can be used instead of `getActivity.getApplicationContext()` once the minimum API >= 23.
5629 AdHelper.loadAd(adView, getApplicationContext(), activity, getString(R.string.ad_unit_id));
5635 public boolean onShowFileChooser(WebView webView, ValueCallback<Uri[]> filePathCallback, FileChooserParams fileChooserParams) {
5636 // Show the file chooser if the device is running API >= 21.
5637 if (Build.VERSION.SDK_INT >= 21) {
5638 // Store the file path callback.
5639 fileChooserCallback = filePathCallback;
5641 // Create an intent to open a chooser based on the file chooser parameters.
5642 Intent fileChooserIntent = fileChooserParams.createIntent();
5644 // Get a handle for the package manager.
5645 PackageManager packageManager = getPackageManager();
5647 // Check to see if the file chooser intent resolves to an installed package.
5648 if (fileChooserIntent.resolveActivity(packageManager) != null) { // The file chooser intent is fine.
5649 // Start the file chooser intent.
5650 startActivityForResult(fileChooserIntent, BROWSE_FILE_UPLOAD_REQUEST_CODE);
5651 } else { // The file chooser intent will cause a crash.
5652 // Create a generic intent to open a chooser.
5653 Intent genericFileChooserIntent = new Intent(Intent.ACTION_GET_CONTENT);
5655 // Request an openable file.
5656 genericFileChooserIntent.addCategory(Intent.CATEGORY_OPENABLE);
5658 // Set the file type to everything.
5659 genericFileChooserIntent.setType("*/*");
5661 // Start the generic file chooser intent.
5662 startActivityForResult(genericFileChooserIntent, BROWSE_FILE_UPLOAD_REQUEST_CODE);
5669 nestedScrollWebView.setWebViewClient(new WebViewClient() {
5670 // `shouldOverrideUrlLoading` makes this WebView the default handler for URLs inside the app, so that links are not kicked out to other apps.
5671 // The deprecated `shouldOverrideUrlLoading` must be used until API >= 24.
5673 public boolean shouldOverrideUrlLoading(WebView view, String url) {
5674 // Sanitize the url.
5675 url = sanitizeUrl(url);
5677 // Handle the URL according to the type.
5678 if (url.startsWith("http")) { // Load the URL in Privacy Browser.
5679 // Load the URL. By using `loadUrl()`, instead of `loadUrlFromBase()`, the Referer header will never be sent.
5680 loadUrl(nestedScrollWebView, url);
5682 // Returning true indicates that Privacy Browser is manually handling the loading of the URL.
5683 // Custom headers cannot be added if false is returned and the WebView handles the loading of the URL.
5685 } else if (url.startsWith("mailto:")) { // Load the email address in an external email program.
5686 // Use `ACTION_SENDTO` instead of `ACTION_SEND` so that only email programs are launched.
5687 Intent emailIntent = new Intent(Intent.ACTION_SENDTO);
5689 // Parse the url and set it as the data for the intent.
5690 emailIntent.setData(Uri.parse(url));
5692 // Open the email program in a new task instead of as part of Privacy Browser.
5693 emailIntent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
5697 startActivity(emailIntent);
5698 } catch (ActivityNotFoundException exception) {
5699 // Display a snackbar.
5700 Snackbar.make(currentWebView, getString(R.string.error) + " " + exception, Snackbar.LENGTH_INDEFINITE).show();
5704 // Returning true indicates Privacy Browser is handling the URL by creating an intent.
5706 } else if (url.startsWith("tel:")) { // Load the phone number in the dialer.
5707 // Open the dialer and load the phone number, but wait for the user to place the call.
5708 Intent dialIntent = new Intent(Intent.ACTION_DIAL);
5710 // Add the phone number to the intent.
5711 dialIntent.setData(Uri.parse(url));
5713 // Open the dialer in a new task instead of as part of Privacy Browser.
5714 dialIntent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
5718 startActivity(dialIntent);
5719 } catch (ActivityNotFoundException exception) {
5720 // Display a snackbar.
5721 Snackbar.make(currentWebView, getString(R.string.error) + " " + exception, Snackbar.LENGTH_INDEFINITE).show();
5724 // Returning true indicates Privacy Browser is handling the URL by creating an intent.
5726 } else { // Load a system chooser to select an app that can handle the URL.
5727 // Open an app that can handle the URL.
5728 Intent genericIntent = new Intent(Intent.ACTION_VIEW);
5730 // Add the URL to the intent.
5731 genericIntent.setData(Uri.parse(url));
5733 // List all apps that can handle the URL instead of just opening the first one.
5734 genericIntent.addCategory(Intent.CATEGORY_BROWSABLE);
5736 // Open the app in a new task instead of as part of Privacy Browser.
5737 genericIntent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
5739 // Start the app or display a snackbar if no app is available to handle the URL.
5741 startActivity(genericIntent);
5742 } catch (ActivityNotFoundException exception) {
5743 Snackbar.make(nestedScrollWebView, getString(R.string.unrecognized_url) + " " + url, Snackbar.LENGTH_SHORT).show();
5746 // Returning true indicates Privacy Browser is handling the URL by creating an intent.
5751 // Check requests against the block lists. The deprecated `shouldInterceptRequest()` must be used until minimum API >= 21.
5753 public WebResourceResponse shouldInterceptRequest(WebView view, String url) {
5754 // Check to see if the resource request is for the main URL.
5755 if (url.equals(nestedScrollWebView.getCurrentUrl())) {
5756 // `return null` loads the resource request, which should never be blocked if it is the main URL.
5760 // Wait until the blocklists have been populated. When Privacy Browser is being resumed after having the process killed in the background it will try to load the URLs immediately.
5761 while (ultraPrivacy == null) {
5762 // The wait must be synchronized, which only lets one thread run on it at a time, or `java.lang.IllegalMonitorStateException` is thrown.
5763 synchronized (this) {
5765 // Check to see if the blocklists have been populated after 100 ms.
5767 } catch (InterruptedException exception) {
5773 // Sanitize the URL.
5774 url = sanitizeUrl(url);
5776 // Create an empty web resource response to be used if the resource request is blocked.
5777 WebResourceResponse emptyWebResourceResponse = new WebResourceResponse("text/plain", "utf8", new ByteArrayInputStream("".getBytes()));
5779 // Reset the whitelist results tracker.
5780 String[] whitelistResultStringArray = null;
5782 // Initialize the third party request tracker.
5783 boolean isThirdPartyRequest = false;
5785 // Get the current URL. `.getUrl()` throws an error because operations on the WebView cannot be made from this thread.
5786 String currentBaseDomain = nestedScrollWebView.getCurrentDomainName();
5788 // Store a copy of the current domain for use in later requests.
5789 String currentDomain = currentBaseDomain;
5791 // Nobody is happy when comparing null strings.
5792 if ((currentBaseDomain != null) && (url != null)) {
5793 // Convert the request URL to a URI.
5794 Uri requestUri = Uri.parse(url);
5796 // Get the request host name.
5797 String requestBaseDomain = requestUri.getHost();
5799 // Only check for third-party requests if the current base domain is not empty and the request domain is not null.
5800 if (!currentBaseDomain.isEmpty() && (requestBaseDomain != null)) {
5801 // Determine the current base domain.
5802 while (currentBaseDomain.indexOf(".", currentBaseDomain.indexOf(".") + 1) > 0) { // There is at least one subdomain.
5803 // Remove the first subdomain.
5804 currentBaseDomain = currentBaseDomain.substring(currentBaseDomain.indexOf(".") + 1);
5807 // Determine the request base domain.
5808 while (requestBaseDomain.indexOf(".", requestBaseDomain.indexOf(".") + 1) > 0) { // There is at least one subdomain.
5809 // Remove the first subdomain.
5810 requestBaseDomain = requestBaseDomain.substring(requestBaseDomain.indexOf(".") + 1);
5813 // Update the third party request tracker.
5814 isThirdPartyRequest = !currentBaseDomain.equals(requestBaseDomain);
5818 // Get the current WebView page position.
5819 int webViewPagePosition = webViewPagerAdapter.getPositionForId(nestedScrollWebView.getWebViewFragmentId());
5821 // Determine if the WebView is currently displayed.
5822 boolean webViewDisplayed = (webViewPagePosition == tabLayout.getSelectedTabPosition());
5824 // Block third-party requests if enabled.
5825 if (isThirdPartyRequest && nestedScrollWebView.isBlocklistEnabled(NestedScrollWebView.THIRD_PARTY_REQUESTS)) {
5826 // Add the result to the resource requests.
5827 nestedScrollWebView.addResourceRequest(new String[]{BlocklistHelper.REQUEST_THIRD_PARTY, url});
5829 // Increment the blocked requests counters.
5830 nestedScrollWebView.incrementRequestsCount(NestedScrollWebView.BLOCKED_REQUESTS);
5831 nestedScrollWebView.incrementRequestsCount(NestedScrollWebView.THIRD_PARTY_REQUESTS);
5833 // Update the titles of the blocklist menu items if the WebView is currently displayed.
5834 if (webViewDisplayed) {
5835 // Updating the UI must be run from the UI thread.
5836 activity.runOnUiThread(() -> {
5837 // Update the menu item titles.
5838 navigationRequestsMenuItem.setTitle(getString(R.string.requests) + " - " + nestedScrollWebView.getRequestsCount(NestedScrollWebView.BLOCKED_REQUESTS));
5840 // Update the options menu if it has been populated.
5841 if (optionsMenu != null) {
5842 optionsBlocklistsMenuItem.setTitle(getString(R.string.blocklists) + " - " + nestedScrollWebView.getRequestsCount(NestedScrollWebView.BLOCKED_REQUESTS));
5843 optionsBlockAllThirdPartyRequestsMenuItem.setTitle(nestedScrollWebView.getRequestsCount(NestedScrollWebView.THIRD_PARTY_REQUESTS) + " - " +
5844 getString(R.string.block_all_third_party_requests));
5849 // Return an empty web resource response.
5850 return emptyWebResourceResponse;
5853 // Check UltraList if it is enabled.
5854 if (nestedScrollWebView.isBlocklistEnabled(NestedScrollWebView.ULTRALIST)) {
5855 // Check the URL against UltraList.
5856 String[] ultraListResults = blocklistHelper.checkBlocklist(currentDomain, url, isThirdPartyRequest, ultraList);
5858 // Process the UltraList results.
5859 if (ultraListResults[0].equals(BlocklistHelper.REQUEST_BLOCKED)) { // The resource request matched UltraLists's blacklist.
5860 // Add the result to the resource requests.
5861 nestedScrollWebView.addResourceRequest(new String[] {ultraListResults[0], ultraListResults[1], ultraListResults[2], ultraListResults[3], ultraListResults[4], ultraListResults[5]});
5863 // Increment the blocked requests counters.
5864 nestedScrollWebView.incrementRequestsCount(NestedScrollWebView.BLOCKED_REQUESTS);
5865 nestedScrollWebView.incrementRequestsCount(NestedScrollWebView.ULTRALIST);
5867 // Update the titles of the blocklist menu items if the WebView is currently displayed.
5868 if (webViewDisplayed) {
5869 // Updating the UI must be run from the UI thread.
5870 activity.runOnUiThread(() -> {
5871 // Update the menu item titles.
5872 navigationRequestsMenuItem.setTitle(getString(R.string.requests) + " - " + nestedScrollWebView.getRequestsCount(NestedScrollWebView.BLOCKED_REQUESTS));
5874 // Update the options menu if it has been populated.
5875 if (optionsMenu != null) {
5876 optionsBlocklistsMenuItem.setTitle(getString(R.string.blocklists) + " - " + nestedScrollWebView.getRequestsCount(NestedScrollWebView.BLOCKED_REQUESTS));
5877 optionsUltraListMenuItem.setTitle(nestedScrollWebView.getRequestsCount(NestedScrollWebView.ULTRALIST) + " - " + getString(R.string.ultralist));
5882 // The resource request was blocked. Return an empty web resource response.
5883 return emptyWebResourceResponse;
5884 } else if (ultraListResults[0].equals(BlocklistHelper.REQUEST_ALLOWED)) { // The resource request matched UltraList's whitelist.
5885 // Add a whitelist entry to the resource requests array.
5886 nestedScrollWebView.addResourceRequest(new String[] {ultraListResults[0], ultraListResults[1], ultraListResults[2], ultraListResults[3], ultraListResults[4], ultraListResults[5]});
5888 // The resource request has been allowed by UltraPrivacy. `return null` loads the requested resource.
5893 // Check UltraPrivacy if it is enabled.
5894 if (nestedScrollWebView.isBlocklistEnabled(NestedScrollWebView.ULTRAPRIVACY)) {
5895 // Check the URL against UltraPrivacy.
5896 String[] ultraPrivacyResults = blocklistHelper.checkBlocklist(currentDomain, url, isThirdPartyRequest, ultraPrivacy);
5898 // Process the UltraPrivacy results.
5899 if (ultraPrivacyResults[0].equals(BlocklistHelper.REQUEST_BLOCKED)) { // The resource request matched UltraPrivacy's blacklist.
5900 // Add the result to the resource requests.
5901 nestedScrollWebView.addResourceRequest(new String[] {ultraPrivacyResults[0], ultraPrivacyResults[1], ultraPrivacyResults[2], ultraPrivacyResults[3], ultraPrivacyResults[4],
5902 ultraPrivacyResults[5]});
5904 // Increment the blocked requests counters.
5905 nestedScrollWebView.incrementRequestsCount(NestedScrollWebView.BLOCKED_REQUESTS);
5906 nestedScrollWebView.incrementRequestsCount(NestedScrollWebView.ULTRAPRIVACY);
5908 // Update the titles of the blocklist menu items if the WebView is currently displayed.
5909 if (webViewDisplayed) {
5910 // Updating the UI must be run from the UI thread.
5911 activity.runOnUiThread(() -> {
5912 // Update the menu item titles.
5913 navigationRequestsMenuItem.setTitle(getString(R.string.requests) + " - " + nestedScrollWebView.getRequestsCount(NestedScrollWebView.BLOCKED_REQUESTS));
5915 // Update the options menu if it has been populated.
5916 if (optionsMenu != null) {
5917 optionsBlocklistsMenuItem.setTitle(getString(R.string.blocklists) + " - " + nestedScrollWebView.getRequestsCount(NestedScrollWebView.BLOCKED_REQUESTS));
5918 optionsUltraPrivacyMenuItem.setTitle(nestedScrollWebView.getRequestsCount(NestedScrollWebView.ULTRAPRIVACY) + " - " + getString(R.string.ultraprivacy));
5923 // The resource request was blocked. Return an empty web resource response.
5924 return emptyWebResourceResponse;
5925 } else if (ultraPrivacyResults[0].equals(BlocklistHelper.REQUEST_ALLOWED)) { // The resource request matched UltraPrivacy's whitelist.
5926 // Add a whitelist entry to the resource requests array.
5927 nestedScrollWebView.addResourceRequest(new String[] {ultraPrivacyResults[0], ultraPrivacyResults[1], ultraPrivacyResults[2], ultraPrivacyResults[3], ultraPrivacyResults[4],
5928 ultraPrivacyResults[5]});
5930 // The resource request has been allowed by UltraPrivacy. `return null` loads the requested resource.
5935 // Check EasyList if it is enabled.
5936 if (nestedScrollWebView.isBlocklistEnabled(NestedScrollWebView.EASYLIST)) {
5937 // Check the URL against EasyList.
5938 String[] easyListResults = blocklistHelper.checkBlocklist(currentDomain, url, isThirdPartyRequest, easyList);
5940 // Process the EasyList results.
5941 if (easyListResults[0].equals(BlocklistHelper.REQUEST_BLOCKED)) { // The resource request matched EasyList's blacklist.
5942 // Add the result to the resource requests.
5943 nestedScrollWebView.addResourceRequest(new String[] {easyListResults[0], easyListResults[1], easyListResults[2], easyListResults[3], easyListResults[4], easyListResults[5]});
5945 // Increment the blocked requests counters.
5946 nestedScrollWebView.incrementRequestsCount(NestedScrollWebView.BLOCKED_REQUESTS);
5947 nestedScrollWebView.incrementRequestsCount(NestedScrollWebView.EASYLIST);
5949 // Update the titles of the blocklist menu items if the WebView is currently displayed.
5950 if (webViewDisplayed) {
5951 // Updating the UI must be run from the UI thread.
5952 activity.runOnUiThread(() -> {
5953 // Update the menu item titles.
5954 navigationRequestsMenuItem.setTitle(getString(R.string.requests) + " - " + nestedScrollWebView.getRequestsCount(NestedScrollWebView.BLOCKED_REQUESTS));
5956 // Update the options menu if it has been populated.
5957 if (optionsMenu != null) {
5958 optionsBlocklistsMenuItem.setTitle(getString(R.string.blocklists) + " - " + nestedScrollWebView.getRequestsCount(NestedScrollWebView.BLOCKED_REQUESTS));
5959 optionsEasyListMenuItem.setTitle(nestedScrollWebView.getRequestsCount(NestedScrollWebView.EASYLIST) + " - " + getString(R.string.easylist));
5964 // The resource request was blocked. Return an empty web resource response.
5965 return emptyWebResourceResponse;
5966 } else if (easyListResults[0].equals(BlocklistHelper.REQUEST_ALLOWED)) { // The resource request matched EasyList's whitelist.
5967 // Update the whitelist result string array tracker.
5968 whitelistResultStringArray = new String[] {easyListResults[0], easyListResults[1], easyListResults[2], easyListResults[3], easyListResults[4], easyListResults[5]};
5972 // Check EasyPrivacy if it is enabled.
5973 if (nestedScrollWebView.isBlocklistEnabled(NestedScrollWebView.EASYPRIVACY)) {
5974 // Check the URL against EasyPrivacy.
5975 String[] easyPrivacyResults = blocklistHelper.checkBlocklist(currentDomain, url, isThirdPartyRequest, easyPrivacy);
5977 // Process the EasyPrivacy results.
5978 if (easyPrivacyResults[0].equals(BlocklistHelper.REQUEST_BLOCKED)) { // The resource request matched EasyPrivacy's blacklist.
5979 // Add the result to the resource requests.
5980 nestedScrollWebView.addResourceRequest(new String[] {easyPrivacyResults[0], easyPrivacyResults[1], easyPrivacyResults[2], easyPrivacyResults[3], easyPrivacyResults[4],
5981 easyPrivacyResults[5]});
5983 // Increment the blocked requests counters.
5984 nestedScrollWebView.incrementRequestsCount(NestedScrollWebView.BLOCKED_REQUESTS);
5985 nestedScrollWebView.incrementRequestsCount(NestedScrollWebView.EASYPRIVACY);
5987 // Update the titles of the blocklist menu items if the WebView is currently displayed.
5988 if (webViewDisplayed) {
5989 // Updating the UI must be run from the UI thread.
5990 activity.runOnUiThread(() -> {
5991 // Update the menu item titles.
5992 navigationRequestsMenuItem.setTitle(getString(R.string.requests) + " - " + nestedScrollWebView.getRequestsCount(NestedScrollWebView.BLOCKED_REQUESTS));
5994 // Update the options menu if it has been populated.
5995 if (optionsMenu != null) {
5996 optionsBlocklistsMenuItem.setTitle(getString(R.string.blocklists) + " - " + nestedScrollWebView.getRequestsCount(NestedScrollWebView.BLOCKED_REQUESTS));
5997 optionsEasyPrivacyMenuItem.setTitle(nestedScrollWebView.getRequestsCount(NestedScrollWebView.EASYPRIVACY) + " - " + getString(R.string.easyprivacy));
6002 // The resource request was blocked. Return an empty web resource response.
6003 return emptyWebResourceResponse;
6004 } else if (easyPrivacyResults[0].equals(BlocklistHelper.REQUEST_ALLOWED)) { // The resource request matched EasyPrivacy's whitelist.
6005 // Update the whitelist result string array tracker.
6006 whitelistResultStringArray = new String[] {easyPrivacyResults[0], easyPrivacyResults[1], easyPrivacyResults[2], easyPrivacyResults[3], easyPrivacyResults[4], easyPrivacyResults[5]};
6010 // Check Fanboy’s Annoyance List if it is enabled.
6011 if (nestedScrollWebView.isBlocklistEnabled(NestedScrollWebView.FANBOYS_ANNOYANCE_LIST)) {
6012 // Check the URL against Fanboy's Annoyance List.
6013 String[] fanboysAnnoyanceListResults = blocklistHelper.checkBlocklist(currentDomain, url, isThirdPartyRequest, fanboysAnnoyanceList);
6015 // Process the Fanboy's Annoyance List results.
6016 if (fanboysAnnoyanceListResults[0].equals(BlocklistHelper.REQUEST_BLOCKED)) { // The resource request matched Fanboy's Annoyance List's blacklist.
6017 // Add the result to the resource requests.
6018 nestedScrollWebView.addResourceRequest(new String[] {fanboysAnnoyanceListResults[0], fanboysAnnoyanceListResults[1], fanboysAnnoyanceListResults[2], fanboysAnnoyanceListResults[3],
6019 fanboysAnnoyanceListResults[4], fanboysAnnoyanceListResults[5]});
6021 // Increment the blocked requests counters.
6022 nestedScrollWebView.incrementRequestsCount(NestedScrollWebView.BLOCKED_REQUESTS);
6023 nestedScrollWebView.incrementRequestsCount(NestedScrollWebView.FANBOYS_ANNOYANCE_LIST);
6025 // Update the titles of the blocklist menu items if the WebView is currently displayed.
6026 if (webViewDisplayed) {
6027 // Updating the UI must be run from the UI thread.
6028 activity.runOnUiThread(() -> {
6029 // Update the menu item titles.
6030 navigationRequestsMenuItem.setTitle(getString(R.string.requests) + " - " + nestedScrollWebView.getRequestsCount(NestedScrollWebView.BLOCKED_REQUESTS));
6032 // Update the options menu if it has been populated.
6033 if (optionsMenu != null) {
6034 optionsBlocklistsMenuItem.setTitle(getString(R.string.blocklists) + " - " + nestedScrollWebView.getRequestsCount(NestedScrollWebView.BLOCKED_REQUESTS));
6035 optionsFanboysAnnoyanceListMenuItem.setTitle(nestedScrollWebView.getRequestsCount(NestedScrollWebView.FANBOYS_ANNOYANCE_LIST) + " - " +
6036 getString(R.string.fanboys_annoyance_list));
6041 // The resource request was blocked. Return an empty web resource response.
6042 return emptyWebResourceResponse;
6043 } else if (fanboysAnnoyanceListResults[0].equals(BlocklistHelper.REQUEST_ALLOWED)){ // The resource request matched Fanboy's Annoyance List's whitelist.
6044 // Update the whitelist result string array tracker.
6045 whitelistResultStringArray = new String[] {fanboysAnnoyanceListResults[0], fanboysAnnoyanceListResults[1], fanboysAnnoyanceListResults[2], fanboysAnnoyanceListResults[3],
6046 fanboysAnnoyanceListResults[4], fanboysAnnoyanceListResults[5]};
6048 } else if (nestedScrollWebView.isBlocklistEnabled(NestedScrollWebView.FANBOYS_SOCIAL_BLOCKING_LIST)) { // Only check Fanboy’s Social Blocking List if Fanboy’s Annoyance List is disabled.
6049 // Check the URL against Fanboy's Annoyance List.
6050 String[] fanboysSocialListResults = blocklistHelper.checkBlocklist(currentDomain, url, isThirdPartyRequest, fanboysSocialList);
6052 // Process the Fanboy's Social Blocking List results.
6053 if (fanboysSocialListResults[0].equals(BlocklistHelper.REQUEST_BLOCKED)) { // The resource request matched Fanboy's Social Blocking List's blacklist.
6054 // Add the result to the resource requests.
6055 nestedScrollWebView.addResourceRequest(new String[] {fanboysSocialListResults[0], fanboysSocialListResults[1], fanboysSocialListResults[2], fanboysSocialListResults[3],
6056 fanboysSocialListResults[4], fanboysSocialListResults[5]});
6058 // Increment the blocked requests counters.
6059 nestedScrollWebView.incrementRequestsCount(NestedScrollWebView.BLOCKED_REQUESTS);
6060 nestedScrollWebView.incrementRequestsCount(NestedScrollWebView.FANBOYS_SOCIAL_BLOCKING_LIST);
6062 // Update the titles of the blocklist menu items if the WebView is currently displayed.
6063 if (webViewDisplayed) {
6064 // Updating the UI must be run from the UI thread.
6065 activity.runOnUiThread(() -> {
6066 // Update the menu item titles.
6067 navigationRequestsMenuItem.setTitle(getString(R.string.requests) + " - " + nestedScrollWebView.getRequestsCount(NestedScrollWebView.BLOCKED_REQUESTS));
6069 // Update the options menu if it has been populated.
6070 if (optionsMenu != null) {
6071 optionsBlocklistsMenuItem.setTitle(getString(R.string.blocklists) + " - " + nestedScrollWebView.getRequestsCount(NestedScrollWebView.BLOCKED_REQUESTS));
6072 optionsFanboysSocialBlockingListMenuItem.setTitle(nestedScrollWebView.getRequestsCount(NestedScrollWebView.FANBOYS_SOCIAL_BLOCKING_LIST) + " - " +
6073 getString(R.string.fanboys_social_blocking_list));
6078 // The resource request was blocked. Return an empty web resource response.
6079 return emptyWebResourceResponse;
6080 } else if (fanboysSocialListResults[0].equals(BlocklistHelper.REQUEST_ALLOWED)) { // The resource request matched Fanboy's Social Blocking List's whitelist.
6081 // Update the whitelist result string array tracker.
6082 whitelistResultStringArray = new String[] {fanboysSocialListResults[0], fanboysSocialListResults[1], fanboysSocialListResults[2], fanboysSocialListResults[3],
6083 fanboysSocialListResults[4], fanboysSocialListResults[5]};
6087 // Add the request to the log because it hasn't been processed by any of the previous checks.
6088 if (whitelistResultStringArray != null) { // The request was processed by a whitelist.
6089 nestedScrollWebView.addResourceRequest(whitelistResultStringArray);
6090 } else { // The request didn't match any blocklist entry. Log it as a default request.
6091 nestedScrollWebView.addResourceRequest(new String[]{BlocklistHelper.REQUEST_DEFAULT, url});
6094 // The resource request has not been blocked. `return null` loads the requested resource.
6098 // Handle HTTP authentication requests.
6100 public void onReceivedHttpAuthRequest(WebView view, HttpAuthHandler handler, String host, String realm) {
6101 // Store the handler.
6102 nestedScrollWebView.setHttpAuthHandler(handler);
6104 // Instantiate an HTTP authentication dialog.
6105 DialogFragment httpAuthenticationDialogFragment = HttpAuthenticationDialog.displayDialog(host, realm, nestedScrollWebView.getWebViewFragmentId());
6107 // Show the HTTP authentication dialog.
6108 httpAuthenticationDialogFragment.show(getSupportFragmentManager(), getString(R.string.http_authentication));
6112 public void onPageStarted(WebView view, String url, Bitmap favicon) {
6113 // Get the preferences.
6114 boolean scrollAppBar = sharedPreferences.getBoolean("scroll_app_bar", true);
6116 // Set the top padding of the swipe refresh layout according to the app bar scrolling preference. This can't be done in `appAppSettings()` because the app bar is not yet populated there.
6117 if (scrollAppBar || (inFullScreenBrowsingMode && hideAppBar)) {
6118 // No padding is needed because it will automatically be placed below the app bar layout due to the scrolling layout behavior.
6119 swipeRefreshLayout.setPadding(0, 0, 0, 0);
6121 // The swipe to refresh circle doesn't always hide itself completely unless it is moved up 10 pixels.
6122 swipeRefreshLayout.setProgressViewOffset(false, defaultProgressViewStartOffset - 10, defaultProgressViewEndOffset);
6124 // Get the app bar layout height. This can't be done in `applyAppSettings()` because the app bar is not yet populated there.
6125 appBarHeight = appBarLayout.getHeight();
6127 // The swipe refresh layout must be manually moved below the app bar layout.
6128 swipeRefreshLayout.setPadding(0, appBarHeight, 0, 0);
6130 // The swipe to refresh circle doesn't always hide itself completely unless it is moved up 10 pixels.
6131 swipeRefreshLayout.setProgressViewOffset(false, defaultProgressViewStartOffset - 10 + appBarHeight, defaultProgressViewEndOffset + appBarHeight);
6134 // Reset the list of resource requests.
6135 nestedScrollWebView.clearResourceRequests();
6137 // Reset the requests counters.
6138 nestedScrollWebView.resetRequestsCounters();
6140 // Get the current page position.
6141 int currentPagePosition = webViewPagerAdapter.getPositionForId(nestedScrollWebView.getWebViewFragmentId());
6143 // Update the URL text bar if the page is currently selected and the URL edit text is not currently being edited.
6144 if ((tabLayout.getSelectedTabPosition() == currentPagePosition) && !urlEditText.hasFocus()) {
6145 // Display the formatted URL text.
6146 urlEditText.setText(url);
6148 // Apply text highlighting to `urlTextBox`.
6151 // Hide the keyboard.
6152 inputMethodManager.hideSoftInputFromWindow(nestedScrollWebView.getWindowToken(), 0);
6155 // Reset the list of host IP addresses.
6156 nestedScrollWebView.clearCurrentIpAddresses();
6158 // Get a URI for the current URL.
6159 Uri currentUri = Uri.parse(url);
6161 // Get the IP addresses for the host.
6162 new GetHostIpAddresses(activity, getSupportFragmentManager(), nestedScrollWebView).execute(currentUri.getHost());
6164 // Replace Refresh with Stop if the options menu has been created. (The first WebView typically begins loading before the menu items are instantiated.)
6165 if (optionsMenu != null) {
6167 optionsRefreshMenuItem.setTitle(R.string.stop);
6169 // Get the app bar and theme preferences.
6170 boolean displayAdditionalAppBarIcons = sharedPreferences.getBoolean(getString(R.string.display_additional_app_bar_icons_key), false);
6172 // If the icon is displayed in the AppBar, set it according to the theme.
6173 if (displayAdditionalAppBarIcons) {
6174 // Get the current theme status.
6175 int currentThemeStatus = getResources().getConfiguration().uiMode & Configuration.UI_MODE_NIGHT_MASK;
6177 // Set the stop icon according to the theme.
6178 if (currentThemeStatus == Configuration.UI_MODE_NIGHT_NO) {
6179 optionsRefreshMenuItem.setIcon(R.drawable.close_blue_day);
6181 optionsRefreshMenuItem.setIcon(R.drawable.close_blue_night);
6188 public void onPageFinished(WebView view, String url) {
6189 // Flush any cookies to persistent storage. The cookie manager has become very lazy about flushing cookies in recent versions.
6190 if (nestedScrollWebView.getAcceptFirstPartyCookies() && Build.VERSION.SDK_INT >= 21) {
6191 CookieManager.getInstance().flush();
6194 // Update the Refresh menu item if the options menu has been created.
6195 if (optionsMenu != null) {
6196 // Reset the Refresh title.
6197 optionsRefreshMenuItem.setTitle(R.string.refresh);
6199 // Get the app bar and theme preferences.
6200 boolean displayAdditionalAppBarIcons = sharedPreferences.getBoolean(getString(R.string.display_additional_app_bar_icons_key), false);
6202 // If the icon is displayed in the app bar, reset it according to the theme.
6203 if (displayAdditionalAppBarIcons) {
6204 // Get the current theme status.
6205 int currentThemeStatus = getResources().getConfiguration().uiMode & Configuration.UI_MODE_NIGHT_MASK;
6207 // Set the icon according to the theme.
6208 if (currentThemeStatus == Configuration.UI_MODE_NIGHT_NO) {
6209 optionsRefreshMenuItem.setIcon(R.drawable.refresh_enabled_day);
6211 optionsRefreshMenuItem.setIcon(R.drawable.refresh_enabled_night);
6216 // Clear the cache, history, and logcat if Incognito Mode is enabled.
6217 if (incognitoModeEnabled) {
6218 // Clear the cache. `true` includes disk files.
6219 nestedScrollWebView.clearCache(true);
6221 // Clear the back/forward history.
6222 nestedScrollWebView.clearHistory();
6224 // Manually delete cache folders.
6226 // Get the application's private data directory, which will be something like `/data/user/0/com.stoutner.privacybrowser.standard`,
6227 // which links to `/data/data/com.stoutner.privacybrowser.standard`.
6228 String privateDataDirectoryString = getApplicationInfo().dataDir;
6230 // Delete the main cache directory.
6231 Runtime.getRuntime().exec("rm -rf " + privateDataDirectoryString + "/cache");
6233 // Delete the secondary `Service Worker` cache directory.
6234 // A `String[]` must be used because the directory contains a space and `Runtime.exec` will not escape the string correctly otherwise.
6235 Runtime.getRuntime().exec(new String[]{"rm", "-rf", privateDataDirectoryString + "/app_webview/Service Worker/"});
6236 } catch (IOException exception) {
6237 // Do nothing if an error is thrown.
6240 // Clear the logcat.
6242 // Clear the logcat. `-c` clears the logcat. `-b all` clears all the buffers (instead of just crash, main, and system).
6243 Runtime.getRuntime().exec("logcat -b all -c");
6244 } catch (IOException exception) {
6249 // Get the current page position.
6250 int currentPagePosition = webViewPagerAdapter.getPositionForId(nestedScrollWebView.getWebViewFragmentId());
6252 // Get the current URL from the nested scroll WebView. This is more accurate than using the URL passed into the method, which is sometimes not the final one.
6253 String currentUrl = nestedScrollWebView.getUrl();
6255 // Get the current tab.
6256 TabLayout.Tab tab = tabLayout.getTabAt(currentPagePosition);
6258 // Update the URL text bar if the page is currently selected and the user is not currently typing in the URL edit text.
6259 // Crash records show that, in some crazy way, it is possible for the current URL to be blank at this point.
6260 // Probably some sort of race condition when Privacy Browser is being resumed.
6261 if ((tabLayout.getSelectedTabPosition() == currentPagePosition) && !urlEditText.hasFocus() && (currentUrl != null)) {
6262 // Check to see if the URL is `about:blank`.
6263 if (currentUrl.equals("about:blank")) { // The WebView is blank.
6264 // Display the hint in the URL edit text.
6265 urlEditText.setText("");
6267 // Request focus for the URL text box.
6268 urlEditText.requestFocus();
6270 // Display the keyboard.
6271 inputMethodManager.showSoftInput(urlEditText, 0);
6273 // Apply the domain settings. This clears any settings from the previous domain.
6274 applyDomainSettings(nestedScrollWebView, "", true, false, false);
6276 // Only populate the title text view if the tab has been fully created.
6278 // Get the custom view from the tab.
6279 View tabView = tab.getCustomView();
6281 // Remove the incorrect warning below that the current tab view might be null.
6282 assert tabView != null;
6284 // Get the title text view from the tab.
6285 TextView tabTitleTextView = tabView.findViewById(R.id.title_textview);
6287 // Set the title as the tab text.
6288 tabTitleTextView.setText(R.string.new_tab);
6290 } else { // The WebView has loaded a webpage.
6291 // Update the URL edit text if it is not currently being edited.
6292 if (!urlEditText.hasFocus()) {
6293 // Sanitize the current URL. This removes unwanted URL elements that were added by redirects, so that they won't be included if the URL is shared.
6294 String sanitizedUrl = sanitizeUrl(currentUrl);
6296 // Display the final URL. Getting the URL from the WebView instead of using the one provided by `onPageFinished()` makes websites like YouTube function correctly.
6297 urlEditText.setText(sanitizedUrl);
6299 // Apply text highlighting to the URL.
6303 // Only populate the title text view if the tab has been fully created.
6305 // Get the custom view from the tab.
6306 View tabView = tab.getCustomView();
6308 // Remove the incorrect warning below that the current tab view might be null.
6309 assert tabView != null;
6311 // Get the title text view from the tab.
6312 TextView tabTitleTextView = tabView.findViewById(R.id.title_textview);
6314 // Set the title as the tab text. Sometimes `onReceivedTitle()` is not called, especially when navigating history.
6315 tabTitleTextView.setText(nestedScrollWebView.getTitle());
6321 // Handle SSL Certificate errors.
6323 public void onReceivedSslError(WebView view, SslErrorHandler handler, SslError error) {
6324 // Get the current website SSL certificate.
6325 SslCertificate currentWebsiteSslCertificate = error.getCertificate();
6327 // Extract the individual pieces of information from the current website SSL certificate.
6328 String currentWebsiteIssuedToCName = currentWebsiteSslCertificate.getIssuedTo().getCName();
6329 String currentWebsiteIssuedToOName = currentWebsiteSslCertificate.getIssuedTo().getOName();
6330 String currentWebsiteIssuedToUName = currentWebsiteSslCertificate.getIssuedTo().getUName();
6331 String currentWebsiteIssuedByCName = currentWebsiteSslCertificate.getIssuedBy().getCName();
6332 String currentWebsiteIssuedByOName = currentWebsiteSslCertificate.getIssuedBy().getOName();
6333 String currentWebsiteIssuedByUName = currentWebsiteSslCertificate.getIssuedBy().getUName();
6334 Date currentWebsiteSslStartDate = currentWebsiteSslCertificate.getValidNotBeforeDate();
6335 Date currentWebsiteSslEndDate = currentWebsiteSslCertificate.getValidNotAfterDate();
6337 // Proceed to the website if the current SSL website certificate matches the pinned domain certificate.
6338 if (nestedScrollWebView.hasPinnedSslCertificate()) {
6339 // Get the pinned SSL certificate.
6340 ArrayList<Object> pinnedSslCertificateArrayList = nestedScrollWebView.getPinnedSslCertificate();
6342 // Extract the arrays from the array list.
6343 String[] pinnedSslCertificateStringArray = (String[]) pinnedSslCertificateArrayList.get(0);
6344 Date[] pinnedSslCertificateDateArray = (Date[]) pinnedSslCertificateArrayList.get(1);
6346 // Check if the current SSL certificate matches the pinned certificate.
6347 if (currentWebsiteIssuedToCName.equals(pinnedSslCertificateStringArray[0]) && currentWebsiteIssuedToOName.equals(pinnedSslCertificateStringArray[1]) &&
6348 currentWebsiteIssuedToUName.equals(pinnedSslCertificateStringArray[2]) && currentWebsiteIssuedByCName.equals(pinnedSslCertificateStringArray[3]) &&
6349 currentWebsiteIssuedByOName.equals(pinnedSslCertificateStringArray[4]) && currentWebsiteIssuedByUName.equals(pinnedSslCertificateStringArray[5]) &&
6350 currentWebsiteSslStartDate.equals(pinnedSslCertificateDateArray[0]) && currentWebsiteSslEndDate.equals(pinnedSslCertificateDateArray[1])) {
6352 // An SSL certificate is pinned and matches the current domain certificate. Proceed to the website without displaying an error.
6355 } else { // Either there isn't a pinned SSL certificate or it doesn't match the current website certificate.
6356 // Store the SSL error handler.
6357 nestedScrollWebView.setSslErrorHandler(handler);
6359 // Prevent the dialog from displaying if the app window is not visible.
6360 // The SSL error handler continues to function even when the WebView is paused. Attempting to display a dialog in that state leads to a crash.
6361 while (!activity.getWindow().isActive()) {
6363 // The window is not active. Wait 1 second.
6365 } catch (InterruptedException e) {
6370 // Instantiate an SSL certificate error alert dialog.
6371 DialogFragment sslCertificateErrorDialogFragment = SslCertificateErrorDialog.displayDialog(error, nestedScrollWebView.getWebViewFragmentId());
6373 // Show the SSL certificate error dialog.
6374 sslCertificateErrorDialogFragment.show(getSupportFragmentManager(), getString(R.string.ssl_certificate_error));
6379 // Check to see if the state is being restored.
6380 if (restoringState) { // The state is being restored.
6381 // Resume the nested scroll WebView JavaScript timers.
6382 nestedScrollWebView.resumeTimers();
6383 } else if (pageNumber == 0) { // The first page is being loaded.
6384 // Set this nested scroll WebView as the current WebView.
6385 currentWebView = nestedScrollWebView;
6387 // Initialize the URL to load string.
6388 String urlToLoadString;
6390 // Get the intent that started the app.
6391 Intent launchingIntent = getIntent();
6393 // Reset the intent. This prevents a duplicate tab from being created on restart.
6394 setIntent(new Intent());
6396 // Get the information from the intent.
6397 String launchingIntentAction = launchingIntent.getAction();
6398 Uri launchingIntentUriData = launchingIntent.getData();
6399 String launchingIntentStringExtra = launchingIntent.getStringExtra(Intent.EXTRA_TEXT);
6401 // Parse the launching intent URL.
6402 if ((launchingIntentAction != null) && launchingIntentAction.equals(Intent.ACTION_WEB_SEARCH)) { // The intent contains a search string.
6403 // Create an encoded URL string.
6404 String encodedUrlString;
6406 // Sanitize the search input and convert it to a search.
6408 encodedUrlString = URLEncoder.encode(launchingIntent.getStringExtra(SearchManager.QUERY), "UTF-8");
6409 } catch (UnsupportedEncodingException exception) {
6410 encodedUrlString = "";
6413 // Store the web search as the URL to load.
6414 urlToLoadString = searchURL + encodedUrlString;
6415 } else if (launchingIntentUriData != null) { // The launching intent contains a URL formatted as a URI.
6416 // Store the URI as a URL.
6417 urlToLoadString = launchingIntentUriData.toString();
6418 } else if (launchingIntentStringExtra != null) { // The launching intent contains text that might be a URL.
6420 urlToLoadString = launchingIntentStringExtra;
6421 } else if (!url.equals("")) { // The activity has been restarted.
6422 // Load the saved URL.
6423 urlToLoadString = url;
6424 } else { // The is no URL in the intent.
6425 // Store the homepage to be loaded.
6426 urlToLoadString = sharedPreferences.getString("homepage", getString(R.string.homepage_default_value));
6429 // Load the website if not waiting for the proxy.
6430 if (waitingForProxy) { // Store the URL to be loaded in the Nested Scroll WebView.
6431 nestedScrollWebView.setWaitingForProxyUrlString(urlToLoadString);
6432 } else { // Load the URL.
6433 loadUrl(nestedScrollWebView, urlToLoadString);
6436 // Reset the intent. This prevents a duplicate tab from being created on a subsequent restart if loading an link from a new intent on restart.
6437 // For example, this prevents a duplicate tab if a link is loaded from the Guide after changing the theme in the guide and then changing the theme again in the main activity.
6438 setIntent(new Intent());
6439 } else { // This is not the first tab.
6441 loadUrl(nestedScrollWebView, url);
6443 // Set the focus and display the keyboard if the URL is blank.
6444 if (url.equals("")) {
6445 // Request focus for the URL text box.
6446 urlEditText.requestFocus();
6448 // Create a display keyboard handler.
6449 Handler displayKeyboardHandler = new Handler();
6451 // Create a display keyboard runnable.
6452 Runnable displayKeyboardRunnable = () -> {
6453 // Display the keyboard.
6454 inputMethodManager.showSoftInput(urlEditText, 0);
6457 // Display the keyboard after 100 milliseconds, which leaves enough time for the tab to transition.
6458 displayKeyboardHandler.postDelayed(displayKeyboardRunnable, 100);