]> gitweb.stoutner.com Git - PrivacyBrowserAndroid.git/blobdiff - app/src/main/java/com/stoutner/privacybrowser/adapters/AboutPagerAdapter.java
Make SSL errors tab aware.
[PrivacyBrowserAndroid.git] / app / src / main / java / com / stoutner / privacybrowser / adapters / AboutPagerAdapter.java
diff --git a/app/src/main/java/com/stoutner/privacybrowser/adapters/AboutPagerAdapter.java b/app/src/main/java/com/stoutner/privacybrowser/adapters/AboutPagerAdapter.java
new file mode 100644 (file)
index 0000000..0d9a158
--- /dev/null
@@ -0,0 +1,88 @@
+/*
+ * Copyright © 2016-2019 Soren Stoutner <soren@stoutner.com>.
+ *
+ * This file is part of Privacy Browser <https://www.stoutner.com/privacy-browser>.
+ *
+ * Privacy Browser is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation, either version 3 of the License, or
+ * (at your option) any later version.
+ *
+ * Privacy Browser is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with Privacy Browser.  If not, see <http://www.gnu.org/licenses/>.
+ */
+
+package com.stoutner.privacybrowser.adapters;
+
+import android.content.Context;
+
+import androidx.fragment.app.Fragment;
+import androidx.fragment.app.FragmentManager;
+import androidx.fragment.app.FragmentPagerAdapter;
+
+import com.stoutner.privacybrowser.R;
+import com.stoutner.privacybrowser.fragments.AboutTabFragment;
+
+public class AboutPagerAdapter extends FragmentPagerAdapter {
+    // Define the class variable to store the blocklist versions.
+    private Context context;
+    private String[] blocklistVersions;
+
+    public AboutPagerAdapter(FragmentManager fragmentManager, Context context, String[] blocklistVersions) {
+        // Run the default commands.
+        super(fragmentManager);
+
+        // Store the context in a class variable.
+        this.context = context;
+
+        // Store the blocklist versions in a class variable.
+        this.blocklistVersions = blocklistVersions;
+    }
+
+    @Override
+    // Get the count of the number of tabs.
+    public int getCount() {
+        return 7;
+    }
+
+    @Override
+    // Get the name of each tab.  Tab numbers start at 0.
+    public CharSequence getPageTitle(int tab) {
+        switch (tab) {
+            case 0:
+                return context.getResources().getString(R.string.version);
+
+            case 1:
+                return context.getResources().getString(R.string.permissions);
+
+            case 2:
+                return context.getResources().getString(R.string.privacy_policy);
+
+            case 3:
+                return context.getResources().getString(R.string.changelog);
+
+            case 4:
+                return context.getResources().getString(R.string.licenses);
+
+            case 5:
+                return context.getResources().getString(R.string.contributors);
+
+            case 6:
+                return context.getResources().getString(R.string.links);
+
+            default:
+                return "";
+        }
+    }
+
+    @Override
+    // Setup each tab.
+    public Fragment getItem(int tabNumber) {
+        return AboutTabFragment.createTab(tabNumber, blocklistVersions);
+    }
+}
\ No newline at end of file