2 * Copyright © 2016-2019 Soren Stoutner <soren@stoutner.com>.
4 * This file is part of Privacy Browser <https://www.stoutner.com/privacy-browser>.
6 * Privacy Browser is free software: you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation, either version 3 of the License, or
9 * (at your option) any later version.
11 * Privacy Browser is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
16 * You should have received a copy of the GNU General Public License
17 * along with Privacy Browser. If not, see <http://www.gnu.org/licenses/>.
20 package com.stoutner.privacybrowser.fragments;
22 import android.annotation.SuppressLint;
23 import android.content.SharedPreferences;
24 import android.os.Bundle;
25 import android.preference.PreferenceManager;
26 import android.view.LayoutInflater;
27 import android.view.View;
28 import android.view.ViewGroup;
29 import android.webkit.WebView;
31 import androidx.annotation.NonNull;
32 import androidx.fragment.app.Fragment;
34 import com.stoutner.privacybrowser.R;
36 public class GuideTabFragment extends Fragment {
37 // `tabNumber` is used in `onCreate()` and `onCreateView()`.
38 private int tabNumber;
40 // Store the tab number in the arguments bundle.
41 public static GuideTabFragment createTab (int tab) {
43 Bundle bundle = new Bundle();
45 // Store the tab number in the bundle.
46 bundle.putInt("Tab", tab);
48 // Add the bundle to the fragment.
49 GuideTabFragment guideTabFragment = new GuideTabFragment();
50 guideTabFragment.setArguments(bundle);
52 // Return the new fragment.
53 return guideTabFragment;
57 public void onCreate(Bundle savedInstanceState) {
58 // Run the default commands.
59 super.onCreate(savedInstanceState);
61 // Remove the lint warning that `getArguments()` might be null.
62 assert getArguments() != null;
64 // Store the tab number in a class variable.
65 tabNumber = getArguments().getInt("Tab");
68 @SuppressLint("SetJavaScriptEnabled")
70 public View onCreateView(@NonNull LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {
71 // Get a handle for the shared preferences.
72 SharedPreferences sharedPreferences = PreferenceManager.getDefaultSharedPreferences(getContext());
74 // Get the theme preference.
75 boolean darkTheme = sharedPreferences.getBoolean("dark_theme", false);
77 // Setting false at the end of inflater.inflate does not attach the inflated layout as a child of container. The fragment will take care of attaching the root automatically.
78 View tabLayout = inflater.inflate(R.layout.bare_webview, container, false);
80 // Get a handle for `tabWebView`.
81 WebView tabWebView = (WebView) tabLayout;
83 // Load the tabs according to the theme.
84 if (darkTheme) { // The dark theme is applied.
85 tabWebView.setBackgroundColor(getResources().getColor(R.color.gray_850));
87 // Tab numbers start at 0.
90 tabWebView.loadUrl("file:///android_asset/" + getString(R.string.android_asset_path) + "/guide_overview_dark.html");
94 tabWebView.loadUrl("file:///android_asset/" + getString(R.string.android_asset_path) + "/guide_javascript_dark.html");
98 tabWebView.loadUrl("file:///android_asset/" + getString(R.string.android_asset_path) + "/guide_local_storage_dark.html");
102 tabWebView.loadUrl("file:///android_asset/" + getString(R.string.android_asset_path) + "/guide_user_agent_dark.html");
106 tabWebView.loadUrl("file:///android_asset/" + getString(R.string.android_asset_path) + "/guide_requests_dark.html");
110 tabWebView.loadUrl("file:///android_asset/" + getString(R.string.android_asset_path) + "/guide_domain_settings_dark.html");
114 tabWebView.loadUrl("file:///android_asset/" + getString(R.string.android_asset_path) + "/guide_ssl_certificates_dark.html");
118 tabWebView.loadUrl("file:///android_asset/" + getString(R.string.android_asset_path) + "/guide_proxies_dark.html");
122 tabWebView.loadUrl("file:///android_asset/" + getString(R.string.android_asset_path) + "/guide_tracking_ids_dark.html");
126 tabWebView.loadUrl("file:///android_asset/" + getString(R.string.android_asset_path) + "/guide_bookmarks_dark.html");
129 } else { // The light theme is applied.
130 // Tab numbers start at 0.
133 tabWebView.loadUrl("file:///android_asset/" + getString(R.string.android_asset_path) + "/guide_overview_light.html");
137 tabWebView.loadUrl("file:///android_asset/" + getString(R.string.android_asset_path) + "/guide_javascript_light.html");
141 tabWebView.loadUrl("file:///android_asset/" + getString(R.string.android_asset_path) + "/guide_local_storage_light.html");
145 tabWebView.loadUrl("file:///android_asset/" + getString(R.string.android_asset_path) + "/guide_user_agent_light.html");
149 tabWebView.loadUrl("file:///android_asset/" + getString(R.string.android_asset_path) + "/guide_requests_light.html");
153 tabWebView.loadUrl("file:///android_asset/" + getString(R.string.android_asset_path) + "/guide_domain_settings_light.html");
157 tabWebView.loadUrl("file:///android_asset/" + getString(R.string.android_asset_path) + "/guide_ssl_certificates_light.html");
161 tabWebView.loadUrl("file:///android_asset/" + getString(R.string.android_asset_path) + "/guide_proxies_light.html");
165 tabWebView.loadUrl("file:///android_asset/" + getString(R.string.android_asset_path) + "/guide_tracking_ids_light.html");
169 tabWebView.loadUrl("file:///android_asset/" + getString(R.string.android_asset_path) + "/guide_bookmarks_light.html");
173 // Return the formatted `tabLayout`.