2 * Copyright © 2015-2019 Soren Stoutner <soren@stoutner.com>.
4 * Download cookie code contributed 2017 Hendrik Knackstedt. Copyright assigned to Soren Stoutner <soren@stoutner.com>.
6 * This file is part of Privacy Browser <https://www.stoutner.com/privacy-browser>.
8 * Privacy Browser is free software: you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation, either version 3 of the License, or
11 * (at your option) any later version.
13 * Privacy Browser is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
18 * You should have received a copy of the GNU General Public License
19 * along with Privacy Browser. If not, see <http://www.gnu.org/licenses/>.
22 package com.stoutner.privacybrowser.activities;
24 import android.Manifest;
25 import android.annotation.SuppressLint;
26 import android.app.Activity;
27 import android.app.Dialog;
28 import android.app.DownloadManager;
29 import android.app.SearchManager;
30 import android.content.ActivityNotFoundException;
31 import android.content.BroadcastReceiver;
32 import android.content.ClipData;
33 import android.content.ClipboardManager;
34 import android.content.Context;
35 import android.content.Intent;
36 import android.content.IntentFilter;
37 import android.content.SharedPreferences;
38 import android.content.pm.PackageManager;
39 import android.content.res.Configuration;
40 import android.database.Cursor;
41 import android.graphics.Bitmap;
42 import android.graphics.BitmapFactory;
43 import android.graphics.Typeface;
44 import android.graphics.drawable.BitmapDrawable;
45 import android.graphics.drawable.Drawable;
46 import android.net.Uri;
47 import android.net.http.SslCertificate;
48 import android.net.http.SslError;
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.text.Editable;
58 import android.text.Spanned;
59 import android.text.TextWatcher;
60 import android.text.style.ForegroundColorSpan;
61 import android.util.Patterns;
62 import android.view.ContextMenu;
63 import android.view.GestureDetector;
64 import android.view.KeyEvent;
65 import android.view.Menu;
66 import android.view.MenuItem;
67 import android.view.MotionEvent;
68 import android.view.View;
69 import android.view.ViewGroup;
70 import android.view.WindowManager;
71 import android.view.inputmethod.InputMethodManager;
72 import android.webkit.CookieManager;
73 import android.webkit.HttpAuthHandler;
74 import android.webkit.SslErrorHandler;
75 import android.webkit.ValueCallback;
76 import android.webkit.WebBackForwardList;
77 import android.webkit.WebChromeClient;
78 import android.webkit.WebResourceResponse;
79 import android.webkit.WebSettings;
80 import android.webkit.WebStorage;
81 import android.webkit.WebView;
82 import android.webkit.WebViewClient;
83 import android.webkit.WebViewDatabase;
84 import android.widget.ArrayAdapter;
85 import android.widget.CursorAdapter;
86 import android.widget.EditText;
87 import android.widget.FrameLayout;
88 import android.widget.ImageView;
89 import android.widget.LinearLayout;
90 import android.widget.ListView;
91 import android.widget.ProgressBar;
92 import android.widget.RadioButton;
93 import android.widget.RelativeLayout;
94 import android.widget.TextView;
96 import androidx.annotation.NonNull;
97 import androidx.appcompat.app.ActionBar;
98 import androidx.appcompat.app.ActionBarDrawerToggle;
99 import androidx.appcompat.app.AppCompatActivity;
100 import androidx.appcompat.widget.Toolbar;
101 import androidx.coordinatorlayout.widget.CoordinatorLayout;
102 import androidx.core.app.ActivityCompat;
103 import androidx.core.content.ContextCompat;
104 import androidx.core.view.GravityCompat;
105 import androidx.drawerlayout.widget.DrawerLayout;
106 import androidx.fragment.app.DialogFragment;
107 import androidx.fragment.app.FragmentManager;
108 import androidx.swiperefreshlayout.widget.SwipeRefreshLayout;
109 import androidx.viewpager.widget.ViewPager;
111 import com.google.android.material.appbar.AppBarLayout;
112 import com.google.android.material.floatingactionbutton.FloatingActionButton;
113 import com.google.android.material.navigation.NavigationView;
114 import com.google.android.material.snackbar.Snackbar;
115 import com.google.android.material.tabs.TabLayout;
117 import com.stoutner.privacybrowser.BuildConfig;
118 import com.stoutner.privacybrowser.R;
119 import com.stoutner.privacybrowser.adapters.WebViewPagerAdapter;
120 import com.stoutner.privacybrowser.asynctasks.GetHostIpAddresses;
121 import com.stoutner.privacybrowser.asynctasks.PopulateBlocklists;
122 import com.stoutner.privacybrowser.asynctasks.SaveWebpageImage;
123 import com.stoutner.privacybrowser.dialogs.AdConsentDialog;
124 import com.stoutner.privacybrowser.dialogs.CreateBookmarkDialog;
125 import com.stoutner.privacybrowser.dialogs.CreateBookmarkFolderDialog;
126 import com.stoutner.privacybrowser.dialogs.CreateHomeScreenShortcutDialog;
127 import com.stoutner.privacybrowser.dialogs.DownloadFileDialog;
128 import com.stoutner.privacybrowser.dialogs.DownloadImageDialog;
129 import com.stoutner.privacybrowser.dialogs.DownloadLocationPermissionDialog;
130 import com.stoutner.privacybrowser.dialogs.EditBookmarkDialog;
131 import com.stoutner.privacybrowser.dialogs.EditBookmarkFolderDialog;
132 import com.stoutner.privacybrowser.dialogs.FontSizeDialog;
133 import com.stoutner.privacybrowser.dialogs.HttpAuthenticationDialog;
134 import com.stoutner.privacybrowser.dialogs.PinnedMismatchDialog;
135 import com.stoutner.privacybrowser.dialogs.SaveWebpageImageDialog;
136 import com.stoutner.privacybrowser.dialogs.SslCertificateErrorDialog;
137 import com.stoutner.privacybrowser.dialogs.StoragePermissionDialog;
138 import com.stoutner.privacybrowser.dialogs.UrlHistoryDialog;
139 import com.stoutner.privacybrowser.dialogs.ViewSslCertificateDialog;
140 import com.stoutner.privacybrowser.fragments.WebViewTabFragment;
141 import com.stoutner.privacybrowser.helpers.AdHelper;
142 import com.stoutner.privacybrowser.helpers.BlocklistHelper;
143 import com.stoutner.privacybrowser.helpers.BookmarksDatabaseHelper;
144 import com.stoutner.privacybrowser.helpers.CheckPinnedMismatchHelper;
145 import com.stoutner.privacybrowser.helpers.DomainsDatabaseHelper;
146 import com.stoutner.privacybrowser.helpers.FileNameHelper;
147 import com.stoutner.privacybrowser.helpers.OrbotProxyHelper;
148 import com.stoutner.privacybrowser.views.NestedScrollWebView;
150 import java.io.ByteArrayInputStream;
151 import java.io.ByteArrayOutputStream;
153 import java.io.IOException;
154 import java.io.UnsupportedEncodingException;
155 import java.net.MalformedURLException;
157 import java.net.URLDecoder;
158 import java.net.URLEncoder;
159 import java.util.ArrayList;
160 import java.util.Date;
161 import java.util.HashMap;
162 import java.util.HashSet;
163 import java.util.List;
164 import java.util.Map;
165 import java.util.Objects;
166 import java.util.Set;
168 // AppCompatActivity from android.support.v7.app.AppCompatActivity must be used to have access to the SupportActionBar until the minimum API is >= 21.
169 public class MainWebViewActivity extends AppCompatActivity implements CreateBookmarkDialog.CreateBookmarkListener, CreateBookmarkFolderDialog.CreateBookmarkFolderListener,
170 DownloadFileDialog.DownloadFileListener, DownloadImageDialog.DownloadImageListener, DownloadLocationPermissionDialog.DownloadLocationPermissionDialogListener, EditBookmarkDialog.EditBookmarkListener,
171 EditBookmarkFolderDialog.EditBookmarkFolderListener, FontSizeDialog.UpdateFontSizeListener, NavigationView.OnNavigationItemSelectedListener, PinnedMismatchDialog.PinnedMismatchListener, PopulateBlocklists.PopulateBlocklistsListener, SaveWebpageImageDialog.SaveWebpageImageListener,
172 StoragePermissionDialog.StoragePermissionDialogListener, UrlHistoryDialog.NavigateHistoryListener, WebViewTabFragment.NewTabListener {
174 // `orbotStatus` is public static so it can be accessed from `OrbotProxyHelper`. It is also used in `onCreate()`, `onResume()`, and `applyProxyThroughOrbot()`.
175 public static String orbotStatus;
177 // The WebView pager adapter is accessed from `HttpAuthenticationDialog`, `PinnedMismatchDialog`, and `SslCertificateErrorDialog`. It is also used in `onCreate()`, `onResume()`, and `addTab()`.
178 public static WebViewPagerAdapter webViewPagerAdapter;
180 // The load URL on restart variables are public static so they can be accessed from `BookmarksActivity`. They are used in `onRestart()`.
181 public static boolean loadUrlOnRestart;
182 public static String urlToLoadOnRestart;
184 // `restartFromBookmarksActivity` is public static so it can be accessed from `BookmarksActivity`. It is also used in `onRestart()`.
185 public static boolean restartFromBookmarksActivity;
187 // `currentBookmarksFolder` is public static so it can be accessed from `BookmarksActivity`. It is also used in `onCreate()`, `onBackPressed()`, `onCreateBookmark()`, `onCreateBookmarkFolder()`,
188 // `onSaveEditBookmark()`, `onSaveEditBookmarkFolder()`, and `loadBookmarksFolder()`.
189 public static String currentBookmarksFolder;
191 // The user agent constants are public static so they can be accessed from `SettingsFragment`, `DomainsActivity`, and `DomainSettingsFragment`.
192 public final static int UNRECOGNIZED_USER_AGENT = -1;
193 public final static int SETTINGS_WEBVIEW_DEFAULT_USER_AGENT = 1;
194 public final static int SETTINGS_CUSTOM_USER_AGENT = 12;
195 public final static int DOMAINS_SYSTEM_DEFAULT_USER_AGENT = 0;
196 public final static int DOMAINS_WEBVIEW_DEFAULT_USER_AGENT = 2;
197 public final static int DOMAINS_CUSTOM_USER_AGENT = 13;
199 // Start activity for result request codes.
200 private final int FILE_UPLOAD_REQUEST_CODE = 0;
201 public final static int BROWSE_SAVE_WEBPAGE_IMAGE_REQUEST_CODE = 1;
204 // The current WebView is used in `onCreate()`, `onPrepareOptionsMenu()`, `onOptionsItemSelected()`, `onNavigationItemSelected()`, `onRestart()`, `onCreateContextMenu()`, `findPreviousOnPage()`,
205 // `findNextOnPage()`, `closeFindOnPage()`, `loadUrlFromTextBox()`, `onSslMismatchBack()`, `applyProxyThroughOrbot()`, and `applyDomainSettings()`.
206 private NestedScrollWebView currentWebView;
208 // `customHeader` is used in `onCreate()`, `onOptionsItemSelected()`, `onCreateContextMenu()`, and `loadUrl()`.
209 private final Map<String, String> customHeaders = new HashMap<>();
211 // The search URL is set in `applyProxyThroughOrbot()` and used in `onCreate()`, `onNewIntent()`, `loadURLFromTextBox()`, and `initializeWebView()`.
212 private String searchURL;
214 // The options menu is set in `onCreateOptionsMenu()` and used in `onOptionsItemSelected()`, `updatePrivacyIcons()`, and `initializeWebView()`.
215 private Menu optionsMenu;
217 // The blocklists are populated in `finishedPopulatingBlocklists()` and accessed from `initializeWebView()`.
218 private ArrayList<List<String[]>> easyList;
219 private ArrayList<List<String[]>> easyPrivacy;
220 private ArrayList<List<String[]>> fanboysAnnoyanceList;
221 private ArrayList<List<String[]>> fanboysSocialList;
222 private ArrayList<List<String[]>> ultraList;
223 private ArrayList<List<String[]>> ultraPrivacy;
225 // `webViewDefaultUserAgent` is used in `onCreate()` and `onPrepareOptionsMenu()`.
226 private String webViewDefaultUserAgent;
228 // `proxyThroughOrbot` is used in `onRestart()`, `onOptionsItemSelected()`, `applyAppSettings()`, and `applyProxyThroughOrbot()`.
229 private boolean proxyThroughOrbot;
231 // The incognito mode is set in `applyAppSettings()` and used in `initializeWebView()`.
232 private boolean incognitoModeEnabled;
234 // The full screen browsing mode tracker is set it `applyAppSettings()` and used in `initializeWebView()`.
235 private boolean fullScreenBrowsingModeEnabled;
237 // `inFullScreenBrowsingMode` is used in `onCreate()`, `onConfigurationChanged()`, and `applyAppSettings()`.
238 private boolean inFullScreenBrowsingMode;
240 // The app bar trackers are set in `applyAppSettings()` and used in `initializeWebView()`.
241 private boolean hideAppBar;
242 private boolean scrollAppBar;
244 // The loading new intent tracker is set in `onNewIntent()` and used in `setCurrentWebView()`.
245 private boolean loadingNewIntent;
247 // `reapplyDomainSettingsOnRestart` is used in `onCreate()`, `onOptionsItemSelected()`, `onNavigationItemSelected()`, `onRestart()`, and `onAddDomain()`, .
248 private boolean reapplyDomainSettingsOnRestart;
250 // `reapplyAppSettingsOnRestart` is used in `onNavigationItemSelected()` and `onRestart()`.
251 private boolean reapplyAppSettingsOnRestart;
253 // `displayingFullScreenVideo` is used in `onCreate()` and `onResume()`.
254 private boolean displayingFullScreenVideo;
256 // `orbotStatusBroadcastReceiver` is used in `onCreate()` and `onDestroy()`.
257 private BroadcastReceiver orbotStatusBroadcastReceiver;
259 // `waitingForOrbot` is used in `onCreate()`, `onResume()`, and `applyProxyThroughOrbot()`.
260 private boolean waitingForOrbot;
262 // The action bar drawer toggle is initialized in `onCreate()` and used in `onResume()`.
263 private ActionBarDrawerToggle actionBarDrawerToggle;
265 // The color spans are used in `onCreate()` and `highlightUrlText()`.
266 private ForegroundColorSpan redColorSpan;
267 private ForegroundColorSpan initialGrayColorSpan;
268 private ForegroundColorSpan finalGrayColorSpan;
270 // The drawer header padding variables are used in `onCreate()` and `onConfigurationChanged()`.
271 private int drawerHeaderPaddingLeftAndRight;
272 private int drawerHeaderPaddingTop;
273 private int drawerHeaderPaddingBottom;
275 // `bookmarksDatabaseHelper` is used in `onCreate()`, `onDestroy`, `onOptionsItemSelected()`, `onCreateBookmark()`, `onCreateBookmarkFolder()`, `onSaveEditBookmark()`, `onSaveEditBookmarkFolder()`,
276 // and `loadBookmarksFolder()`.
277 private BookmarksDatabaseHelper bookmarksDatabaseHelper;
279 // `bookmarksCursor` is used in `onDestroy()`, `onOptionsItemSelected()`, `onCreateBookmark()`, `onCreateBookmarkFolder()`, `onSaveEditBookmark()`, `onSaveEditBookmarkFolder()`, and `loadBookmarksFolder()`.
280 private Cursor bookmarksCursor;
282 // `bookmarksCursorAdapter` is used in `onCreateBookmark()`, `onCreateBookmarkFolder()` `onSaveEditBookmark()`, `onSaveEditBookmarkFolder()`, and `loadBookmarksFolder()`.
283 private CursorAdapter bookmarksCursorAdapter;
285 // `oldFolderNameString` is used in `onCreate()` and `onSaveEditBookmarkFolder()`.
286 private String oldFolderNameString;
288 // `fileChooserCallback` is used in `onCreate()` and `onActivityResult()`.
289 private ValueCallback<Uri[]> fileChooserCallback;
291 // The default progress view offsets are set in `onCreate()` and used in `initializeWebView()`.
292 private int defaultProgressViewStartOffset;
293 private int defaultProgressViewEndOffset;
295 // The swipe refresh layout top padding is used when exiting full screen browsing mode. It is used in an inner class in `initializeWebView()`.
296 private int swipeRefreshLayoutPaddingTop;
298 // The URL sanitizers are set in `applyAppSettings()` and used in `sanitizeUrl()`.
299 private boolean sanitizeGoogleAnalytics;
300 private boolean sanitizeFacebookClickIds;
301 private boolean sanitizeTwitterAmpRedirects;
303 // The download strings are used in `onCreate()`, `onRequestPermissionResult()` and `initializeWebView()`.
304 private String downloadUrl;
305 private String downloadContentDisposition;
306 private long downloadContentLength;
308 // `downloadImageUrl` is used in `onCreateContextMenu()` and `onRequestPermissionResult()`.
309 private String downloadImageUrl;
311 // The save website image file path string is used in `onSaveWebpageImage()` and `onRequestPermissionResult()`
312 private String saveWebsiteImageFilePath;
314 // The permission result request codes are used in `onCreateContextMenu()`, `onCloseDownloadLocationPermissionDialog()`, `onRequestPermissionResult()`, `onSaveWebpageImage()`,
315 // `onCloseStoragePermissionDialog()`, and `initializeWebView()`.
316 private final int DOWNLOAD_FILE_REQUEST_CODE = 1;
317 private final int DOWNLOAD_IMAGE_REQUEST_CODE = 2;
318 private final int SAVE_WEBPAGE_IMAGE_REQUEST_CODE = 3;
321 // Remove the warning about needing to override `performClick()` when using an `OnTouchListener` with `WebView`.
322 @SuppressLint("ClickableViewAccessibility")
323 protected void onCreate(Bundle savedInstanceState) {
324 if (Build.VERSION.SDK_INT >= 21) {
325 WebView.enableSlowWholeDocumentDraw();
328 // Initialize the default preference values the first time the program is run. `false` keeps this command from resetting any current preferences back to default.
329 PreferenceManager.setDefaultValues(this, R.xml.preferences, false);
331 // Get a handle for the shared preferences.
332 SharedPreferences sharedPreferences = PreferenceManager.getDefaultSharedPreferences(this);
334 // Get the theme and screenshot preferences.
335 boolean darkTheme = sharedPreferences.getBoolean("dark_theme", false);
336 boolean allowScreenshots = sharedPreferences.getBoolean("allow_screenshots", false);
338 // Disable screenshots if not allowed.
339 if (!allowScreenshots) {
340 getWindow().addFlags(WindowManager.LayoutParams.FLAG_SECURE);
343 // Set the activity theme.
345 setTheme(R.style.PrivacyBrowserDark);
347 setTheme(R.style.PrivacyBrowserLight);
350 // Run the default commands.
351 super.onCreate(savedInstanceState);
353 // Set the content view.
354 setContentView(R.layout.main_framelayout);
356 // Get handles for the views that need to be modified.
357 DrawerLayout drawerLayout = findViewById(R.id.drawerlayout);
358 Toolbar toolbar = findViewById(R.id.toolbar);
359 ViewPager webViewPager = findViewById(R.id.webviewpager);
361 // Set the action bar. `SupportActionBar` must be used until the minimum API is >= 21.
362 setSupportActionBar(toolbar);
364 // Get a handle for the action bar.
365 ActionBar actionBar = getSupportActionBar();
367 // This is needed to get rid of the Android Studio warning that the action bar might be null.
368 assert actionBar != null;
370 // Add the custom layout, which shows the URL text bar.
371 actionBar.setCustomView(R.layout.url_app_bar);
372 actionBar.setDisplayOptions(ActionBar.DISPLAY_SHOW_CUSTOM);
374 // Initially disable the sliding drawers. They will be enabled once the blocklists are loaded.
375 drawerLayout.setDrawerLockMode(DrawerLayout.LOCK_MODE_LOCKED_CLOSED);
377 // Create the hamburger icon at the start of the AppBar.
378 actionBarDrawerToggle = new ActionBarDrawerToggle(this, drawerLayout, toolbar, R.string.open_navigation_drawer, R.string.close_navigation_drawer);
380 // Initialize the web view pager adapter.
381 webViewPagerAdapter = new WebViewPagerAdapter(getSupportFragmentManager());
383 // Set the pager adapter on the web view pager.
384 webViewPager.setAdapter(webViewPagerAdapter);
386 // Store up to 100 tabs in memory.
387 webViewPager.setOffscreenPageLimit(100);
389 // Populate the blocklists.
390 new PopulateBlocklists(this, this).execute();
394 protected void onNewIntent(Intent intent) {
395 // Run the default commands.
396 super.onNewIntent(intent);
398 // Replace the intent that started the app with this one.
401 // Process the intent here if Privacy Browser is fully initialized. If the process has been killed by the system while sitting in the background, this will be handled in `initializeWebView()`.
402 if (ultraPrivacy != null) {
403 // Get the information from the intent.
404 String intentAction = intent.getAction();
405 Uri intentUriData = intent.getData();
407 // Determine if this is a web search.
408 boolean isWebSearch = ((intentAction != null) && intentAction.equals(Intent.ACTION_WEB_SEARCH));
410 // 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.
411 if (intentUriData != null || isWebSearch) {
412 // Get the shared preferences.
413 SharedPreferences sharedPreferences = PreferenceManager.getDefaultSharedPreferences(this);
415 // Create a URL string.
418 // If the intent action is a web search, perform the search.
420 // Create an encoded URL string.
421 String encodedUrlString;
423 // Sanitize the search input and convert it to a search.
425 encodedUrlString = URLEncoder.encode(intent.getStringExtra(SearchManager.QUERY), "UTF-8");
426 } catch (UnsupportedEncodingException exception) {
427 encodedUrlString = "";
430 // Add the base search URL.
431 url = searchURL + encodedUrlString;
432 } else { // The intent should contain a URL.
433 // Set the intent data as the URL.
434 url = intentUriData.toString();
437 // Add a new tab if specified in the preferences.
438 if (sharedPreferences.getBoolean("open_intents_in_new_tab", true)) { // Load the URL in a new tab.
439 // Set the loading new intent flag.
440 loadingNewIntent = true;
443 addNewTab(url, true);
444 } else { // Load the URL in the current tab.
449 // Get a handle for the drawer layout.
450 DrawerLayout drawerLayout = findViewById(R.id.drawerlayout);
452 // Close the navigation drawer if it is open.
453 if (drawerLayout.isDrawerVisible(GravityCompat.START)) {
454 drawerLayout.closeDrawer(GravityCompat.START);
457 // Close the bookmarks drawer if it is open.
458 if (drawerLayout.isDrawerVisible(GravityCompat.END)) {
459 drawerLayout.closeDrawer(GravityCompat.END);
466 public void onRestart() {
467 // Run the default commands.
470 // Make sure Orbot is running if Privacy Browser is proxying through Orbot.
471 if (proxyThroughOrbot) {
472 // Request Orbot to start. If Orbot is already running no hard will be caused by this request.
473 Intent orbotIntent = new Intent("org.torproject.android.intent.action.START");
475 // Send the intent to the Orbot package.
476 orbotIntent.setPackage("org.torproject.android");
479 sendBroadcast(orbotIntent);
482 // Apply the app settings if returning from the Settings activity.
483 if (reapplyAppSettingsOnRestart) {
484 // Reset the reapply app settings on restart tracker.
485 reapplyAppSettingsOnRestart = false;
487 // Apply the app settings.
491 // Apply the domain settings if returning from the settings or domains activity.
492 if (reapplyDomainSettingsOnRestart) {
493 // Reset the reapply domain settings on restart tracker.
494 reapplyDomainSettingsOnRestart = false;
496 // Reapply the domain settings for each tab.
497 for (int i = 0; i < webViewPagerAdapter.getCount(); i++) {
498 // Get the WebView tab fragment.
499 WebViewTabFragment webViewTabFragment = webViewPagerAdapter.getPageFragment(i);
501 // Get the fragment view.
502 View fragmentView = webViewTabFragment.getView();
504 // Only reload the WebViews if they exist.
505 if (fragmentView != null) {
506 // Get the nested scroll WebView from the tab fragment.
507 NestedScrollWebView nestedScrollWebView = fragmentView.findViewById(R.id.nestedscroll_webview);
509 // Reset the current domain name so the domain settings will be reapplied.
510 nestedScrollWebView.resetCurrentDomainName();
512 // Reapply the domain settings if the URL is not null, which can happen if an empty tab is active when returning from settings.
513 if (nestedScrollWebView.getUrl() != null) {
514 applyDomainSettings(nestedScrollWebView, nestedScrollWebView.getUrl(), false, true);
520 // Load the URL on restart (used when loading a bookmark).
521 if (loadUrlOnRestart) {
522 // Load the specified URL.
523 loadUrl(urlToLoadOnRestart);
525 // Reset the load on restart tracker.
526 loadUrlOnRestart = false;
529 // Update the bookmarks drawer if returning from the Bookmarks activity.
530 if (restartFromBookmarksActivity) {
531 // Get a handle for the drawer layout.
532 DrawerLayout drawerLayout = findViewById(R.id.drawerlayout);
534 // Close the bookmarks drawer.
535 drawerLayout.closeDrawer(GravityCompat.END);
537 // Reload the bookmarks drawer.
538 loadBookmarksFolder();
540 // Reset `restartFromBookmarksActivity`.
541 restartFromBookmarksActivity = false;
544 // Update the privacy icon. `true` runs `invalidateOptionsMenu` as the last step. This can be important if the screen was rotated.
545 updatePrivacyIcons(true);
548 // `onResume()` runs after `onStart()`, which runs after `onCreate()` and `onRestart()`.
550 public void onResume() {
551 // Run the default commands.
554 for (int i = 0; i < webViewPagerAdapter.getCount(); i++) {
555 // Get the WebView tab fragment.
556 WebViewTabFragment webViewTabFragment = webViewPagerAdapter.getPageFragment(i);
558 // Get the fragment view.
559 View fragmentView = webViewTabFragment.getView();
561 // Only resume the WebViews if they exist (they won't when the app is first created).
562 if (fragmentView != null) {
563 // Get the nested scroll WebView from the tab fragment.
564 NestedScrollWebView nestedScrollWebView = fragmentView.findViewById(R.id.nestedscroll_webview);
566 // Resume the nested scroll WebView JavaScript timers.
567 nestedScrollWebView.resumeTimers();
569 // Resume the nested scroll WebView.
570 nestedScrollWebView.onResume();
574 // Display a message to the user if waiting for Orbot.
575 if (waitingForOrbot && !orbotStatus.equals("ON")) {
576 // Disable the wide view port so that the waiting for Orbot text is displayed correctly.
577 currentWebView.getSettings().setUseWideViewPort(false);
579 // Load a waiting page. `null` specifies no encoding, which defaults to ASCII.
580 currentWebView.loadData("<html><body><br/><center><h1>" + getString(R.string.waiting_for_orbot) + "</h1></center></body></html>", "text/html", null);
583 if (displayingFullScreenVideo || inFullScreenBrowsingMode) {
584 // Get a handle for the root frame layouts.
585 FrameLayout rootFrameLayout = findViewById(R.id.root_framelayout);
587 // Remove the translucent status flag. This is necessary so the root frame layout can fill the entire screen.
588 getWindow().clearFlags(WindowManager.LayoutParams.FLAG_TRANSLUCENT_STATUS);
590 /* Hide the system bars.
591 * SYSTEM_UI_FLAG_FULLSCREEN hides the status bar at the top of the screen.
592 * SYSTEM_UI_FLAG_LAYOUT_FULLSCREEN makes the root frame layout fill the area that is normally reserved for the status bar.
593 * SYSTEM_UI_FLAG_HIDE_NAVIGATION hides the navigation bar on the bottom or right of the screen.
594 * SYSTEM_UI_FLAG_IMMERSIVE_STICKY makes the status and navigation bars translucent and automatically re-hides them after they are shown.
596 rootFrameLayout.setSystemUiVisibility(View.SYSTEM_UI_FLAG_FULLSCREEN | View.SYSTEM_UI_FLAG_LAYOUT_FULLSCREEN | View.SYSTEM_UI_FLAG_HIDE_NAVIGATION |
597 View.SYSTEM_UI_FLAG_IMMERSIVE_STICKY);
598 } else if (BuildConfig.FLAVOR.contentEquals("free")) { // Resume the adView for the free flavor.
600 AdHelper.resumeAd(findViewById(R.id.adview));
605 public void onPause() {
606 // Run the default commands.
609 for (int i = 0; i < webViewPagerAdapter.getCount(); i++) {
610 // Get the WebView tab fragment.
611 WebViewTabFragment webViewTabFragment = webViewPagerAdapter.getPageFragment(i);
613 // Get the fragment view.
614 View fragmentView = webViewTabFragment.getView();
616 // Only pause the WebViews if they exist (they won't when the app is first created).
617 if (fragmentView != null) {
618 // Get the nested scroll WebView from the tab fragment.
619 NestedScrollWebView nestedScrollWebView = fragmentView.findViewById(R.id.nestedscroll_webview);
621 // Pause the nested scroll WebView.
622 nestedScrollWebView.onPause();
624 // Pause the nested scroll WebView JavaScript timers.
625 nestedScrollWebView.pauseTimers();
629 // Pause the ad or it will continue to consume resources in the background on the free flavor.
630 if (BuildConfig.FLAVOR.contentEquals("free")) {
632 AdHelper.pauseAd(findViewById(R.id.adview));
637 public void onDestroy() {
638 // Unregister the Orbot status broadcast receiver.
639 this.unregisterReceiver(orbotStatusBroadcastReceiver);
641 // Close the bookmarks cursor and database.
642 bookmarksCursor.close();
643 bookmarksDatabaseHelper.close();
645 // Run the default commands.
650 public boolean onCreateOptionsMenu(Menu menu) {
651 // Inflate the menu. This adds items to the action bar if it is present.
652 getMenuInflater().inflate(R.menu.webview_options_menu, menu);
654 // Store a handle for the options menu so it can be used by `onOptionsItemSelected()` and `updatePrivacyIcons()`.
657 // Set the initial status of the privacy icons. `false` does not call `invalidateOptionsMenu` as the last step.
658 updatePrivacyIcons(false);
660 // Get handles for the menu items.
661 MenuItem toggleFirstPartyCookiesMenuItem = menu.findItem(R.id.toggle_first_party_cookies);
662 MenuItem toggleThirdPartyCookiesMenuItem = menu.findItem(R.id.toggle_third_party_cookies);
663 MenuItem toggleDomStorageMenuItem = menu.findItem(R.id.toggle_dom_storage);
664 MenuItem toggleSaveFormDataMenuItem = menu.findItem(R.id.toggle_save_form_data); // Form data can be removed once the minimum API >= 26.
665 MenuItem clearFormDataMenuItem = menu.findItem(R.id.clear_form_data); // Form data can be removed once the minimum API >= 26.
666 MenuItem refreshMenuItem = menu.findItem(R.id.refresh);
667 MenuItem adConsentMenuItem = menu.findItem(R.id.ad_consent);
669 // Only display third-party cookies if API >= 21
670 toggleThirdPartyCookiesMenuItem.setVisible(Build.VERSION.SDK_INT >= 21);
672 // Only display the form data menu items if the API < 26.
673 toggleSaveFormDataMenuItem.setVisible(Build.VERSION.SDK_INT < 26);
674 clearFormDataMenuItem.setVisible(Build.VERSION.SDK_INT < 26);
676 // Disable the clear form data menu item if the API >= 26 so that the status of the main Clear Data is calculated correctly.
677 clearFormDataMenuItem.setEnabled(Build.VERSION.SDK_INT < 26);
679 // Only show Ad Consent if this is the free flavor.
680 adConsentMenuItem.setVisible(BuildConfig.FLAVOR.contentEquals("free"));
682 // Get the shared preferences.
683 SharedPreferences sharedPreferences = PreferenceManager.getDefaultSharedPreferences(this);
685 // Get the dark theme and app bar preferences..
686 boolean displayAdditionalAppBarIcons = sharedPreferences.getBoolean("display_additional_app_bar_icons", false);
687 boolean darkTheme = sharedPreferences.getBoolean("dark_theme", false);
689 // 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.
690 if (displayAdditionalAppBarIcons) {
691 toggleFirstPartyCookiesMenuItem.setShowAsAction(MenuItem.SHOW_AS_ACTION_IF_ROOM);
692 toggleDomStorageMenuItem.setShowAsAction(MenuItem.SHOW_AS_ACTION_IF_ROOM);
693 refreshMenuItem.setShowAsAction(MenuItem.SHOW_AS_ACTION_ALWAYS);
694 } else { //Do not display the additional icons.
695 toggleFirstPartyCookiesMenuItem.setShowAsAction(MenuItem.SHOW_AS_ACTION_NEVER);
696 toggleDomStorageMenuItem.setShowAsAction(MenuItem.SHOW_AS_ACTION_NEVER);
697 refreshMenuItem.setShowAsAction(MenuItem.SHOW_AS_ACTION_NEVER);
700 // Replace Refresh with Stop if a URL is already loading.
701 if (currentWebView != null && currentWebView.getProgress() != 100) {
703 refreshMenuItem.setTitle(R.string.stop);
705 // If the icon is displayed in the AppBar, set it according to the theme.
706 if (displayAdditionalAppBarIcons) {
708 refreshMenuItem.setIcon(R.drawable.close_dark);
710 refreshMenuItem.setIcon(R.drawable.close_light);
720 public boolean onPrepareOptionsMenu(Menu menu) {
721 // Get handles for the menu items.
722 MenuItem addOrEditDomain = menu.findItem(R.id.add_or_edit_domain);
723 MenuItem firstPartyCookiesMenuItem = menu.findItem(R.id.toggle_first_party_cookies);
724 MenuItem thirdPartyCookiesMenuItem = menu.findItem(R.id.toggle_third_party_cookies);
725 MenuItem domStorageMenuItem = menu.findItem(R.id.toggle_dom_storage);
726 MenuItem saveFormDataMenuItem = menu.findItem(R.id.toggle_save_form_data); // Form data can be removed once the minimum API >= 26.
727 MenuItem clearDataMenuItem = menu.findItem(R.id.clear_data);
728 MenuItem clearCookiesMenuItem = menu.findItem(R.id.clear_cookies);
729 MenuItem clearDOMStorageMenuItem = menu.findItem(R.id.clear_dom_storage);
730 MenuItem clearFormDataMenuItem = menu.findItem(R.id.clear_form_data); // Form data can be removed once the minimum API >= 26.
731 MenuItem blocklistsMenuItem = menu.findItem(R.id.blocklists);
732 MenuItem easyListMenuItem = menu.findItem(R.id.easylist);
733 MenuItem easyPrivacyMenuItem = menu.findItem(R.id.easyprivacy);
734 MenuItem fanboysAnnoyanceListMenuItem = menu.findItem(R.id.fanboys_annoyance_list);
735 MenuItem fanboysSocialBlockingListMenuItem = menu.findItem(R.id.fanboys_social_blocking_list);
736 MenuItem ultraListMenuItem = menu.findItem(R.id.ultralist);
737 MenuItem ultraPrivacyMenuItem = menu.findItem(R.id.ultraprivacy);
738 MenuItem blockAllThirdPartyRequestsMenuItem = menu.findItem(R.id.block_all_third_party_requests);
739 MenuItem fontSizeMenuItem = menu.findItem(R.id.font_size);
740 MenuItem swipeToRefreshMenuItem = menu.findItem(R.id.swipe_to_refresh);
741 MenuItem wideViewportMenuItem = menu.findItem(R.id.wide_viewport);
742 MenuItem displayImagesMenuItem = menu.findItem(R.id.display_images);
743 MenuItem nightModeMenuItem = menu.findItem(R.id.night_mode);
744 MenuItem proxyThroughOrbotMenuItem = menu.findItem(R.id.proxy_through_orbot);
746 // Get a handle for the cookie manager.
747 CookieManager cookieManager = CookieManager.getInstance();
749 // Initialize the current user agent string and the font size.
750 String currentUserAgent = getString(R.string.user_agent_privacy_browser);
753 // 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.
754 if (currentWebView != null) {
755 // Set the add or edit domain text.
756 if (currentWebView.getDomainSettingsApplied()) {
757 addOrEditDomain.setTitle(R.string.edit_domain_settings);
759 addOrEditDomain.setTitle(R.string.add_domain_settings);
762 // Get the current user agent from the WebView.
763 currentUserAgent = currentWebView.getSettings().getUserAgentString();
765 // Get the current font size from the
766 fontSize = currentWebView.getSettings().getTextZoom();
768 // Set the status of the menu item checkboxes.
769 domStorageMenuItem.setChecked(currentWebView.getSettings().getDomStorageEnabled());
770 saveFormDataMenuItem.setChecked(currentWebView.getSettings().getSaveFormData()); // Form data can be removed once the minimum API >= 26.
771 easyListMenuItem.setChecked(currentWebView.isBlocklistEnabled(NestedScrollWebView.EASYLIST));
772 easyPrivacyMenuItem.setChecked(currentWebView.isBlocklistEnabled(NestedScrollWebView.EASYPRIVACY));
773 fanboysAnnoyanceListMenuItem.setChecked(currentWebView.isBlocklistEnabled(NestedScrollWebView.FANBOYS_ANNOYANCE_LIST));
774 fanboysSocialBlockingListMenuItem.setChecked(currentWebView.isBlocklistEnabled(NestedScrollWebView.FANBOYS_SOCIAL_BLOCKING_LIST));
775 ultraListMenuItem.setChecked(currentWebView.isBlocklistEnabled(NestedScrollWebView.ULTRALIST));
776 ultraPrivacyMenuItem.setChecked(currentWebView.isBlocklistEnabled(NestedScrollWebView.ULTRAPRIVACY));
777 blockAllThirdPartyRequestsMenuItem.setChecked(currentWebView.isBlocklistEnabled(NestedScrollWebView.THIRD_PARTY_REQUESTS));
778 swipeToRefreshMenuItem.setChecked(currentWebView.getSwipeToRefresh());
779 wideViewportMenuItem.setChecked(currentWebView.getSettings().getUseWideViewPort());
780 displayImagesMenuItem.setChecked(currentWebView.getSettings().getLoadsImagesAutomatically());
781 nightModeMenuItem.setChecked(currentWebView.getNightMode());
783 // Initialize the display names for the blocklists with the number of blocked requests.
784 blocklistsMenuItem.setTitle(getString(R.string.blocklists) + " - " + currentWebView.getRequestsCount(NestedScrollWebView.BLOCKED_REQUESTS));
785 easyListMenuItem.setTitle(currentWebView.getRequestsCount(NestedScrollWebView.EASYLIST) + " - " + getString(R.string.easylist));
786 easyPrivacyMenuItem.setTitle(currentWebView.getRequestsCount(NestedScrollWebView.EASYPRIVACY) + " - " + getString(R.string.easyprivacy));
787 fanboysAnnoyanceListMenuItem.setTitle(currentWebView.getRequestsCount(NestedScrollWebView.FANBOYS_ANNOYANCE_LIST) + " - " + getString(R.string.fanboys_annoyance_list));
788 fanboysSocialBlockingListMenuItem.setTitle(currentWebView.getRequestsCount(NestedScrollWebView.FANBOYS_SOCIAL_BLOCKING_LIST) + " - " + getString(R.string.fanboys_social_blocking_list));
789 ultraListMenuItem.setTitle(currentWebView.getRequestsCount(NestedScrollWebView.ULTRALIST) + " - " + getString(R.string.ultralist));
790 ultraPrivacyMenuItem.setTitle(currentWebView.getRequestsCount(NestedScrollWebView.ULTRAPRIVACY) + " - " + getString(R.string.ultraprivacy));
791 blockAllThirdPartyRequestsMenuItem.setTitle(currentWebView.getRequestsCount(NestedScrollWebView.THIRD_PARTY_REQUESTS) + " - " + getString(R.string.block_all_third_party_requests));
793 // Only modify third-party cookies if the API >= 21.
794 if (Build.VERSION.SDK_INT >= 21) {
795 // Set the status of the third-party cookies checkbox.
796 thirdPartyCookiesMenuItem.setChecked(cookieManager.acceptThirdPartyCookies(currentWebView));
798 // Enable third-party cookies if first-party cookies are enabled.
799 thirdPartyCookiesMenuItem.setEnabled(cookieManager.acceptCookie());
802 // Enable DOM Storage if JavaScript is enabled.
803 domStorageMenuItem.setEnabled(currentWebView.getSettings().getJavaScriptEnabled());
806 // Set the status of the menu item checkboxes.
807 firstPartyCookiesMenuItem.setChecked(cookieManager.acceptCookie());
808 proxyThroughOrbotMenuItem.setChecked(proxyThroughOrbot);
810 // Enable Clear Cookies if there are any.
811 clearCookiesMenuItem.setEnabled(cookieManager.hasCookies());
813 // 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`.
814 String privateDataDirectoryString = getApplicationInfo().dataDir;
816 // Get a count of the number of files in the Local Storage directory.
817 File localStorageDirectory = new File (privateDataDirectoryString + "/app_webview/Local Storage/");
818 int localStorageDirectoryNumberOfFiles = 0;
819 if (localStorageDirectory.exists()) {
820 // `Objects.requireNonNull` removes a lint warning that `localStorageDirectory.list` might produce a null pointed exception if it is dereferenced.
821 localStorageDirectoryNumberOfFiles = Objects.requireNonNull(localStorageDirectory.list()).length;
824 // Get a count of the number of files in the IndexedDB directory.
825 File indexedDBDirectory = new File (privateDataDirectoryString + "/app_webview/IndexedDB");
826 int indexedDBDirectoryNumberOfFiles = 0;
827 if (indexedDBDirectory.exists()) {
828 // `Objects.requireNonNull` removes a lint warning that `indexedDBDirectory.list` might produce a null pointed exception if it is dereferenced.
829 indexedDBDirectoryNumberOfFiles = Objects.requireNonNull(indexedDBDirectory.list()).length;
832 // Enable Clear DOM Storage if there is any.
833 clearDOMStorageMenuItem.setEnabled(localStorageDirectoryNumberOfFiles > 0 || indexedDBDirectoryNumberOfFiles > 0);
835 // Enable Clear Form Data is there is any. This can be removed once the minimum API >= 26.
836 if (Build.VERSION.SDK_INT < 26) {
837 // Get the WebView database.
838 WebViewDatabase webViewDatabase = WebViewDatabase.getInstance(this);
840 // Enable the clear form data menu item if there is anything to clear.
841 clearFormDataMenuItem.setEnabled(webViewDatabase.hasFormData());
844 // Enable Clear Data if any of the submenu items are enabled.
845 clearDataMenuItem.setEnabled(clearCookiesMenuItem.isEnabled() || clearDOMStorageMenuItem.isEnabled() || clearFormDataMenuItem.isEnabled());
847 // Disable Fanboy's Social Blocking List menu item if Fanboy's Annoyance List is checked.
848 fanboysSocialBlockingListMenuItem.setEnabled(!fanboysAnnoyanceListMenuItem.isChecked());
850 // Select the current user agent menu item. A switch statement cannot be used because the user agents are not compile time constants.
851 if (currentUserAgent.equals(getResources().getStringArray(R.array.user_agent_data)[0])) { // Privacy Browser.
852 menu.findItem(R.id.user_agent_privacy_browser).setChecked(true);
853 } else if (currentUserAgent.equals(webViewDefaultUserAgent)) { // WebView Default.
854 menu.findItem(R.id.user_agent_webview_default).setChecked(true);
855 } else if (currentUserAgent.equals(getResources().getStringArray(R.array.user_agent_data)[2])) { // Firefox on Android.
856 menu.findItem(R.id.user_agent_firefox_on_android).setChecked(true);
857 } else if (currentUserAgent.equals(getResources().getStringArray(R.array.user_agent_data)[3])) { // Chrome on Android.
858 menu.findItem(R.id.user_agent_chrome_on_android).setChecked(true);
859 } else if (currentUserAgent.equals(getResources().getStringArray(R.array.user_agent_data)[4])) { // Safari on iOS.
860 menu.findItem(R.id.user_agent_safari_on_ios).setChecked(true);
861 } else if (currentUserAgent.equals(getResources().getStringArray(R.array.user_agent_data)[5])) { // Firefox on Linux.
862 menu.findItem(R.id.user_agent_firefox_on_linux).setChecked(true);
863 } else if (currentUserAgent.equals(getResources().getStringArray(R.array.user_agent_data)[6])) { // Chromium on Linux.
864 menu.findItem(R.id.user_agent_chromium_on_linux).setChecked(true);
865 } else if (currentUserAgent.equals(getResources().getStringArray(R.array.user_agent_data)[7])) { // Firefox on Windows.
866 menu.findItem(R.id.user_agent_firefox_on_windows).setChecked(true);
867 } else if (currentUserAgent.equals(getResources().getStringArray(R.array.user_agent_data)[8])) { // Chrome on Windows.
868 menu.findItem(R.id.user_agent_chrome_on_windows).setChecked(true);
869 } else if (currentUserAgent.equals(getResources().getStringArray(R.array.user_agent_data)[9])) { // Edge on Windows.
870 menu.findItem(R.id.user_agent_edge_on_windows).setChecked(true);
871 } else if (currentUserAgent.equals(getResources().getStringArray(R.array.user_agent_data)[10])) { // Internet Explorer on Windows.
872 menu.findItem(R.id.user_agent_internet_explorer_on_windows).setChecked(true);
873 } else if (currentUserAgent.equals(getResources().getStringArray(R.array.user_agent_data)[11])) { // Safari on macOS.
874 menu.findItem(R.id.user_agent_safari_on_macos).setChecked(true);
875 } else { // Custom user agent.
876 menu.findItem(R.id.user_agent_custom).setChecked(true);
879 // Set the font size title.
880 fontSizeMenuItem.setTitle(getString(R.string.font_size) + " - " + fontSize + "%");
882 // Run all the other default commands.
883 super.onPrepareOptionsMenu(menu);
890 // Remove Android Studio's warning about the dangers of using SetJavaScriptEnabled.
891 @SuppressLint("SetJavaScriptEnabled")
892 public boolean onOptionsItemSelected(MenuItem menuItem) {
893 // Get the selected menu item ID.
894 int menuItemId = menuItem.getItemId();
896 // Get a handle for the shared preferences.
897 SharedPreferences sharedPreferences = PreferenceManager.getDefaultSharedPreferences(this);
899 // Get a handle for the cookie manager.
900 CookieManager cookieManager = CookieManager.getInstance();
902 // Run the commands that correlate to the selected menu item.
903 switch (menuItemId) {
904 case R.id.toggle_javascript:
905 // Toggle the JavaScript status.
906 currentWebView.getSettings().setJavaScriptEnabled(!currentWebView.getSettings().getJavaScriptEnabled());
908 // Update the privacy icon. `true` runs `invalidateOptionsMenu` as the last step.
909 updatePrivacyIcons(true);
911 // Display a `Snackbar`.
912 if (currentWebView.getSettings().getJavaScriptEnabled()) { // JavaScrip is enabled.
913 Snackbar.make(findViewById(R.id.webviewpager), R.string.javascript_enabled, Snackbar.LENGTH_SHORT).show();
914 } else if (cookieManager.acceptCookie()) { // JavaScript is disabled, but first-party cookies are enabled.
915 Snackbar.make(findViewById(R.id.webviewpager), R.string.javascript_disabled, Snackbar.LENGTH_SHORT).show();
916 } else { // Privacy mode.
917 Snackbar.make(findViewById(R.id.webviewpager), R.string.privacy_mode, Snackbar.LENGTH_SHORT).show();
920 // Reload the current WebView.
921 currentWebView.reload();
923 // Consume the event.
926 case R.id.add_or_edit_domain:
927 if (currentWebView.getDomainSettingsApplied()) { // Edit the current domain settings.
928 // Reapply the domain settings on returning to `MainWebViewActivity`.
929 reapplyDomainSettingsOnRestart = true;
931 // Create an intent to launch the domains activity.
932 Intent domainsIntent = new Intent(this, DomainsActivity.class);
934 // Add the extra information to the intent.
935 domainsIntent.putExtra("load_domain", currentWebView.getDomainSettingsDatabaseId());
936 domainsIntent.putExtra("close_on_back", true);
937 domainsIntent.putExtra("current_url", currentWebView.getUrl());
939 // Get the current certificate.
940 SslCertificate sslCertificate = currentWebView.getCertificate();
942 // Check to see if the SSL certificate is populated.
943 if (sslCertificate != null) {
944 // Extract the certificate to strings.
945 String issuedToCName = sslCertificate.getIssuedTo().getCName();
946 String issuedToOName = sslCertificate.getIssuedTo().getOName();
947 String issuedToUName = sslCertificate.getIssuedTo().getUName();
948 String issuedByCName = sslCertificate.getIssuedBy().getCName();
949 String issuedByOName = sslCertificate.getIssuedBy().getOName();
950 String issuedByUName = sslCertificate.getIssuedBy().getUName();
951 long startDateLong = sslCertificate.getValidNotBeforeDate().getTime();
952 long endDateLong = sslCertificate.getValidNotAfterDate().getTime();
954 // Add the certificate to the intent.
955 domainsIntent.putExtra("ssl_issued_to_cname", issuedToCName);
956 domainsIntent.putExtra("ssl_issued_to_oname", issuedToOName);
957 domainsIntent.putExtra("ssl_issued_to_uname", issuedToUName);
958 domainsIntent.putExtra("ssl_issued_by_cname", issuedByCName);
959 domainsIntent.putExtra("ssl_issued_by_oname", issuedByOName);
960 domainsIntent.putExtra("ssl_issued_by_uname", issuedByUName);
961 domainsIntent.putExtra("ssl_start_date", startDateLong);
962 domainsIntent.putExtra("ssl_end_date", endDateLong);
965 // Check to see if the current IP addresses have been received.
966 if (currentWebView.hasCurrentIpAddresses()) {
967 // Add the current IP addresses to the intent.
968 domainsIntent.putExtra("current_ip_addresses", currentWebView.getCurrentIpAddresses());
972 startActivity(domainsIntent);
973 } else { // Add a new domain.
974 // Apply the new domain settings on returning to `MainWebViewActivity`.
975 reapplyDomainSettingsOnRestart = true;
977 // Get the current domain
978 Uri currentUri = Uri.parse(currentWebView.getUrl());
979 String currentDomain = currentUri.getHost();
981 // Initialize the database handler. The `0` specifies the database version, but that is ignored and set instead using a constant in `DomainsDatabaseHelper`.
982 DomainsDatabaseHelper domainsDatabaseHelper = new DomainsDatabaseHelper(this, null, null, 0);
984 // Create the domain and store the database ID.
985 int newDomainDatabaseId = domainsDatabaseHelper.addDomain(currentDomain);
987 // Create an intent to launch the domains activity.
988 Intent domainsIntent = new Intent(this, DomainsActivity.class);
990 // Add the extra information to the intent.
991 domainsIntent.putExtra("load_domain", newDomainDatabaseId);
992 domainsIntent.putExtra("close_on_back", true);
993 domainsIntent.putExtra("current_url", currentWebView.getUrl());
995 // Get the current certificate.
996 SslCertificate sslCertificate = currentWebView.getCertificate();
998 // Check to see if the SSL certificate is populated.
999 if (sslCertificate != null) {
1000 // Extract the certificate to strings.
1001 String issuedToCName = sslCertificate.getIssuedTo().getCName();
1002 String issuedToOName = sslCertificate.getIssuedTo().getOName();
1003 String issuedToUName = sslCertificate.getIssuedTo().getUName();
1004 String issuedByCName = sslCertificate.getIssuedBy().getCName();
1005 String issuedByOName = sslCertificate.getIssuedBy().getOName();
1006 String issuedByUName = sslCertificate.getIssuedBy().getUName();
1007 long startDateLong = sslCertificate.getValidNotBeforeDate().getTime();
1008 long endDateLong = sslCertificate.getValidNotAfterDate().getTime();
1010 // Add the certificate to the intent.
1011 domainsIntent.putExtra("ssl_issued_to_cname", issuedToCName);
1012 domainsIntent.putExtra("ssl_issued_to_oname", issuedToOName);
1013 domainsIntent.putExtra("ssl_issued_to_uname", issuedToUName);
1014 domainsIntent.putExtra("ssl_issued_by_cname", issuedByCName);
1015 domainsIntent.putExtra("ssl_issued_by_oname", issuedByOName);
1016 domainsIntent.putExtra("ssl_issued_by_uname", issuedByUName);
1017 domainsIntent.putExtra("ssl_start_date", startDateLong);
1018 domainsIntent.putExtra("ssl_end_date", endDateLong);
1021 // Check to see if the current IP addresses have been received.
1022 if (currentWebView.hasCurrentIpAddresses()) {
1023 // Add the current IP addresses to the intent.
1024 domainsIntent.putExtra("current_ip_addresses", currentWebView.getCurrentIpAddresses());
1028 startActivity(domainsIntent);
1031 // Consume the event.
1034 case R.id.toggle_first_party_cookies:
1035 // Switch the first-party cookie status.
1036 cookieManager.setAcceptCookie(!cookieManager.acceptCookie());
1038 // Store the first-party cookie status.
1039 currentWebView.setAcceptFirstPartyCookies(cookieManager.acceptCookie());
1041 // Update the menu checkbox.
1042 menuItem.setChecked(cookieManager.acceptCookie());
1044 // Update the privacy icon. `true` runs `invalidateOptionsMenu` as the last step.
1045 updatePrivacyIcons(true);
1047 // Display a snackbar.
1048 if (cookieManager.acceptCookie()) { // First-party cookies are enabled.
1049 Snackbar.make(findViewById(R.id.webviewpager), R.string.first_party_cookies_enabled, Snackbar.LENGTH_SHORT).show();
1050 } else if (currentWebView.getSettings().getJavaScriptEnabled()) { // JavaScript is still enabled.
1051 Snackbar.make(findViewById(R.id.webviewpager), R.string.first_party_cookies_disabled, Snackbar.LENGTH_SHORT).show();
1052 } else { // Privacy mode.
1053 Snackbar.make(findViewById(R.id.webviewpager), R.string.privacy_mode, Snackbar.LENGTH_SHORT).show();
1056 // Reload the current WebView.
1057 currentWebView.reload();
1059 // Consume the event.
1062 case R.id.toggle_third_party_cookies:
1063 if (Build.VERSION.SDK_INT >= 21) {
1064 // Switch the status of thirdPartyCookiesEnabled.
1065 cookieManager.setAcceptThirdPartyCookies(currentWebView, !cookieManager.acceptThirdPartyCookies(currentWebView));
1067 // Update the menu checkbox.
1068 menuItem.setChecked(cookieManager.acceptThirdPartyCookies(currentWebView));
1070 // Display a snackbar.
1071 if (cookieManager.acceptThirdPartyCookies(currentWebView)) {
1072 Snackbar.make(findViewById(R.id.webviewpager), R.string.third_party_cookies_enabled, Snackbar.LENGTH_SHORT).show();
1074 Snackbar.make(findViewById(R.id.webviewpager), R.string.third_party_cookies_disabled, Snackbar.LENGTH_SHORT).show();
1077 // Reload the current WebView.
1078 currentWebView.reload();
1079 } // Else do nothing because SDK < 21.
1081 // Consume the event.
1084 case R.id.toggle_dom_storage:
1085 // Toggle the status of domStorageEnabled.
1086 currentWebView.getSettings().setDomStorageEnabled(!currentWebView.getSettings().getDomStorageEnabled());
1088 // Update the menu checkbox.
1089 menuItem.setChecked(currentWebView.getSettings().getDomStorageEnabled());
1091 // Update the privacy icon. `true` refreshes the app bar icons.
1092 updatePrivacyIcons(true);
1094 // Display a snackbar.
1095 if (currentWebView.getSettings().getDomStorageEnabled()) {
1096 Snackbar.make(findViewById(R.id.webviewpager), R.string.dom_storage_enabled, Snackbar.LENGTH_SHORT).show();
1098 Snackbar.make(findViewById(R.id.webviewpager), R.string.dom_storage_disabled, Snackbar.LENGTH_SHORT).show();
1101 // Reload the current WebView.
1102 currentWebView.reload();
1104 // Consume the event.
1107 // Form data can be removed once the minimum API >= 26.
1108 case R.id.toggle_save_form_data:
1109 // Switch the status of saveFormDataEnabled.
1110 currentWebView.getSettings().setSaveFormData(!currentWebView.getSettings().getSaveFormData());
1112 // Update the menu checkbox.
1113 menuItem.setChecked(currentWebView.getSettings().getSaveFormData());
1115 // Display a snackbar.
1116 if (currentWebView.getSettings().getSaveFormData()) {
1117 Snackbar.make(findViewById(R.id.webviewpager), R.string.form_data_enabled, Snackbar.LENGTH_SHORT).show();
1119 Snackbar.make(findViewById(R.id.webviewpager), R.string.form_data_disabled, Snackbar.LENGTH_SHORT).show();
1122 // Update the privacy icon. `true` runs `invalidateOptionsMenu` as the last step.
1123 updatePrivacyIcons(true);
1125 // Reload the current WebView.
1126 currentWebView.reload();
1128 // Consume the event.
1131 case R.id.clear_cookies:
1132 Snackbar.make(findViewById(R.id.webviewpager), R.string.cookies_deleted, Snackbar.LENGTH_LONG)
1133 .setAction(R.string.undo, v -> {
1134 // Do nothing because everything will be handled by `onDismissed()` below.
1136 .addCallback(new Snackbar.Callback() {
1137 @SuppressLint("SwitchIntDef") // Ignore the lint warning about not handling the other possible events as they are covered by `default:`.
1139 public void onDismissed(Snackbar snackbar, int event) {
1140 if (event != Snackbar.Callback.DISMISS_EVENT_ACTION) { // The snackbar was dismissed without the undo button being pushed.
1141 // Delete the cookies, which command varies by SDK.
1142 if (Build.VERSION.SDK_INT < 21) {
1143 cookieManager.removeAllCookie();
1145 cookieManager.removeAllCookies(null);
1152 // Consume the event.
1155 case R.id.clear_dom_storage:
1156 Snackbar.make(findViewById(R.id.webviewpager), R.string.dom_storage_deleted, Snackbar.LENGTH_LONG)
1157 .setAction(R.string.undo, v -> {
1158 // Do nothing because everything will be handled by `onDismissed()` below.
1160 .addCallback(new Snackbar.Callback() {
1161 @SuppressLint("SwitchIntDef") // Ignore the lint warning about not handling the other possible events as they are covered by `default:`.
1163 public void onDismissed(Snackbar snackbar, int event) {
1164 if (event != Snackbar.Callback.DISMISS_EVENT_ACTION) { // The snackbar was dismissed without the undo button being pushed.
1165 // Delete the DOM Storage.
1166 WebStorage webStorage = WebStorage.getInstance();
1167 webStorage.deleteAllData();
1169 // Initialize a handler to manually delete the DOM storage files and directories.
1170 Handler deleteDomStorageHandler = new Handler();
1172 // Setup a runnable to manually delete the DOM storage files and directories.
1173 Runnable deleteDomStorageRunnable = () -> {
1175 // Get a handle for the runtime.
1176 Runtime runtime = Runtime.getRuntime();
1178 // Get the application's private data directory, which will be something like `/data/user/0/com.stoutner.privacybrowser.standard`,
1179 // which links to `/data/data/com.stoutner.privacybrowser.standard`.
1180 String privateDataDirectoryString = getApplicationInfo().dataDir;
1182 // A string array must be used because the directory contains a space and `Runtime.exec` will otherwise not escape the string correctly.
1183 Process deleteLocalStorageProcess = runtime.exec(new String[]{"rm", "-rf", privateDataDirectoryString + "/app_webview/Local Storage/"});
1185 // Multiple commands must be used because `Runtime.exec()` does not like `*`.
1186 Process deleteIndexProcess = runtime.exec("rm -rf " + privateDataDirectoryString + "/app_webview/IndexedDB");
1187 Process deleteQuotaManagerProcess = runtime.exec("rm -f " + privateDataDirectoryString + "/app_webview/QuotaManager");
1188 Process deleteQuotaManagerJournalProcess = runtime.exec("rm -f " + privateDataDirectoryString + "/app_webview/QuotaManager-journal");
1189 Process deleteDatabasesProcess = runtime.exec("rm -rf " + privateDataDirectoryString + "/app_webview/databases");
1191 // Wait for the processes to finish.
1192 deleteLocalStorageProcess.waitFor();
1193 deleteIndexProcess.waitFor();
1194 deleteQuotaManagerProcess.waitFor();
1195 deleteQuotaManagerJournalProcess.waitFor();
1196 deleteDatabasesProcess.waitFor();
1197 } catch (Exception exception) {
1198 // Do nothing if an error is thrown.
1202 // Manually delete the DOM storage files after 200 milliseconds.
1203 deleteDomStorageHandler.postDelayed(deleteDomStorageRunnable, 200);
1209 // Consume the event.
1212 // Form data can be remove once the minimum API >= 26.
1213 case R.id.clear_form_data:
1214 Snackbar.make(findViewById(R.id.webviewpager), R.string.form_data_deleted, Snackbar.LENGTH_LONG)
1215 .setAction(R.string.undo, v -> {
1216 // Do nothing because everything will be handled by `onDismissed()` below.
1218 .addCallback(new Snackbar.Callback() {
1219 @SuppressLint("SwitchIntDef") // Ignore the lint warning about not handling the other possible events as they are covered by `default:`.
1221 public void onDismissed(Snackbar snackbar, int event) {
1222 if (event != Snackbar.Callback.DISMISS_EVENT_ACTION) { // The snackbar was dismissed without the undo button being pushed.
1223 // Delete the form data.
1224 WebViewDatabase mainWebViewDatabase = WebViewDatabase.getInstance(getApplicationContext());
1225 mainWebViewDatabase.clearFormData();
1231 // Consume the event.
1235 // Toggle the EasyList status.
1236 currentWebView.enableBlocklist(NestedScrollWebView.EASYLIST, !currentWebView.isBlocklistEnabled(NestedScrollWebView.EASYLIST));
1238 // Update the menu checkbox.
1239 menuItem.setChecked(currentWebView.isBlocklistEnabled(NestedScrollWebView.EASYLIST));
1241 // Reload the current WebView.
1242 currentWebView.reload();
1244 // Consume the event.
1247 case R.id.easyprivacy:
1248 // Toggle the EasyPrivacy status.
1249 currentWebView.enableBlocklist(NestedScrollWebView.EASYPRIVACY, !currentWebView.isBlocklistEnabled(NestedScrollWebView.EASYPRIVACY));
1251 // Update the menu checkbox.
1252 menuItem.setChecked(currentWebView.isBlocklistEnabled(NestedScrollWebView.EASYPRIVACY));
1254 // Reload the current WebView.
1255 currentWebView.reload();
1257 // Consume the event.
1260 case R.id.fanboys_annoyance_list:
1261 // Toggle Fanboy's Annoyance List status.
1262 currentWebView.enableBlocklist(NestedScrollWebView.FANBOYS_ANNOYANCE_LIST, !currentWebView.isBlocklistEnabled(NestedScrollWebView.FANBOYS_ANNOYANCE_LIST));
1264 // Update the menu checkbox.
1265 menuItem.setChecked(currentWebView.isBlocklistEnabled(NestedScrollWebView.FANBOYS_ANNOYANCE_LIST));
1267 // Update the staus of Fanboy's Social Blocking List.
1268 MenuItem fanboysSocialBlockingListMenuItem = optionsMenu.findItem(R.id.fanboys_social_blocking_list);
1269 fanboysSocialBlockingListMenuItem.setEnabled(!currentWebView.isBlocklistEnabled(NestedScrollWebView.FANBOYS_ANNOYANCE_LIST));
1271 // Reload the current WebView.
1272 currentWebView.reload();
1274 // Consume the event.
1277 case R.id.fanboys_social_blocking_list:
1278 // Toggle Fanboy's Social Blocking List status.
1279 currentWebView.enableBlocklist(NestedScrollWebView.FANBOYS_SOCIAL_BLOCKING_LIST, !currentWebView.isBlocklistEnabled(NestedScrollWebView.FANBOYS_SOCIAL_BLOCKING_LIST));
1281 // Update the menu checkbox.
1282 menuItem.setChecked(currentWebView.isBlocklistEnabled(NestedScrollWebView.FANBOYS_SOCIAL_BLOCKING_LIST));
1284 // Reload the current WebView.
1285 currentWebView.reload();
1287 // Consume the event.
1290 case R.id.ultralist:
1291 // Toggle the UltraList status.
1292 currentWebView.enableBlocklist(NestedScrollWebView.ULTRALIST, !currentWebView.isBlocklistEnabled(NestedScrollWebView.ULTRALIST));
1294 // Update the menu checkbox.
1295 menuItem.setChecked(currentWebView.isBlocklistEnabled(NestedScrollWebView.ULTRALIST));
1297 // Reload the current WebView.
1298 currentWebView.reload();
1300 // Consume the event.
1303 case R.id.ultraprivacy:
1304 // Toggle the UltraPrivacy status.
1305 currentWebView.enableBlocklist(NestedScrollWebView.ULTRAPRIVACY, !currentWebView.isBlocklistEnabled(NestedScrollWebView.ULTRAPRIVACY));
1307 // Update the menu checkbox.
1308 menuItem.setChecked(currentWebView.isBlocklistEnabled(NestedScrollWebView.ULTRAPRIVACY));
1310 // Reload the current WebView.
1311 currentWebView.reload();
1313 // Consume the event.
1316 case R.id.block_all_third_party_requests:
1317 //Toggle the third-party requests blocker status.
1318 currentWebView.enableBlocklist(NestedScrollWebView.THIRD_PARTY_REQUESTS, !currentWebView.isBlocklistEnabled(NestedScrollWebView.THIRD_PARTY_REQUESTS));
1320 // Update the menu checkbox.
1321 menuItem.setChecked(currentWebView.isBlocklistEnabled(NestedScrollWebView.THIRD_PARTY_REQUESTS));
1323 // Reload the current WebView.
1324 currentWebView.reload();
1326 // Consume the event.
1329 case R.id.user_agent_privacy_browser:
1330 // Update the user agent.
1331 currentWebView.getSettings().setUserAgentString(getResources().getStringArray(R.array.user_agent_data)[0]);
1333 // Reload the current WebView.
1334 currentWebView.reload();
1336 // Consume the event.
1339 case R.id.user_agent_webview_default:
1340 // Update the user agent.
1341 currentWebView.getSettings().setUserAgentString("");
1343 // Reload the current WebView.
1344 currentWebView.reload();
1346 // Consume the event.
1349 case R.id.user_agent_firefox_on_android:
1350 // Update the user agent.
1351 currentWebView.getSettings().setUserAgentString(getResources().getStringArray(R.array.user_agent_data)[2]);
1353 // Reload the current WebView.
1354 currentWebView.reload();
1356 // Consume the event.
1359 case R.id.user_agent_chrome_on_android:
1360 // Update the user agent.
1361 currentWebView.getSettings().setUserAgentString(getResources().getStringArray(R.array.user_agent_data)[3]);
1363 // Reload the current WebView.
1364 currentWebView.reload();
1366 // Consume the event.
1369 case R.id.user_agent_safari_on_ios:
1370 // Update the user agent.
1371 currentWebView.getSettings().setUserAgentString(getResources().getStringArray(R.array.user_agent_data)[4]);
1373 // Reload the current WebView.
1374 currentWebView.reload();
1376 // Consume the event.
1379 case R.id.user_agent_firefox_on_linux:
1380 // Update the user agent.
1381 currentWebView.getSettings().setUserAgentString(getResources().getStringArray(R.array.user_agent_data)[5]);
1383 // Reload the current WebView.
1384 currentWebView.reload();
1386 // Consume the event.
1389 case R.id.user_agent_chromium_on_linux:
1390 // Update the user agent.
1391 currentWebView.getSettings().setUserAgentString(getResources().getStringArray(R.array.user_agent_data)[6]);
1393 // Reload the current WebView.
1394 currentWebView.reload();
1396 // Consume the event.
1399 case R.id.user_agent_firefox_on_windows:
1400 // Update the user agent.
1401 currentWebView.getSettings().setUserAgentString(getResources().getStringArray(R.array.user_agent_data)[7]);
1403 // Reload the current WebView.
1404 currentWebView.reload();
1406 // Consume the event.
1409 case R.id.user_agent_chrome_on_windows:
1410 // Update the user agent.
1411 currentWebView.getSettings().setUserAgentString(getResources().getStringArray(R.array.user_agent_data)[8]);
1413 // Reload the current WebView.
1414 currentWebView.reload();
1416 // Consume the event.
1419 case R.id.user_agent_edge_on_windows:
1420 // Update the user agent.
1421 currentWebView.getSettings().setUserAgentString(getResources().getStringArray(R.array.user_agent_data)[9]);
1423 // Reload the current WebView.
1424 currentWebView.reload();
1426 // Consume the event.
1429 case R.id.user_agent_internet_explorer_on_windows:
1430 // Update the user agent.
1431 currentWebView.getSettings().setUserAgentString(getResources().getStringArray(R.array.user_agent_data)[10]);
1433 // Reload the current WebView.
1434 currentWebView.reload();
1436 // Consume the event.
1439 case R.id.user_agent_safari_on_macos:
1440 // Update the user agent.
1441 currentWebView.getSettings().setUserAgentString(getResources().getStringArray(R.array.user_agent_data)[11]);
1443 // Reload the current WebView.
1444 currentWebView.reload();
1446 // Consume the event.
1449 case R.id.user_agent_custom:
1450 // Update the user agent.
1451 currentWebView.getSettings().setUserAgentString(sharedPreferences.getString("custom_user_agent", getString(R.string.custom_user_agent_default_value)));
1453 // Reload the current WebView.
1454 currentWebView.reload();
1456 // Consume the event.
1459 case R.id.font_size:
1460 // Instantiate the font size dialog.
1461 DialogFragment fontSizeDialogFragment = FontSizeDialog.displayDialog(currentWebView.getSettings().getTextZoom());
1463 // Show the font size dialog.
1464 fontSizeDialogFragment.show(getSupportFragmentManager(), getString(R.string.font_size));
1466 // Consume the event.
1469 case R.id.swipe_to_refresh:
1470 // Toggle the stored status of swipe to refresh.
1471 currentWebView.setSwipeToRefresh(!currentWebView.getSwipeToRefresh());
1473 // Get a handle for the swipe refresh layout.
1474 SwipeRefreshLayout swipeRefreshLayout = findViewById(R.id.swiperefreshlayout);
1476 // Update the swipe refresh layout.
1477 if (currentWebView.getSwipeToRefresh()) { // Swipe to refresh is enabled.
1478 // Only enable the swipe refresh layout if the WebView is scrolled to the top. It is updated every time the scroll changes.
1479 swipeRefreshLayout.setEnabled(currentWebView.getY() == 0);
1480 } else { // Swipe to refresh is disabled.
1481 // Disable the swipe refresh layout.
1482 swipeRefreshLayout.setEnabled(false);
1485 // Consume the event.
1488 case R.id.wide_viewport:
1489 // Toggle the viewport.
1490 currentWebView.getSettings().setUseWideViewPort(!currentWebView.getSettings().getUseWideViewPort());
1492 // Consume the event.
1495 case R.id.display_images:
1496 if (currentWebView.getSettings().getLoadsImagesAutomatically()) { // Images are currently loaded automatically.
1497 // Disable loading of images.
1498 currentWebView.getSettings().setLoadsImagesAutomatically(false);
1500 // Reload the website to remove existing images.
1501 currentWebView.reload();
1502 } else { // Images are not currently loaded automatically.
1503 // Enable loading of images. Missing images will be loaded without the need for a reload.
1504 currentWebView.getSettings().setLoadsImagesAutomatically(true);
1507 // Consume the event.
1510 case R.id.night_mode:
1511 // Toggle night mode.
1512 currentWebView.setNightMode(!currentWebView.getNightMode());
1514 // Enable or disable JavaScript according to night mode, the global preference, and any domain settings.
1515 if (currentWebView.getNightMode()) { // Night mode is enabled, which requires JavaScript.
1516 // Enable JavaScript.
1517 currentWebView.getSettings().setJavaScriptEnabled(true);
1518 } else if (currentWebView.getDomainSettingsApplied()) { // Night mode is disabled and domain settings are applied. Set JavaScript according to the domain settings.
1519 // Apply the JavaScript preference that was stored the last time domain settings were loaded.
1520 currentWebView.getSettings().setJavaScriptEnabled(currentWebView.getDomainSettingsJavaScriptEnabled());
1521 } else { // Night mode is disabled and domain settings are not applied. Set JavaScript according to the global preference.
1522 // Apply the JavaScript preference.
1523 currentWebView.getSettings().setJavaScriptEnabled(sharedPreferences.getBoolean("javascript", false));
1526 // Update the privacy icons.
1527 updatePrivacyIcons(false);
1529 // Reload the website.
1530 currentWebView.reload();
1532 // Consume the event.
1535 case R.id.find_on_page:
1536 // Get a handle for the views.
1537 Toolbar toolbar = findViewById(R.id.toolbar);
1538 LinearLayout findOnPageLinearLayout = findViewById(R.id.find_on_page_linearlayout);
1539 EditText findOnPageEditText = findViewById(R.id.find_on_page_edittext);
1541 // Set the minimum height of the find on page linear layout to match the toolbar.
1542 findOnPageLinearLayout.setMinimumHeight(toolbar.getHeight());
1544 // Hide the toolbar.
1545 toolbar.setVisibility(View.GONE);
1547 // Show the find on page linear layout.
1548 findOnPageLinearLayout.setVisibility(View.VISIBLE);
1550 // Display the keyboard. The app must wait 200 ms before running the command to work around a bug in Android.
1551 // http://stackoverflow.com/questions/5520085/android-show-softkeyboard-with-showsoftinput-is-not-working
1552 findOnPageEditText.postDelayed(() -> {
1553 // Set the focus on `findOnPageEditText`.
1554 findOnPageEditText.requestFocus();
1556 // Get a handle for the input method manager.
1557 InputMethodManager inputMethodManager = (InputMethodManager) getSystemService(Context.INPUT_METHOD_SERVICE);
1559 // Remove the lint warning below that the input method manager might be null.
1560 assert inputMethodManager != null;
1562 // Display the keyboard. `0` sets no input flags.
1563 inputMethodManager.showSoftInput(findOnPageEditText, 0);
1566 // Consume the event.
1570 // Get a print manager instance.
1571 PrintManager printManager = (PrintManager) getSystemService(Context.PRINT_SERVICE);
1573 // Remove the lint error below that print manager might be null.
1574 assert printManager != null;
1576 // Create a print document adapter from the current WebView.
1577 PrintDocumentAdapter printDocumentAdapter = currentWebView.createPrintDocumentAdapter();
1579 // Print the document.
1580 printManager.print(getString(R.string.privacy_browser_web_page), printDocumentAdapter, null);
1582 // Consume the event.
1585 case R.id.save_as_image:
1586 // Instantiate the save webpage image dialog.
1587 DialogFragment saveWebpageImageDialogFragment = new SaveWebpageImageDialog();
1589 // Show the save webpage image dialog.
1590 saveWebpageImageDialogFragment.show(getSupportFragmentManager(), getString(R.string.save_as_image));
1592 // Consume the event.
1595 case R.id.add_to_homescreen:
1596 // Instantiate the create home screen shortcut dialog.
1597 DialogFragment createHomeScreenShortcutDialogFragment = CreateHomeScreenShortcutDialog.createDialog(currentWebView.getTitle(), currentWebView.getUrl(),
1598 currentWebView.getFavoriteOrDefaultIcon());
1600 // Show the create home screen shortcut dialog.
1601 createHomeScreenShortcutDialogFragment.show(getSupportFragmentManager(), getString(R.string.create_shortcut));
1603 // Consume the event.
1606 case R.id.view_source:
1607 // Create an intent to launch the view source activity.
1608 Intent viewSourceIntent = new Intent(this, ViewSourceActivity.class);
1610 // Add the variables to the intent.
1611 viewSourceIntent.putExtra("user_agent", currentWebView.getSettings().getUserAgentString());
1612 viewSourceIntent.putExtra("current_url", currentWebView.getUrl());
1615 startActivity(viewSourceIntent);
1617 // Consume the event.
1620 case R.id.share_url:
1621 // Setup the share string.
1622 String shareString = currentWebView.getTitle() + " – " + currentWebView.getUrl();
1624 // Create the share intent.
1625 Intent shareIntent = new Intent(Intent.ACTION_SEND);
1626 shareIntent.putExtra(Intent.EXTRA_TEXT, shareString);
1627 shareIntent.setType("text/plain");
1630 startActivity(Intent.createChooser(shareIntent, getString(R.string.share_url)));
1632 // Consume the event.
1635 case R.id.open_with_app:
1636 // Open the URL with an outside app.
1637 openWithApp(currentWebView.getUrl());
1639 // Consume the event.
1642 case R.id.open_with_browser:
1643 // Open the URL with an outside browser.
1644 openWithBrowser(currentWebView.getUrl());
1646 // Consume the event.
1649 case R.id.proxy_through_orbot:
1650 // Toggle the proxy through Orbot variable.
1651 proxyThroughOrbot = !proxyThroughOrbot;
1653 // Apply the proxy through Orbot settings.
1654 applyProxyThroughOrbot(true);
1656 // Consume the event.
1660 if (menuItem.getTitle().equals(getString(R.string.refresh))) { // The refresh button was pushed.
1661 // Reload the current WebView.
1662 currentWebView.reload();
1663 } else { // The stop button was pushed.
1664 // Stop the loading of the WebView.
1665 currentWebView.stopLoading();
1668 // Consume the event.
1671 case R.id.ad_consent:
1672 // Instantiate the ad consent dialog.
1673 DialogFragment adConsentDialogFragment = new AdConsentDialog();
1675 // Display the ad consent dialog.
1676 adConsentDialogFragment.show(getSupportFragmentManager(), getString(R.string.ad_consent));
1678 // Consume the event.
1682 // Don't consume the event.
1683 return super.onOptionsItemSelected(menuItem);
1687 // removeAllCookies is deprecated, but it is required for API < 21.
1689 public boolean onNavigationItemSelected(@NonNull MenuItem menuItem) {
1690 // Get the menu item ID.
1691 int menuItemId = menuItem.getItemId();
1693 // Get a handle for the shared preferences.
1694 SharedPreferences sharedPreferences = PreferenceManager.getDefaultSharedPreferences(this);
1696 // Run the commands that correspond to the selected menu item.
1697 switch (menuItemId) {
1698 case R.id.clear_and_exit:
1699 // Clear and exit Privacy Browser.
1704 // Select the homepage based on the proxy through Orbot status.
1705 if (proxyThroughOrbot) {
1706 // Load the Tor homepage.
1707 loadUrl(sharedPreferences.getString("tor_homepage", getString(R.string.tor_homepage_default_value)));
1709 // Load the normal homepage.
1710 loadUrl(sharedPreferences.getString("homepage", getString(R.string.homepage_default_value)));
1715 if (currentWebView.canGoBack()) {
1716 // Get the current web back forward list.
1717 WebBackForwardList webBackForwardList = currentWebView.copyBackForwardList();
1719 // Get the previous entry URL.
1720 String previousUrl = webBackForwardList.getItemAtIndex(webBackForwardList.getCurrentIndex() - 1).getUrl();
1722 // Apply the domain settings.
1723 applyDomainSettings(currentWebView, previousUrl, false, false);
1725 // Load the previous website in the history.
1726 currentWebView.goBack();
1731 if (currentWebView.canGoForward()) {
1732 // Get the current web back forward list.
1733 WebBackForwardList webBackForwardList = currentWebView.copyBackForwardList();
1735 // Get the next entry URL.
1736 String nextUrl = webBackForwardList.getItemAtIndex(webBackForwardList.getCurrentIndex() + 1).getUrl();
1738 // Apply the domain settings.
1739 applyDomainSettings(currentWebView, nextUrl, false, false);
1741 // Load the next website in the history.
1742 currentWebView.goForward();
1747 // Instantiate the URL history dialog.
1748 DialogFragment urlHistoryDialogFragment = UrlHistoryDialog.loadBackForwardList(currentWebView.getWebViewFragmentId());
1750 // Show the URL history dialog.
1751 urlHistoryDialogFragment.show(getSupportFragmentManager(), getString(R.string.history));
1755 // Populate the resource requests.
1756 RequestsActivity.resourceRequests = currentWebView.getResourceRequests();
1758 // Create an intent to launch the Requests activity.
1759 Intent requestsIntent = new Intent(this, RequestsActivity.class);
1761 // Add the block third-party requests status to the intent.
1762 requestsIntent.putExtra("block_all_third_party_requests", currentWebView.isBlocklistEnabled(NestedScrollWebView.THIRD_PARTY_REQUESTS));
1765 startActivity(requestsIntent);
1768 case R.id.downloads:
1769 // Launch the system Download Manager.
1770 Intent downloadManagerIntent = new Intent(DownloadManager.ACTION_VIEW_DOWNLOADS);
1772 // Launch as a new task so that Download Manager and Privacy Browser show as separate windows in the recent tasks list.
1773 downloadManagerIntent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
1775 startActivity(downloadManagerIntent);
1779 // Set the flag to reapply the domain settings on restart when returning from Domain Settings.
1780 reapplyDomainSettingsOnRestart = true;
1782 // Launch the domains activity.
1783 Intent domainsIntent = new Intent(this, DomainsActivity.class);
1785 // Add the extra information to the intent.
1786 domainsIntent.putExtra("current_url", currentWebView.getUrl());
1788 // Get the current certificate.
1789 SslCertificate sslCertificate = currentWebView.getCertificate();
1791 // Check to see if the SSL certificate is populated.
1792 if (sslCertificate != null) {
1793 // Extract the certificate to strings.
1794 String issuedToCName = sslCertificate.getIssuedTo().getCName();
1795 String issuedToOName = sslCertificate.getIssuedTo().getOName();
1796 String issuedToUName = sslCertificate.getIssuedTo().getUName();
1797 String issuedByCName = sslCertificate.getIssuedBy().getCName();
1798 String issuedByOName = sslCertificate.getIssuedBy().getOName();
1799 String issuedByUName = sslCertificate.getIssuedBy().getUName();
1800 long startDateLong = sslCertificate.getValidNotBeforeDate().getTime();
1801 long endDateLong = sslCertificate.getValidNotAfterDate().getTime();
1803 // Add the certificate to the intent.
1804 domainsIntent.putExtra("ssl_issued_to_cname", issuedToCName);
1805 domainsIntent.putExtra("ssl_issued_to_oname", issuedToOName);
1806 domainsIntent.putExtra("ssl_issued_to_uname", issuedToUName);
1807 domainsIntent.putExtra("ssl_issued_by_cname", issuedByCName);
1808 domainsIntent.putExtra("ssl_issued_by_oname", issuedByOName);
1809 domainsIntent.putExtra("ssl_issued_by_uname", issuedByUName);
1810 domainsIntent.putExtra("ssl_start_date", startDateLong);
1811 domainsIntent.putExtra("ssl_end_date", endDateLong);
1814 // Check to see if the current IP addresses have been received.
1815 if (currentWebView.hasCurrentIpAddresses()) {
1816 // Add the current IP addresses to the intent.
1817 domainsIntent.putExtra("current_ip_addresses", currentWebView.getCurrentIpAddresses());
1821 startActivity(domainsIntent);
1825 // Set the flag to reapply app settings on restart when returning from Settings.
1826 reapplyAppSettingsOnRestart = true;
1828 // Set the flag to reapply the domain settings on restart when returning from Settings.
1829 reapplyDomainSettingsOnRestart = true;
1831 // Launch the settings activity.
1832 Intent settingsIntent = new Intent(this, SettingsActivity.class);
1833 startActivity(settingsIntent);
1836 case R.id.import_export:
1837 // Launch the import/export activity.
1838 Intent importExportIntent = new Intent (this, ImportExportActivity.class);
1839 startActivity(importExportIntent);
1843 // Launch the logcat activity.
1844 Intent logcatIntent = new Intent(this, LogcatActivity.class);
1845 startActivity(logcatIntent);
1849 // Launch `GuideActivity`.
1850 Intent guideIntent = new Intent(this, GuideActivity.class);
1851 startActivity(guideIntent);
1855 // Create an intent to launch the about activity.
1856 Intent aboutIntent = new Intent(this, AboutActivity.class);
1858 // Create a string array for the blocklist versions.
1859 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],
1860 ultraList.get(0).get(0)[0], ultraPrivacy.get(0).get(0)[0]};
1862 // Add the blocklist versions to the intent.
1863 aboutIntent.putExtra("blocklist_versions", blocklistVersions);
1866 startActivity(aboutIntent);
1870 // Get a handle for the drawer layout.
1871 DrawerLayout drawerLayout = findViewById(R.id.drawerlayout);
1873 // Close the navigation drawer.
1874 drawerLayout.closeDrawer(GravityCompat.START);
1879 public void onPostCreate(Bundle savedInstanceState) {
1880 // Run the default commands.
1881 super.onPostCreate(savedInstanceState);
1883 // Sync the state of the DrawerToggle after the default `onRestoreInstanceState()` has finished. This creates the navigation drawer icon.
1884 actionBarDrawerToggle.syncState();
1888 public void onConfigurationChanged(@NonNull Configuration newConfig) {
1889 // Run the default commands.
1890 super.onConfigurationChanged(newConfig);
1892 // Get the status bar pixel size.
1893 int statusBarResourceId = getResources().getIdentifier("status_bar_height", "dimen", "android");
1894 int statusBarPixelSize = getResources().getDimensionPixelSize(statusBarResourceId);
1896 // Get the resource density.
1897 float screenDensity = getResources().getDisplayMetrics().density;
1899 // Recalculate the drawer header padding.
1900 drawerHeaderPaddingLeftAndRight = (int) (15 * screenDensity);
1901 drawerHeaderPaddingTop = statusBarPixelSize + (int) (4 * screenDensity);
1902 drawerHeaderPaddingBottom = (int) (8 * screenDensity);
1904 // Reload the ad for the free flavor if not in full screen mode.
1905 if (BuildConfig.FLAVOR.contentEquals("free") && !inFullScreenBrowsingMode) {
1906 // Reload the ad. The AdView is destroyed and recreated, which changes the ID, every time it is reloaded to handle possible rotations.
1907 AdHelper.loadAd(findViewById(R.id.adview), getApplicationContext(), getString(R.string.ad_unit_id));
1910 // `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:
1911 // https://code.google.com/p/android/issues/detail?id=20493#c8
1912 // ActivityCompat.invalidateOptionsMenu(this);
1916 public void onCreateContextMenu(ContextMenu menu, View view, ContextMenu.ContextMenuInfo menuInfo) {
1917 // Store the hit test result.
1918 final WebView.HitTestResult hitTestResult = currentWebView.getHitTestResult();
1920 // Define the URL strings.
1921 final String imageUrl;
1922 final String linkUrl;
1924 // Get handles for the system managers.
1925 final ClipboardManager clipboardManager = (ClipboardManager) getSystemService(CLIPBOARD_SERVICE);
1926 FragmentManager fragmentManager = getSupportFragmentManager();
1927 SharedPreferences sharedPreferences = PreferenceManager.getDefaultSharedPreferences(this);
1929 // Remove the lint errors below that the clipboard manager might be null.
1930 assert clipboardManager != null;
1932 // Process the link according to the type.
1933 switch (hitTestResult.getType()) {
1934 // `SRC_ANCHOR_TYPE` is a link.
1935 case WebView.HitTestResult.SRC_ANCHOR_TYPE:
1936 // Get the target URL.
1937 linkUrl = hitTestResult.getExtra();
1939 // Set the target URL as the title of the `ContextMenu`.
1940 menu.setHeaderTitle(linkUrl);
1942 // Add an Open in New Tab entry.
1943 menu.add(R.string.open_in_new_tab).setOnMenuItemClickListener((MenuItem item) -> {
1944 // Load the link URL in a new tab and move to it.
1945 addNewTab(linkUrl, true);
1947 // Consume the event.
1951 // Add an Open in Background entry.
1952 menu.add(R.string.open_in_background).setOnMenuItemClickListener((MenuItem item) -> {
1953 // Load the link URL in a new tab but do not move to it.
1954 addNewTab(linkUrl, false);
1956 // Consume the event.
1960 // Add an Open with App entry.
1961 menu.add(R.string.open_with_app).setOnMenuItemClickListener((MenuItem item) -> {
1962 openWithApp(linkUrl);
1964 // Consume the event.
1968 // Add an Open with Browser entry.
1969 menu.add(R.string.open_with_browser).setOnMenuItemClickListener((MenuItem item) -> {
1970 openWithBrowser(linkUrl);
1972 // Consume the event.
1976 // Add a Copy URL entry.
1977 menu.add(R.string.copy_url).setOnMenuItemClickListener((MenuItem item) -> {
1978 // Save the link URL in a `ClipData`.
1979 ClipData srcAnchorTypeClipData = ClipData.newPlainText(getString(R.string.url), linkUrl);
1981 // Set the `ClipData` as the clipboard's primary clip.
1982 clipboardManager.setPrimaryClip(srcAnchorTypeClipData);
1984 // Consume the event.
1988 // Add a Download URL entry.
1989 menu.add(R.string.download_url).setOnMenuItemClickListener((MenuItem item) -> {
1990 // Check if the download should be processed by an external app.
1991 if (sharedPreferences.getBoolean("download_with_external_app", false)) { // Download with an external app.
1992 openUrlWithExternalApp(linkUrl);
1993 } else { // Download with Android's download manager.
1994 // Check to see if the storage permission has already been granted.
1995 if (ContextCompat.checkSelfPermission(this, Manifest.permission.WRITE_EXTERNAL_STORAGE) == PackageManager.PERMISSION_DENIED) { // The storage permission needs to be requested.
1996 // Store the variables for future use by `onRequestPermissionsResult()`.
1997 downloadUrl = linkUrl;
1998 downloadContentDisposition = "none";
1999 downloadContentLength = -1;
2001 // Show a dialog if the user has previously denied the permission.
2002 if (ActivityCompat.shouldShowRequestPermissionRationale(this, Manifest.permission.WRITE_EXTERNAL_STORAGE)) { // Show a dialog explaining the request first.
2003 // Instantiate the download location permission alert dialog and set the download type to DOWNLOAD_FILE.
2004 DialogFragment downloadLocationPermissionDialogFragment = DownloadLocationPermissionDialog.downloadType(DownloadLocationPermissionDialog.DOWNLOAD_FILE);
2006 // Show the download location permission alert dialog. The permission will be requested when the the dialog is closed.
2007 downloadLocationPermissionDialogFragment.show(fragmentManager, getString(R.string.download_location));
2008 } else { // Show the permission request directly.
2009 // Request the permission. The download dialog will be launched by `onRequestPermissionResult()`.
2010 ActivityCompat.requestPermissions(this, new String[]{Manifest.permission.WRITE_EXTERNAL_STORAGE}, DOWNLOAD_FILE_REQUEST_CODE);
2012 } else { // The storage permission has already been granted.
2013 // Get a handle for the download file alert dialog.
2014 DialogFragment downloadFileDialogFragment = DownloadFileDialog.fromUrl(linkUrl, "none", -1);
2016 // Show the download file alert dialog.
2017 downloadFileDialogFragment.show(fragmentManager, getString(R.string.download));
2021 // Consume the event.
2025 // Add a Cancel entry, which by default closes the context menu.
2026 menu.add(R.string.cancel);
2029 case WebView.HitTestResult.EMAIL_TYPE:
2030 // Get the target URL.
2031 linkUrl = hitTestResult.getExtra();
2033 // Set the target URL as the title of the `ContextMenu`.
2034 menu.setHeaderTitle(linkUrl);
2036 // Add a Write Email entry.
2037 menu.add(R.string.write_email).setOnMenuItemClickListener(item -> {
2038 // Use `ACTION_SENDTO` instead of `ACTION_SEND` so that only email programs are launched.
2039 Intent emailIntent = new Intent(Intent.ACTION_SENDTO);
2041 // Parse the url and set it as the data for the `Intent`.
2042 emailIntent.setData(Uri.parse("mailto:" + linkUrl));
2044 // `FLAG_ACTIVITY_NEW_TASK` opens the email program in a new task instead as part of Privacy Browser.
2045 emailIntent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
2048 startActivity(emailIntent);
2050 // Consume the event.
2054 // Add a Copy Email Address entry.
2055 menu.add(R.string.copy_email_address).setOnMenuItemClickListener(item -> {
2056 // Save the email address in a `ClipData`.
2057 ClipData srcEmailTypeClipData = ClipData.newPlainText(getString(R.string.email_address), linkUrl);
2059 // Set the `ClipData` as the clipboard's primary clip.
2060 clipboardManager.setPrimaryClip(srcEmailTypeClipData);
2062 // Consume the event.
2066 // Add a `Cancel` entry, which by default closes the `ContextMenu`.
2067 menu.add(R.string.cancel);
2070 // `IMAGE_TYPE` is an image.
2071 case WebView.HitTestResult.IMAGE_TYPE:
2072 // Get the image URL.
2073 imageUrl = hitTestResult.getExtra();
2075 // Set the image URL as the title of the context menu.
2076 menu.setHeaderTitle(imageUrl);
2078 // Add an Open in New Tab entry.
2079 menu.add(R.string.open_image_in_new_tab).setOnMenuItemClickListener((MenuItem item) -> {
2080 // Load the image in a new tab.
2081 addNewTab(imageUrl, true);
2083 // Consume the event.
2087 // Add a View Image entry.
2088 menu.add(R.string.view_image).setOnMenuItemClickListener(item -> {
2089 // Load the image in the current tab.
2092 // Consume the event.
2096 // Add a Download Image entry.
2097 menu.add(R.string.download_image).setOnMenuItemClickListener((MenuItem item) -> {
2098 // Check if the download should be processed by an external app.
2099 if (sharedPreferences.getBoolean("download_with_external_app", false)) { // Download with an external app.
2100 openUrlWithExternalApp(imageUrl);
2101 } else { // Download with Android's download manager.
2102 // Check to see if the storage permission has already been granted.
2103 if (ContextCompat.checkSelfPermission(this, Manifest.permission.WRITE_EXTERNAL_STORAGE) == PackageManager.PERMISSION_DENIED) { // The storage permission needs to be requested.
2104 // Store the image URL for use by `onRequestPermissionResult()`.
2105 downloadImageUrl = imageUrl;
2107 // Show a dialog if the user has previously denied the permission.
2108 if (ActivityCompat.shouldShowRequestPermissionRationale(this, Manifest.permission.WRITE_EXTERNAL_STORAGE)) { // Show a dialog explaining the request first.
2109 // Instantiate the download location permission alert dialog and set the download type to DOWNLOAD_IMAGE.
2110 DialogFragment downloadLocationPermissionDialogFragment = DownloadLocationPermissionDialog.downloadType(DownloadLocationPermissionDialog.DOWNLOAD_IMAGE);
2112 // Show the download location permission alert dialog. The permission will be requested when the dialog is closed.
2113 downloadLocationPermissionDialogFragment.show(fragmentManager, getString(R.string.download_location));
2114 } else { // Show the permission request directly.
2115 // Request the permission. The download dialog will be launched by `onRequestPermissionResult()`.
2116 ActivityCompat.requestPermissions(this, new String[]{Manifest.permission.WRITE_EXTERNAL_STORAGE}, DOWNLOAD_IMAGE_REQUEST_CODE);
2118 } else { // The storage permission has already been granted.
2119 // Get a handle for the download image alert dialog.
2120 DialogFragment downloadImageDialogFragment = DownloadImageDialog.imageUrl(imageUrl);
2122 // Show the download image alert dialog.
2123 downloadImageDialogFragment.show(fragmentManager, getString(R.string.download));
2127 // Consume the event.
2131 // Add a Copy URL entry.
2132 menu.add(R.string.copy_url).setOnMenuItemClickListener((MenuItem item) -> {
2133 // Save the image URL in a clip data.
2134 ClipData imageTypeClipData = ClipData.newPlainText(getString(R.string.url), imageUrl);
2136 // Set the clip data as the clipboard's primary clip.
2137 clipboardManager.setPrimaryClip(imageTypeClipData);
2139 // Consume the event.
2143 // Add an Open with App entry.
2144 menu.add(R.string.open_with_app).setOnMenuItemClickListener((MenuItem item) -> {
2145 // Open the image URL with an external app.
2146 openWithApp(imageUrl);
2148 // Consume the event.
2152 // Add an Open with Browser entry.
2153 menu.add(R.string.open_with_browser).setOnMenuItemClickListener((MenuItem item) -> {
2154 // Open the image URL with an external browser.
2155 openWithBrowser(imageUrl);
2157 // Consume the event.
2161 // Add a Cancel entry, which by default closes the context menu.
2162 menu.add(R.string.cancel);
2165 // `SRC_IMAGE_ANCHOR_TYPE` is an image that is also a link.
2166 case WebView.HitTestResult.SRC_IMAGE_ANCHOR_TYPE:
2167 // Get the image URL.
2168 imageUrl = hitTestResult.getExtra();
2170 // Instantiate a handler.
2171 Handler handler = new Handler();
2173 // Get a message from the handler.
2174 Message message = handler.obtainMessage();
2176 // Request the image details from the last touched node be returned in the message.
2177 currentWebView.requestFocusNodeHref(message);
2179 // Get the link URL from the message data.
2180 linkUrl = message.getData().getString("url");
2182 // Set the link URL as the title of the context menu.
2183 menu.setHeaderTitle(linkUrl);
2185 // Add an Open in New Tab entry.
2186 menu.add(R.string.open_in_new_tab).setOnMenuItemClickListener((MenuItem item) -> {
2187 // Load the link URL in a new tab and move to it.
2188 addNewTab(linkUrl, true);
2190 // Consume the event.
2194 // Add an Open in Background entry.
2195 menu.add(R.string.open_in_background).setOnMenuItemClickListener((MenuItem item) -> {
2196 // Lod the link URL in a new tab but do not move to it.
2197 addNewTab(linkUrl, false);
2199 // Consume the event.
2203 // Add an Open Image in New Tab entry.
2204 menu.add(R.string.open_image_in_new_tab).setOnMenuItemClickListener((MenuItem item) -> {
2205 // Load the image in a new tab and move to it.
2206 addNewTab(imageUrl, true);
2208 // Consume the event.
2212 // Add a View Image entry.
2213 menu.add(R.string.view_image).setOnMenuItemClickListener((MenuItem item) -> {
2214 // View the image in the current tab.
2217 // Consume the event.
2221 // Add a Download Image entry.
2222 menu.add(R.string.download_image).setOnMenuItemClickListener((MenuItem item) -> {
2223 // Check if the download should be processed by an external app.
2224 if (sharedPreferences.getBoolean("download_with_external_app", false)) { // Download with an external app.
2225 openUrlWithExternalApp(imageUrl);
2226 } else { // Download with Android's download manager.
2227 // Check to see if the storage permission has already been granted.
2228 if (ContextCompat.checkSelfPermission(this, Manifest.permission.WRITE_EXTERNAL_STORAGE) == PackageManager.PERMISSION_DENIED) { // The storage permission needs to be requested.
2229 // Store the image URL for use by `onRequestPermissionResult()`.
2230 downloadImageUrl = imageUrl;
2232 // Show a dialog if the user has previously denied the permission.
2233 if (ActivityCompat.shouldShowRequestPermissionRationale(this, Manifest.permission.WRITE_EXTERNAL_STORAGE)) { // Show a dialog explaining the request first.
2234 // Instantiate the download location permission alert dialog and set the download type to DOWNLOAD_IMAGE.
2235 DialogFragment downloadLocationPermissionDialogFragment = DownloadLocationPermissionDialog.downloadType(DownloadLocationPermissionDialog.DOWNLOAD_IMAGE);
2237 // Show the download location permission alert dialog. The permission will be requested when the dialog is closed.
2238 downloadLocationPermissionDialogFragment.show(fragmentManager, getString(R.string.download_location));
2239 } else { // Show the permission request directly.
2240 // Request the permission. The download dialog will be launched by `onRequestPermissionResult()`.
2241 ActivityCompat.requestPermissions(this, new String[]{Manifest.permission.WRITE_EXTERNAL_STORAGE}, DOWNLOAD_IMAGE_REQUEST_CODE);
2243 } else { // The storage permission has already been granted.
2244 // Get a handle for the download image alert dialog.
2245 DialogFragment downloadImageDialogFragment = DownloadImageDialog.imageUrl(imageUrl);
2247 // Show the download image alert dialog.
2248 downloadImageDialogFragment.show(fragmentManager, getString(R.string.download));
2252 // Consume the event.
2256 // Add a Copy URL entry.
2257 menu.add(R.string.copy_url).setOnMenuItemClickListener((MenuItem item) -> {
2258 // Save the link URL in a clip data.
2259 ClipData srcImageAnchorTypeClipData = ClipData.newPlainText(getString(R.string.url), linkUrl);
2261 // Set the clip data as the clipboard's primary clip.
2262 clipboardManager.setPrimaryClip(srcImageAnchorTypeClipData);
2264 // Consume the event.
2268 // Add an Open with App entry.
2269 menu.add(R.string.open_with_app).setOnMenuItemClickListener((MenuItem item) -> {
2270 // Open the link URL with an external app.
2271 openWithApp(linkUrl);
2273 // Consume the event.
2277 // Add an Open with Browser entry.
2278 menu.add(R.string.open_with_browser).setOnMenuItemClickListener((MenuItem item) -> {
2279 // Open the link URL with an external browser.
2280 openWithBrowser(linkUrl);
2282 // Consume the event.
2286 // Add a cancel entry, which by default closes the context menu.
2287 menu.add(R.string.cancel);
2293 public void onCreateBookmark(DialogFragment dialogFragment, Bitmap favoriteIconBitmap) {
2294 // Get a handle for the bookmarks list view.
2295 ListView bookmarksListView = findViewById(R.id.bookmarks_drawer_listview);
2298 Dialog dialog = dialogFragment.getDialog();
2300 // Remove the incorrect lint warning below that the dialog might be null.
2301 assert dialog != null;
2303 // Get the views from the dialog fragment.
2304 EditText createBookmarkNameEditText = dialog.findViewById(R.id.create_bookmark_name_edittext);
2305 EditText createBookmarkUrlEditText = dialog.findViewById(R.id.create_bookmark_url_edittext);
2307 // Extract the strings from the edit texts.
2308 String bookmarkNameString = createBookmarkNameEditText.getText().toString();
2309 String bookmarkUrlString = createBookmarkUrlEditText.getText().toString();
2311 // Create a favorite icon byte array output stream.
2312 ByteArrayOutputStream favoriteIconByteArrayOutputStream = new ByteArrayOutputStream();
2314 // Convert the favorite icon bitmap to a byte array. `0` is for lossless compression (the only option for a PNG).
2315 favoriteIconBitmap.compress(Bitmap.CompressFormat.PNG, 0, favoriteIconByteArrayOutputStream);
2317 // Convert the favorite icon byte array stream to a byte array.
2318 byte[] favoriteIconByteArray = favoriteIconByteArrayOutputStream.toByteArray();
2320 // Display the new bookmark below the current items in the (0 indexed) list.
2321 int newBookmarkDisplayOrder = bookmarksListView.getCount();
2323 // Create the bookmark.
2324 bookmarksDatabaseHelper.createBookmark(bookmarkNameString, bookmarkUrlString, currentBookmarksFolder, newBookmarkDisplayOrder, favoriteIconByteArray);
2326 // Update the bookmarks cursor with the current contents of this folder.
2327 bookmarksCursor = bookmarksDatabaseHelper.getBookmarksByDisplayOrder(currentBookmarksFolder);
2329 // Update the list view.
2330 bookmarksCursorAdapter.changeCursor(bookmarksCursor);
2332 // Scroll to the new bookmark.
2333 bookmarksListView.setSelection(newBookmarkDisplayOrder);
2337 public void onCreateBookmarkFolder(DialogFragment dialogFragment, Bitmap favoriteIconBitmap) {
2338 // Get a handle for the bookmarks list view.
2339 ListView bookmarksListView = findViewById(R.id.bookmarks_drawer_listview);
2342 Dialog dialog = dialogFragment.getDialog();
2344 // Remove the incorrect lint warning below that the dialog might be null.
2345 assert dialog != null;
2347 // Get handles for the views in the dialog fragment.
2348 EditText createFolderNameEditText = dialog.findViewById(R.id.create_folder_name_edittext);
2349 RadioButton defaultFolderIconRadioButton = dialog.findViewById(R.id.create_folder_default_icon_radiobutton);
2350 ImageView folderIconImageView = dialog.findViewById(R.id.create_folder_default_icon);
2352 // Get new folder name string.
2353 String folderNameString = createFolderNameEditText.getText().toString();
2355 // Create a folder icon bitmap.
2356 Bitmap folderIconBitmap;
2358 // Set the folder icon bitmap according to the dialog.
2359 if (defaultFolderIconRadioButton.isChecked()) { // Use the default folder icon.
2360 // Get the default folder icon drawable.
2361 Drawable folderIconDrawable = folderIconImageView.getDrawable();
2363 // Convert the folder icon drawable to a bitmap drawable.
2364 BitmapDrawable folderIconBitmapDrawable = (BitmapDrawable) folderIconDrawable;
2366 // Convert the folder icon bitmap drawable to a bitmap.
2367 folderIconBitmap = folderIconBitmapDrawable.getBitmap();
2368 } else { // Use the WebView favorite icon.
2369 // Copy the favorite icon bitmap to the folder icon bitmap.
2370 folderIconBitmap = favoriteIconBitmap;
2373 // Create a folder icon byte array output stream.
2374 ByteArrayOutputStream folderIconByteArrayOutputStream = new ByteArrayOutputStream();
2376 // Convert the folder icon bitmap to a byte array. `0` is for lossless compression (the only option for a PNG).
2377 folderIconBitmap.compress(Bitmap.CompressFormat.PNG, 0, folderIconByteArrayOutputStream);
2379 // Convert the folder icon byte array stream to a byte array.
2380 byte[] folderIconByteArray = folderIconByteArrayOutputStream.toByteArray();
2382 // Move all the bookmarks down one in the display order.
2383 for (int i = 0; i < bookmarksListView.getCount(); i++) {
2384 int databaseId = (int) bookmarksListView.getItemIdAtPosition(i);
2385 bookmarksDatabaseHelper.updateDisplayOrder(databaseId, i + 1);
2388 // Create the folder, which will be placed at the top of the `ListView`.
2389 bookmarksDatabaseHelper.createFolder(folderNameString, currentBookmarksFolder, folderIconByteArray);
2391 // Update the bookmarks cursor with the current contents of this folder.
2392 bookmarksCursor = bookmarksDatabaseHelper.getBookmarksByDisplayOrder(currentBookmarksFolder);
2394 // Update the `ListView`.
2395 bookmarksCursorAdapter.changeCursor(bookmarksCursor);
2397 // Scroll to the new folder.
2398 bookmarksListView.setSelection(0);
2402 public void onSaveBookmark(DialogFragment dialogFragment, int selectedBookmarkDatabaseId, Bitmap favoriteIconBitmap) {
2404 Dialog dialog = dialogFragment.getDialog();
2406 // Remove the incorrect lint warning below that the dialog might be null.
2407 assert dialog != null;
2409 // Get handles for the views from the dialog.
2410 EditText editBookmarkNameEditText = dialog.findViewById(R.id.edit_bookmark_name_edittext);
2411 EditText editBookmarkUrlEditText = dialog.findViewById(R.id.edit_bookmark_url_edittext);
2412 RadioButton currentBookmarkIconRadioButton = dialog.findViewById(R.id.edit_bookmark_current_icon_radiobutton);
2414 // Store the bookmark strings.
2415 String bookmarkNameString = editBookmarkNameEditText.getText().toString();
2416 String bookmarkUrlString = editBookmarkUrlEditText.getText().toString();
2418 // Update the bookmark.
2419 if (currentBookmarkIconRadioButton.isChecked()) { // Update the bookmark without changing the favorite icon.
2420 bookmarksDatabaseHelper.updateBookmark(selectedBookmarkDatabaseId, bookmarkNameString, bookmarkUrlString);
2421 } else { // Update the bookmark using the `WebView` favorite icon.
2422 // Create a favorite icon byte array output stream.
2423 ByteArrayOutputStream newFavoriteIconByteArrayOutputStream = new ByteArrayOutputStream();
2425 // Convert the favorite icon bitmap to a byte array. `0` is for lossless compression (the only option for a PNG).
2426 favoriteIconBitmap.compress(Bitmap.CompressFormat.PNG, 0, newFavoriteIconByteArrayOutputStream);
2428 // Convert the favorite icon byte array stream to a byte array.
2429 byte[] newFavoriteIconByteArray = newFavoriteIconByteArrayOutputStream.toByteArray();
2431 // Update the bookmark and the favorite icon.
2432 bookmarksDatabaseHelper.updateBookmark(selectedBookmarkDatabaseId, bookmarkNameString, bookmarkUrlString, newFavoriteIconByteArray);
2435 // Update the bookmarks cursor with the current contents of this folder.
2436 bookmarksCursor = bookmarksDatabaseHelper.getBookmarksByDisplayOrder(currentBookmarksFolder);
2438 // Update the list view.
2439 bookmarksCursorAdapter.changeCursor(bookmarksCursor);
2443 public void onSaveBookmarkFolder(DialogFragment dialogFragment, int selectedFolderDatabaseId, Bitmap favoriteIconBitmap) {
2445 Dialog dialog = dialogFragment.getDialog();
2447 // Remove the incorrect lint warning below that the dialog might be null.
2448 assert dialog != null;
2450 // Get handles for the views from `dialogFragment`.
2451 EditText editFolderNameEditText = dialog.findViewById(R.id.edit_folder_name_edittext);
2452 RadioButton currentFolderIconRadioButton = dialog.findViewById(R.id.edit_folder_current_icon_radiobutton);
2453 RadioButton defaultFolderIconRadioButton = dialog.findViewById(R.id.edit_folder_default_icon_radiobutton);
2454 ImageView defaultFolderIconImageView = dialog.findViewById(R.id.edit_folder_default_icon_imageview);
2456 // Get the new folder name.
2457 String newFolderNameString = editFolderNameEditText.getText().toString();
2459 // Check if the favorite icon has changed.
2460 if (currentFolderIconRadioButton.isChecked()) { // Only the name has changed.
2461 // Update the name in the database.
2462 bookmarksDatabaseHelper.updateFolder(selectedFolderDatabaseId, oldFolderNameString, newFolderNameString);
2463 } else if (!currentFolderIconRadioButton.isChecked() && newFolderNameString.equals(oldFolderNameString)) { // Only the icon has changed.
2464 // Create the new folder icon Bitmap.
2465 Bitmap folderIconBitmap;
2467 // Populate the new folder icon bitmap.
2468 if (defaultFolderIconRadioButton.isChecked()) {
2469 // Get the default folder icon drawable.
2470 Drawable folderIconDrawable = defaultFolderIconImageView.getDrawable();
2472 // Convert the folder icon drawable to a bitmap drawable.
2473 BitmapDrawable folderIconBitmapDrawable = (BitmapDrawable) folderIconDrawable;
2475 // Convert the folder icon bitmap drawable to a bitmap.
2476 folderIconBitmap = folderIconBitmapDrawable.getBitmap();
2477 } else { // Use the `WebView` favorite icon.
2478 // Copy the favorite icon bitmap to the folder icon bitmap.
2479 folderIconBitmap = favoriteIconBitmap;
2482 // Create a folder icon byte array output stream.
2483 ByteArrayOutputStream newFolderIconByteArrayOutputStream = new ByteArrayOutputStream();
2485 // Convert the folder icon bitmap to a byte array. `0` is for lossless compression (the only option for a PNG).
2486 folderIconBitmap.compress(Bitmap.CompressFormat.PNG, 0, newFolderIconByteArrayOutputStream);
2488 // Convert the folder icon byte array stream to a byte array.
2489 byte[] newFolderIconByteArray = newFolderIconByteArrayOutputStream.toByteArray();
2491 // Update the folder icon in the database.
2492 bookmarksDatabaseHelper.updateFolder(selectedFolderDatabaseId, newFolderIconByteArray);
2493 } else { // The folder icon and the name have changed.
2494 // Get the new folder icon `Bitmap`.
2495 Bitmap folderIconBitmap;
2496 if (defaultFolderIconRadioButton.isChecked()) {
2497 // Get the default folder icon drawable.
2498 Drawable folderIconDrawable = defaultFolderIconImageView.getDrawable();
2500 // Convert the folder icon drawable to a bitmap drawable.
2501 BitmapDrawable folderIconBitmapDrawable = (BitmapDrawable) folderIconDrawable;
2503 // Convert the folder icon bitmap drawable to a bitmap.
2504 folderIconBitmap = folderIconBitmapDrawable.getBitmap();
2505 } else { // Use the `WebView` favorite icon.
2506 // Copy the favorite icon bitmap to the folder icon bitmap.
2507 folderIconBitmap = favoriteIconBitmap;
2510 // Create a folder icon byte array output stream.
2511 ByteArrayOutputStream newFolderIconByteArrayOutputStream = new ByteArrayOutputStream();
2513 // Convert the folder icon bitmap to a byte array. `0` is for lossless compression (the only option for a PNG).
2514 folderIconBitmap.compress(Bitmap.CompressFormat.PNG, 0, newFolderIconByteArrayOutputStream);
2516 // Convert the folder icon byte array stream to a byte array.
2517 byte[] newFolderIconByteArray = newFolderIconByteArrayOutputStream.toByteArray();
2519 // Update the folder name and icon in the database.
2520 bookmarksDatabaseHelper.updateFolder(selectedFolderDatabaseId, oldFolderNameString, newFolderNameString, newFolderIconByteArray);
2523 // Update the bookmarks cursor with the current contents of this folder.
2524 bookmarksCursor = bookmarksDatabaseHelper.getBookmarksByDisplayOrder(currentBookmarksFolder);
2526 // Update the `ListView`.
2527 bookmarksCursorAdapter.changeCursor(bookmarksCursor);
2531 public void onCloseDownloadLocationPermissionDialog(int downloadType) {
2532 switch (downloadType) {
2533 case DownloadLocationPermissionDialog.DOWNLOAD_FILE:
2534 // Request the WRITE_EXTERNAL_STORAGE permission with a file request code.
2535 ActivityCompat.requestPermissions(this, new String[] {Manifest.permission.WRITE_EXTERNAL_STORAGE}, DOWNLOAD_FILE_REQUEST_CODE);
2538 case DownloadLocationPermissionDialog.DOWNLOAD_IMAGE:
2539 // Request the WRITE_EXTERNAL_STORAGE permission with an image request code.
2540 ActivityCompat.requestPermissions(this, new String[] {Manifest.permission.WRITE_EXTERNAL_STORAGE}, DOWNLOAD_IMAGE_REQUEST_CODE);
2546 public void onRequestPermissionsResult(int requestCode, @NonNull String[] permissions, @NonNull int[] grantResults) {
2547 // Get a handle for the fragment manager.
2548 FragmentManager fragmentManager = getSupportFragmentManager();
2550 switch (requestCode) {
2551 case DOWNLOAD_FILE_REQUEST_CODE:
2552 // Show the download file alert dialog. When the dialog closes, the correct command will be used based on the permission status.
2553 DialogFragment downloadFileDialogFragment = DownloadFileDialog.fromUrl(downloadUrl, downloadContentDisposition, downloadContentLength);
2555 // On API 23, displaying the fragment must be delayed or the app will crash.
2556 if (Build.VERSION.SDK_INT == 23) {
2557 new Handler().postDelayed(() -> downloadFileDialogFragment.show(fragmentManager, getString(R.string.download)), 500);
2559 downloadFileDialogFragment.show(fragmentManager, getString(R.string.download));
2562 // Reset the download variables.
2564 downloadContentDisposition = "";
2565 downloadContentLength = 0;
2568 case DOWNLOAD_IMAGE_REQUEST_CODE:
2569 // Show the download image alert dialog. When the dialog closes, the correct command will be used based on the permission status.
2570 DialogFragment downloadImageDialogFragment = DownloadImageDialog.imageUrl(downloadImageUrl);
2572 // On API 23, displaying the fragment must be delayed or the app will crash.
2573 if (Build.VERSION.SDK_INT == 23) {
2574 new Handler().postDelayed(() -> downloadImageDialogFragment.show(fragmentManager, getString(R.string.download)), 500);
2576 downloadImageDialogFragment.show(fragmentManager, getString(R.string.download));
2579 // Reset the image URL variable.
2580 downloadImageUrl = "";
2583 case SAVE_WEBPAGE_IMAGE_REQUEST_CODE:
2584 // Check to see if the storage permission was granted. If the dialog was canceled the grant result will be empty.
2585 if ((grantResults.length > 0) && (grantResults[0] == PackageManager.PERMISSION_GRANTED)) { // The storage permission was granted.
2586 // Save the webpage image.
2587 new SaveWebpageImage(this, currentWebView).execute(saveWebsiteImageFilePath);
2588 } else { // The storage permission was not granted.
2589 // Display an error snackbar.
2590 Snackbar.make(currentWebView, getString(R.string.cannot_use_location), Snackbar.LENGTH_LONG).show();
2593 // Reset the save website image file path.
2594 saveWebsiteImageFilePath = "";
2600 public void onDownloadImage(DialogFragment dialogFragment, String imageUrl) {
2601 // Download the image if it has an HTTP or HTTPS URI.
2602 if (imageUrl.startsWith("http")) {
2603 // Get a handle for the system `DOWNLOAD_SERVICE`.
2604 DownloadManager downloadManager = (DownloadManager) getSystemService(DOWNLOAD_SERVICE);
2606 // Parse `imageUrl`.
2607 DownloadManager.Request downloadRequest = new DownloadManager.Request(Uri.parse(imageUrl));
2609 // Get a handle for the cookie manager.
2610 CookieManager cookieManager = CookieManager.getInstance();
2612 // Pass cookies to download manager if cookies are enabled. This is required to download images from websites that require a login.
2613 // Code contributed 2017 Hendrik Knackstedt. Copyright assigned to Soren Stoutner <soren@stoutner.com>.
2614 if (cookieManager.acceptCookie()) {
2615 // Get the cookies for `imageUrl`.
2616 String cookies = cookieManager.getCookie(imageUrl);
2618 // Add the cookies to `downloadRequest`. In the HTTP request header, cookies are named `Cookie`.
2619 downloadRequest.addRequestHeader("Cookie", cookies);
2623 Dialog dialog = dialogFragment.getDialog();
2625 // Remove the incorrect lint warning below that the dialog might be null.
2626 assert dialog != null;
2628 // Get the file name from the dialog fragment.
2629 EditText downloadImageNameEditText = dialog.findViewById(R.id.download_image_name);
2630 String imageName = downloadImageNameEditText.getText().toString();
2632 // Specify the download location.
2633 if (ContextCompat.checkSelfPermission(this, Manifest.permission.WRITE_EXTERNAL_STORAGE) == PackageManager.PERMISSION_GRANTED) { // External write permission granted.
2634 // Download to the public download directory.
2635 downloadRequest.setDestinationInExternalPublicDir(Environment.DIRECTORY_DOWNLOADS, imageName);
2636 } else { // External write permission denied.
2637 // Download to the app's external download directory.
2638 downloadRequest.setDestinationInExternalFilesDir(this, Environment.DIRECTORY_DOWNLOADS, imageName);
2641 // Allow `MediaScanner` to index the download if it is a media file.
2642 downloadRequest.allowScanningByMediaScanner();
2644 // Add the URL as the description for the download.
2645 downloadRequest.setDescription(imageUrl);
2647 // Show the download notification after the download is completed.
2648 downloadRequest.setNotificationVisibility(DownloadManager.Request.VISIBILITY_VISIBLE_NOTIFY_COMPLETED);
2650 // Remove the lint warning below that `downloadManager` might be `null`.
2651 assert downloadManager != null;
2653 // Initiate the download.
2654 downloadManager.enqueue(downloadRequest);
2655 } else { // The image is not an HTTP or HTTPS URI.
2656 Snackbar.make(currentWebView, R.string.cannot_download_image, Snackbar.LENGTH_INDEFINITE).show();
2661 public void onDownloadFile(DialogFragment dialogFragment, String downloadUrl) {
2662 // Download the file if it has an HTTP or HTTPS URI.
2663 if (downloadUrl.startsWith("http")) {
2664 // Get a handle for the system `DOWNLOAD_SERVICE`.
2665 DownloadManager downloadManager = (DownloadManager) getSystemService(DOWNLOAD_SERVICE);
2667 // Parse `downloadUrl`.
2668 DownloadManager.Request downloadRequest = new DownloadManager.Request(Uri.parse(downloadUrl));
2670 // Get a handle for the cookie manager.
2671 CookieManager cookieManager = CookieManager.getInstance();
2673 // Pass cookies to download manager if cookies are enabled. This is required to download files from websites that require a login.
2674 // Code contributed 2017 Hendrik Knackstedt. Copyright assigned to Soren Stoutner <soren@stoutner.com>.
2675 if (cookieManager.acceptCookie()) {
2676 // Get the cookies for `downloadUrl`.
2677 String cookies = cookieManager.getCookie(downloadUrl);
2679 // Add the cookies to `downloadRequest`. In the HTTP request header, cookies are named `Cookie`.
2680 downloadRequest.addRequestHeader("Cookie", cookies);
2684 Dialog dialog = dialogFragment.getDialog();
2686 // Remove the incorrect lint warning below that the dialog might be null.
2687 assert dialog != null;
2689 // Get the file name from the dialog.
2690 EditText downloadFileNameEditText = dialog.findViewById(R.id.download_file_name);
2691 String fileName = downloadFileNameEditText.getText().toString();
2693 // Specify the download location.
2694 if (ContextCompat.checkSelfPermission(this, Manifest.permission.WRITE_EXTERNAL_STORAGE) == PackageManager.PERMISSION_GRANTED) { // External write permission granted.
2695 // Download to the public download directory.
2696 downloadRequest.setDestinationInExternalPublicDir(Environment.DIRECTORY_DOWNLOADS, fileName);
2697 } else { // External write permission denied.
2698 // Download to the app's external download directory.
2699 downloadRequest.setDestinationInExternalFilesDir(this, Environment.DIRECTORY_DOWNLOADS, fileName);
2702 // Allow `MediaScanner` to index the download if it is a media file.
2703 downloadRequest.allowScanningByMediaScanner();
2705 // Add the URL as the description for the download.
2706 downloadRequest.setDescription(downloadUrl);
2708 // Show the download notification after the download is completed.
2709 downloadRequest.setNotificationVisibility(DownloadManager.Request.VISIBILITY_VISIBLE_NOTIFY_COMPLETED);
2711 // Remove the lint warning below that `downloadManager` might be `null`.
2712 assert downloadManager != null;
2714 // Initiate the download.
2715 downloadManager.enqueue(downloadRequest);
2716 } else { // The download is not an HTTP or HTTPS URI.
2717 Snackbar.make(currentWebView, R.string.cannot_download_file, Snackbar.LENGTH_INDEFINITE).show();
2721 // Override `onBackPressed` to handle the navigation drawer and and the WebViews.
2723 public void onBackPressed() {
2724 // Get a handle for the drawer layout and the tab layout.
2725 DrawerLayout drawerLayout = findViewById(R.id.drawerlayout);
2726 TabLayout tabLayout = findViewById(R.id.tablayout);
2728 if (drawerLayout.isDrawerVisible(GravityCompat.START)) { // The navigation drawer is open.
2729 // Close the navigation drawer.
2730 drawerLayout.closeDrawer(GravityCompat.START);
2731 } else if (drawerLayout.isDrawerVisible(GravityCompat.END)){ // The bookmarks drawer is open.
2732 if (currentBookmarksFolder.isEmpty()) { // The home folder is displayed.
2733 // close the bookmarks drawer.
2734 drawerLayout.closeDrawer(GravityCompat.END);
2735 } else { // A subfolder is displayed.
2736 // Place the former parent folder in `currentFolder`.
2737 currentBookmarksFolder = bookmarksDatabaseHelper.getParentFolderName(currentBookmarksFolder);
2739 // Load the new folder.
2740 loadBookmarksFolder();
2742 } else if (displayingFullScreenVideo) { // A full screen video is shown.
2743 // Get a handle for the layouts.
2744 FrameLayout rootFrameLayout = findViewById(R.id.root_framelayout);
2745 RelativeLayout mainContentRelativeLayout = findViewById(R.id.main_content_relativelayout);
2746 FrameLayout fullScreenVideoFrameLayout = findViewById(R.id.full_screen_video_framelayout);
2748 // Re-enable the screen timeout.
2749 fullScreenVideoFrameLayout.setKeepScreenOn(false);
2751 // Unset the full screen video flag.
2752 displayingFullScreenVideo = false;
2754 // Remove all the views from the full screen video frame layout.
2755 fullScreenVideoFrameLayout.removeAllViews();
2757 // Hide the full screen video frame layout.
2758 fullScreenVideoFrameLayout.setVisibility(View.GONE);
2760 // Enable the sliding drawers.
2761 drawerLayout.setDrawerLockMode(DrawerLayout.LOCK_MODE_UNLOCKED);
2763 // Show the main content relative layout.
2764 mainContentRelativeLayout.setVisibility(View.VISIBLE);
2766 // Apply the appropriate full screen mode flags.
2767 if (fullScreenBrowsingModeEnabled && inFullScreenBrowsingMode) { // Privacy Browser is currently in full screen browsing mode.
2768 // Hide the app bar if specified.
2770 // Get handles for the views.
2771 LinearLayout tabsLinearLayout = findViewById(R.id.tabs_linearlayout);
2772 ActionBar actionBar = getSupportActionBar();
2774 // Remove the incorrect lint warning below that the action bar might be null.
2775 assert actionBar != null;
2777 // Hide the tab linear layout.
2778 tabsLinearLayout.setVisibility(View.GONE);
2780 // Hide the action bar.
2784 // Hide the banner ad in the free flavor.
2785 if (BuildConfig.FLAVOR.contentEquals("free")) {
2786 AdHelper.hideAd(findViewById(R.id.adview));
2789 // Remove the translucent status flag. This is necessary so the root frame layout can fill the entire screen.
2790 getWindow().clearFlags(WindowManager.LayoutParams.FLAG_TRANSLUCENT_STATUS);
2792 /* Hide the system bars.
2793 * SYSTEM_UI_FLAG_FULLSCREEN hides the status bar at the top of the screen.
2794 * SYSTEM_UI_FLAG_LAYOUT_FULLSCREEN makes the root frame layout fill the area that is normally reserved for the status bar.
2795 * SYSTEM_UI_FLAG_HIDE_NAVIGATION hides the navigation bar on the bottom or right of the screen.
2796 * SYSTEM_UI_FLAG_IMMERSIVE_STICKY makes the status and navigation bars translucent and automatically re-hides them after they are shown.
2798 rootFrameLayout.setSystemUiVisibility(View.SYSTEM_UI_FLAG_FULLSCREEN | View.SYSTEM_UI_FLAG_LAYOUT_FULLSCREEN | View.SYSTEM_UI_FLAG_HIDE_NAVIGATION |
2799 View.SYSTEM_UI_FLAG_IMMERSIVE_STICKY);
2800 } else { // Switch to normal viewing mode.
2801 // Remove the `SYSTEM_UI` flags from the root frame layout.
2802 rootFrameLayout.setSystemUiVisibility(0);
2804 // Add the translucent status flag.
2805 getWindow().addFlags(WindowManager.LayoutParams.FLAG_TRANSLUCENT_STATUS);
2808 // Reload the ad for the free flavor if not in full screen mode.
2809 if (BuildConfig.FLAVOR.contentEquals("free") && !inFullScreenBrowsingMode) {
2811 AdHelper.loadAd(findViewById(R.id.adview), getApplicationContext(), getString(R.string.ad_unit_id));
2813 } else if (currentWebView.canGoBack()) { // There is at least one item in the current WebView history.
2814 // Get the current web back forward list.
2815 WebBackForwardList webBackForwardList = currentWebView.copyBackForwardList();
2817 // Get the previous entry URL.
2818 String previousUrl = webBackForwardList.getItemAtIndex(webBackForwardList.getCurrentIndex() - 1).getUrl();
2820 // Apply the domain settings.
2821 applyDomainSettings(currentWebView, previousUrl, false, false);
2824 currentWebView.goBack();
2825 } else if (tabLayout.getTabCount() > 1) { // There are at least two tabs.
2826 // Close the current tab.
2828 } else { // There isn't anything to do in Privacy Browser.
2829 // Close Privacy Browser. `finishAndRemoveTask()` also removes Privacy Browser from the recent app list.
2830 if (Build.VERSION.SDK_INT >= 21) {
2831 finishAndRemoveTask();
2836 // Manually kill Privacy Browser. Otherwise, it is glitchy when restarted.
2841 // Process the results of a file browse.
2843 public void onActivityResult(int requestCode, int resultCode, Intent data) {
2844 // Run the default commands.
2845 super.onActivityResult(requestCode, resultCode, data);
2847 // Run the commands that correlate to the specified request code.
2848 switch (requestCode) {
2849 case FILE_UPLOAD_REQUEST_CODE:
2850 // File uploads only work on API >= 21.
2851 if (Build.VERSION.SDK_INT >= 21) {
2852 // Pass the file to the WebView.
2853 fileChooserCallback.onReceiveValue(WebChromeClient.FileChooserParams.parseResult(resultCode, data));
2857 case BROWSE_SAVE_WEBPAGE_IMAGE_REQUEST_CODE:
2858 // Don't do anything if the user pressed back from the file picker.
2859 if (resultCode == Activity.RESULT_OK) {
2860 // Get a handle for the save dialog fragment.
2861 DialogFragment saveWebpageImageDialogFragment= (DialogFragment) getSupportFragmentManager().findFragmentByTag(getString(R.string.save_as_image));
2863 // Only update the file name if the dialog still exists.
2864 if (saveWebpageImageDialogFragment != null) {
2865 // Get a handle for the save webpage image dialog.
2866 Dialog saveWebpageImageDialog = saveWebpageImageDialogFragment.getDialog();
2868 // Remove the incorrect lint warning below that the dialog might be null.
2869 assert saveWebpageImageDialog != null;
2871 // Get a handle for the file name edit text.
2872 EditText fileNameEditText = saveWebpageImageDialog.findViewById(R.id.file_name_edittext);
2874 // Instantiate the file name helper.
2875 FileNameHelper fileNameHelper = new FileNameHelper();
2877 // Get the file path if it isn't null.
2878 if (data.getData() != null) {
2879 // Convert the file name URI to a file name path.
2880 String fileNamePath = fileNameHelper.convertUriToFileNamePath(data.getData());
2882 // Set the file name path as the text of the file name edit text.
2883 fileNameEditText.setText(fileNamePath);
2891 private void loadUrlFromTextBox() {
2892 // Get a handle for the URL edit text.
2893 EditText urlEditText = findViewById(R.id.url_edittext);
2895 // Get the text from urlTextBox and convert it to a string. trim() removes white spaces from the beginning and end of the string.
2896 String unformattedUrlString = urlEditText.getText().toString().trim();
2898 // Initialize the formatted URL string.
2901 // Check to see if `unformattedUrlString` is a valid URL. Otherwise, convert it into a search.
2902 if (unformattedUrlString.startsWith("content://")) { // This is a Content URL.
2903 // Load the entire content URL.
2904 url = unformattedUrlString;
2905 } else if (Patterns.WEB_URL.matcher(unformattedUrlString).matches() || unformattedUrlString.startsWith("http://") || unformattedUrlString.startsWith("https://") ||
2906 unformattedUrlString.startsWith("file://")) { // This is a standard URL.
2907 // Add `https://` at the beginning if there is no protocol. Otherwise the app will segfault.
2908 if (!unformattedUrlString.startsWith("http") && !unformattedUrlString.startsWith("file://") && !unformattedUrlString.startsWith("content://")) {
2909 unformattedUrlString = "https://" + unformattedUrlString;
2912 // Initialize `unformattedUrl`.
2913 URL unformattedUrl = null;
2915 // 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.
2917 unformattedUrl = new URL(unformattedUrlString);
2918 } catch (MalformedURLException e) {
2919 e.printStackTrace();
2922 // The ternary operator (? :) makes sure that a null pointer exception is not thrown, which would happen if `.get` was called on a `null` value.
2923 String scheme = unformattedUrl != null ? unformattedUrl.getProtocol() : null;
2924 String authority = unformattedUrl != null ? unformattedUrl.getAuthority() : null;
2925 String path = unformattedUrl != null ? unformattedUrl.getPath() : null;
2926 String query = unformattedUrl != null ? unformattedUrl.getQuery() : null;
2927 String fragment = unformattedUrl != null ? unformattedUrl.getRef() : null;
2930 Uri.Builder uri = new Uri.Builder();
2931 uri.scheme(scheme).authority(authority).path(path).query(query).fragment(fragment);
2933 // Decode the URI as a UTF-8 string in.
2935 url = URLDecoder.decode(uri.build().toString(), "UTF-8");
2936 } catch (UnsupportedEncodingException exception) {
2937 // Do nothing. The formatted URL string will remain blank.
2939 } else if (!unformattedUrlString.isEmpty()){ // This is not a URL, but rather a search string.
2940 // Create an encoded URL String.
2941 String encodedUrlString;
2943 // Sanitize the search input.
2945 encodedUrlString = URLEncoder.encode(unformattedUrlString, "UTF-8");
2946 } catch (UnsupportedEncodingException exception) {
2947 encodedUrlString = "";
2950 // Add the base search URL.
2951 url = searchURL + encodedUrlString;
2954 // 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.
2955 urlEditText.clearFocus();
2961 private void loadUrl(String url) {
2962 // Sanitize the URL.
2963 url = sanitizeUrl(url);
2965 // Apply the domain settings.
2966 applyDomainSettings(currentWebView, url, true, false);
2969 currentWebView.loadUrl(url, customHeaders);
2972 public void findPreviousOnPage(View view) {
2973 // Go to the previous highlighted phrase on the page. `false` goes backwards instead of forwards.
2974 currentWebView.findNext(false);
2977 public void findNextOnPage(View view) {
2978 // Go to the next highlighted phrase on the page. `true` goes forwards instead of backwards.
2979 currentWebView.findNext(true);
2982 public void closeFindOnPage(View view) {
2983 // Get a handle for the views.
2984 Toolbar toolbar = findViewById(R.id.toolbar);
2985 LinearLayout findOnPageLinearLayout = findViewById(R.id.find_on_page_linearlayout);
2986 EditText findOnPageEditText = findViewById(R.id.find_on_page_edittext);
2988 // Delete the contents of `find_on_page_edittext`.
2989 findOnPageEditText.setText(null);
2991 // Clear the highlighted phrases if the WebView is not null.
2992 if (currentWebView != null) {
2993 currentWebView.clearMatches();
2996 // Hide the find on page linear layout.
2997 findOnPageLinearLayout.setVisibility(View.GONE);
2999 // Show the toolbar.
3000 toolbar.setVisibility(View.VISIBLE);
3002 // Get a handle for the input method manager.
3003 InputMethodManager inputMethodManager = (InputMethodManager) getSystemService(Context.INPUT_METHOD_SERVICE);
3005 // Remove the lint warning below that the input method manager might be null.
3006 assert inputMethodManager != null;
3008 // Hide the keyboard.
3009 inputMethodManager.hideSoftInputFromWindow(toolbar.getWindowToken(), 0);
3013 public void onApplyNewFontSize(DialogFragment dialogFragment) {
3015 Dialog dialog = dialogFragment.getDialog();
3017 // Remove the incorrect lint warning below tha the dialog might be null.
3018 assert dialog != null;
3020 // Get a handle for the font size edit text.
3021 EditText fontSizeEditText = dialog.findViewById(R.id.font_size_edittext);
3023 // Initialize the new font size variable with the current font size.
3024 int newFontSize = currentWebView.getSettings().getTextZoom();
3026 // Get the font size from the edit text.
3028 newFontSize = Integer.valueOf(fontSizeEditText.getText().toString());
3029 } catch (Exception exception) {
3030 // If the edit text does not contain a valid font size do nothing.
3033 // Apply the new font size.
3034 currentWebView.getSettings().setTextZoom(newFontSize);
3038 public void onSaveWebpageImage(DialogFragment dialogFragment) {
3040 Dialog dialog = dialogFragment.getDialog();
3042 // Remove the incorrect lint warning below that the dialog might be null.
3043 assert dialog != null;
3045 // Get a handle for the file name edit text.
3046 EditText fileNameEditText = dialog.findViewById(R.id.file_name_edittext);
3048 // Get the file path string.
3049 saveWebsiteImageFilePath = fileNameEditText.getText().toString();
3051 // Check to see if the storage permission is needed.
3052 if (ContextCompat.checkSelfPermission(this, Manifest.permission.WRITE_EXTERNAL_STORAGE) == PackageManager.PERMISSION_GRANTED) { // The storage permission has been granted.
3053 // Save the webpage image.
3054 new SaveWebpageImage(this, currentWebView).execute(saveWebsiteImageFilePath);
3055 } else { // The storage permission has not been granted.
3056 // Get the external private directory `File`.
3057 File externalPrivateDirectoryFile = getExternalFilesDir(null);
3059 // Remove the incorrect lint error below that the file might be null.
3060 assert externalPrivateDirectoryFile != null;
3062 // Get the external private directory string.
3063 String externalPrivateDirectory = externalPrivateDirectoryFile.toString();
3065 // Check to see if the file path is in the external private directory.
3066 if (saveWebsiteImageFilePath.startsWith(externalPrivateDirectory)) { // The file path is in the external private directory.
3067 // Save the webpage image.
3068 new SaveWebpageImage(this, currentWebView).execute(saveWebsiteImageFilePath);
3069 } else { // The file path is in a public directory.
3070 // Check if the user has previously denied the storage permission.
3071 if (ActivityCompat.shouldShowRequestPermissionRationale(this, Manifest.permission.WRITE_EXTERNAL_STORAGE)) { // Show a dialog explaining the request first.
3072 // Instantiate the storage permission alert dialog.
3073 DialogFragment storagePermissionDialogFragment = new StoragePermissionDialog();
3075 // Show the storage permission alert dialog. The permission will be requested when the dialog is closed.
3076 storagePermissionDialogFragment.show(getSupportFragmentManager(), getString(R.string.storage_permission));
3077 } else { // Show the permission request directly.
3078 // Request the write external storage permission. The webpage image will be saved when it finishes.
3079 ActivityCompat.requestPermissions(this, new String[] {Manifest.permission.WRITE_EXTERNAL_STORAGE}, SAVE_WEBPAGE_IMAGE_REQUEST_CODE);
3086 public void onCloseStoragePermissionDialog() {
3087 // Request the write external storage permission. The webpage image will be saved when it finishes.
3088 ActivityCompat.requestPermissions(this, new String[] {Manifest.permission.WRITE_EXTERNAL_STORAGE}, SAVE_WEBPAGE_IMAGE_REQUEST_CODE);
3091 private void applyAppSettings() {
3092 // Initialize the app if this is the first run. This is done here instead of in `onCreate()` to shorten the time that an unthemed background is displayed on app startup.
3093 if (webViewDefaultUserAgent == null) {
3097 // Get a handle for the shared preferences.
3098 SharedPreferences sharedPreferences = PreferenceManager.getDefaultSharedPreferences(this);
3100 // Store the values from the shared preferences in variables.
3101 incognitoModeEnabled = sharedPreferences.getBoolean("incognito_mode", false);
3102 boolean doNotTrackEnabled = sharedPreferences.getBoolean("do_not_track", false);
3103 sanitizeGoogleAnalytics = sharedPreferences.getBoolean("google_analytics", true);
3104 sanitizeFacebookClickIds = sharedPreferences.getBoolean("facebook_click_ids", true);
3105 sanitizeTwitterAmpRedirects = sharedPreferences.getBoolean("twitter_amp_redirects", true);
3106 proxyThroughOrbot = sharedPreferences.getBoolean("proxy_through_orbot", false);
3107 fullScreenBrowsingModeEnabled = sharedPreferences.getBoolean("full_screen_browsing_mode", false);
3108 hideAppBar = sharedPreferences.getBoolean("hide_app_bar", true);
3109 scrollAppBar = sharedPreferences.getBoolean("scroll_app_bar", true);
3111 // Get handles for the views that need to be modified.
3112 FrameLayout rootFrameLayout = findViewById(R.id.root_framelayout);
3113 AppBarLayout appBarLayout = findViewById(R.id.appbar_layout);
3114 ActionBar actionBar = getSupportActionBar();
3115 Toolbar toolbar = findViewById(R.id.toolbar);
3116 LinearLayout findOnPageLinearLayout = findViewById(R.id.find_on_page_linearlayout);
3117 LinearLayout tabsLinearLayout = findViewById(R.id.tabs_linearlayout);
3118 SwipeRefreshLayout swipeRefreshLayout = findViewById(R.id.swiperefreshlayout);
3120 // Remove the incorrect lint warning below that the action bar might be null.
3121 assert actionBar != null;
3123 // Apply the proxy through Orbot settings.
3124 applyProxyThroughOrbot(false);
3126 // Set Do Not Track status.
3127 if (doNotTrackEnabled) {
3128 customHeaders.put("DNT", "1");
3130 customHeaders.remove("DNT");
3133 // Get the current layout parameters. Using coordinator layout parameters allows the `setBehavior()` command and using app bar layout parameters allows the `setScrollFlags()` command.
3134 CoordinatorLayout.LayoutParams swipeRefreshLayoutParams = (CoordinatorLayout.LayoutParams) swipeRefreshLayout.getLayoutParams();
3135 AppBarLayout.LayoutParams toolbarLayoutParams = (AppBarLayout.LayoutParams) toolbar.getLayoutParams();
3136 AppBarLayout.LayoutParams findOnPageLayoutParams = (AppBarLayout.LayoutParams) findOnPageLinearLayout.getLayoutParams();
3137 AppBarLayout.LayoutParams tabsLayoutParams = (AppBarLayout.LayoutParams) tabsLinearLayout.getLayoutParams();
3139 // Add the scrolling behavior to the layout parameters.
3141 // Enable scrolling of the app bar.
3142 swipeRefreshLayoutParams.setBehavior(new AppBarLayout.ScrollingViewBehavior());
3143 toolbarLayoutParams.setScrollFlags(AppBarLayout.LayoutParams.SCROLL_FLAG_SCROLL | AppBarLayout.LayoutParams.SCROLL_FLAG_ENTER_ALWAYS | AppBarLayout.LayoutParams.SCROLL_FLAG_SNAP);
3144 findOnPageLayoutParams.setScrollFlags(AppBarLayout.LayoutParams.SCROLL_FLAG_SCROLL | AppBarLayout.LayoutParams.SCROLL_FLAG_ENTER_ALWAYS | AppBarLayout.LayoutParams.SCROLL_FLAG_SNAP);
3145 tabsLayoutParams.setScrollFlags(AppBarLayout.LayoutParams.SCROLL_FLAG_SCROLL | AppBarLayout.LayoutParams.SCROLL_FLAG_ENTER_ALWAYS | AppBarLayout.LayoutParams.SCROLL_FLAG_SNAP);
3147 // Disable scrolling of the app bar.
3148 swipeRefreshLayoutParams.setBehavior(null);
3149 toolbarLayoutParams.setScrollFlags(0);
3150 findOnPageLayoutParams.setScrollFlags(0);
3151 tabsLayoutParams.setScrollFlags(0);
3153 // Expand the app bar if it is currently collapsed.
3154 appBarLayout.setExpanded(true);
3157 // Apply the modified layout parameters.
3158 swipeRefreshLayout.setLayoutParams(swipeRefreshLayoutParams);
3159 toolbar.setLayoutParams(toolbarLayoutParams);
3160 findOnPageLinearLayout.setLayoutParams(findOnPageLayoutParams);
3161 tabsLinearLayout.setLayoutParams(tabsLayoutParams);
3163 // Set the app bar scrolling for each WebView.
3164 for (int i = 0; i < webViewPagerAdapter.getCount(); i++) {
3165 // Get the WebView tab fragment.
3166 WebViewTabFragment webViewTabFragment = webViewPagerAdapter.getPageFragment(i);
3168 // Get the fragment view.
3169 View fragmentView = webViewTabFragment.getView();
3171 // Only modify the WebViews if they exist.
3172 if (fragmentView != null) {
3173 // Get the nested scroll WebView from the tab fragment.
3174 NestedScrollWebView nestedScrollWebView = fragmentView.findViewById(R.id.nestedscroll_webview);
3176 // Set the app bar scrolling.
3177 nestedScrollWebView.setNestedScrollingEnabled(scrollAppBar);
3181 // Update the full screen browsing mode settings.
3182 if (fullScreenBrowsingModeEnabled && inFullScreenBrowsingMode) { // Privacy Browser is currently in full screen browsing mode.
3183 // Update the visibility of the app bar, which might have changed in the settings.
3185 // Hide the tab linear layout.
3186 tabsLinearLayout.setVisibility(View.GONE);
3188 // Hide the action bar.
3191 // Show the tab linear layout.
3192 tabsLinearLayout.setVisibility(View.VISIBLE);
3194 // Show the action bar.
3198 // Hide the banner ad in the free flavor.
3199 if (BuildConfig.FLAVOR.contentEquals("free")) {
3200 AdHelper.hideAd(findViewById(R.id.adview));
3203 // Remove the translucent status flag. This is necessary so the root frame layout can fill the entire screen.
3204 getWindow().clearFlags(WindowManager.LayoutParams.FLAG_TRANSLUCENT_STATUS);
3206 /* Hide the system bars.
3207 * SYSTEM_UI_FLAG_FULLSCREEN hides the status bar at the top of the screen.
3208 * SYSTEM_UI_FLAG_LAYOUT_FULLSCREEN makes the root frame layout fill the area that is normally reserved for the status bar.
3209 * SYSTEM_UI_FLAG_HIDE_NAVIGATION hides the navigation bar on the bottom or right of the screen.
3210 * SYSTEM_UI_FLAG_IMMERSIVE_STICKY makes the status and navigation bars translucent and automatically re-hides them after they are shown.
3212 rootFrameLayout.setSystemUiVisibility(View.SYSTEM_UI_FLAG_FULLSCREEN | View.SYSTEM_UI_FLAG_LAYOUT_FULLSCREEN | View.SYSTEM_UI_FLAG_HIDE_NAVIGATION |
3213 View.SYSTEM_UI_FLAG_IMMERSIVE_STICKY);
3214 } else { // Privacy Browser is not in full screen browsing mode.
3215 // 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.
3216 inFullScreenBrowsingMode = false;
3218 // Show the tab linear layout.
3219 tabsLinearLayout.setVisibility(View.VISIBLE);
3221 // Show the action bar.
3224 // Show the banner ad in the free flavor.
3225 if (BuildConfig.FLAVOR.contentEquals("free")) {
3226 // Initialize the ads. If this isn't the first run, `loadAd()` will be automatically called instead.
3227 AdHelper.initializeAds(findViewById(R.id.adview), getApplicationContext(), getSupportFragmentManager(), getString(R.string.google_app_id), getString(R.string.ad_unit_id));
3230 // Remove the `SYSTEM_UI` flags from the root frame layout.
3231 rootFrameLayout.setSystemUiVisibility(0);
3233 // Add the translucent status flag.
3234 getWindow().addFlags(WindowManager.LayoutParams.FLAG_TRANSLUCENT_STATUS);
3238 private void initializeApp() {
3239 // Get a handle for the shared preferences.
3240 SharedPreferences sharedPreferences = PreferenceManager.getDefaultSharedPreferences(this);
3242 // Get the theme preference.
3243 boolean darkTheme = sharedPreferences.getBoolean("dark_theme", false);
3245 // Get a handle for the input method.
3246 InputMethodManager inputMethodManager = (InputMethodManager) getSystemService(Context.INPUT_METHOD_SERVICE);
3248 // Remove the lint warning below that the input method manager might be null.
3249 assert inputMethodManager != null;
3251 // Initialize the foreground color spans for highlighting the URLs. We have to use the deprecated `getColor()` until API >= 23.
3252 redColorSpan = new ForegroundColorSpan(getResources().getColor(R.color.red_a700));
3253 initialGrayColorSpan = new ForegroundColorSpan(getResources().getColor(R.color.gray_500));
3254 finalGrayColorSpan = new ForegroundColorSpan(getResources().getColor(R.color.gray_500));
3256 // Get handles for the URL views.
3257 EditText urlEditText = findViewById(R.id.url_edittext);
3259 // Remove the formatting from the URL edit text when the user is editing the text.
3260 urlEditText.setOnFocusChangeListener((View v, boolean hasFocus) -> {
3261 if (hasFocus) { // The user is editing the URL text box.
3262 // Remove the highlighting.
3263 urlEditText.getText().removeSpan(redColorSpan);
3264 urlEditText.getText().removeSpan(initialGrayColorSpan);
3265 urlEditText.getText().removeSpan(finalGrayColorSpan);
3266 } else { // The user has stopped editing the URL text box.
3267 // Move to the beginning of the string.
3268 urlEditText.setSelection(0);
3270 // Reapply the highlighting.
3275 // Set the go button on the keyboard to load the URL in `urlTextBox`.
3276 urlEditText.setOnKeyListener((View v, int keyCode, KeyEvent event) -> {
3277 // If the event is a key-down event on the `enter` button, load the URL.
3278 if ((event.getAction() == KeyEvent.ACTION_DOWN) && (keyCode == KeyEvent.KEYCODE_ENTER)) {
3279 // Load the URL into the mainWebView and consume the event.
3280 loadUrlFromTextBox();
3282 // If the enter key was pressed, consume the event.
3285 // If any other key was pressed, do not consume the event.
3290 // Initialize the Orbot status and the waiting for Orbot trackers.
3291 orbotStatus = "unknown";
3292 waitingForOrbot = false;
3294 // Create an Orbot status `BroadcastReceiver`.
3295 orbotStatusBroadcastReceiver = new BroadcastReceiver() {
3297 public void onReceive(Context context, Intent intent) {
3298 // Store the content of the status message in `orbotStatus`.
3299 orbotStatus = intent.getStringExtra("org.torproject.android.intent.extra.STATUS");