]> gitweb.stoutner.com Git - PrivacyBrowserAndroid.git/blobdiff - app/src/main/java/com/stoutner/privacybrowser/adapters/AboutPagerAdapter.java
Convert a number of files to Kotlin. https://redmine.stoutner.com/issues/641
[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
deleted file mode 100644 (file)
index 27f9729..0000000
+++ /dev/null
@@ -1,107 +0,0 @@
-/*
- * Copyright © 2016-2020 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.annotation.NonNull;
-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.AboutVersionFragment;
-import com.stoutner.privacybrowser.fragments.AboutWebViewFragment;
-
-import java.util.LinkedList;
-
-public class AboutPagerAdapter extends FragmentPagerAdapter {
-    // Define the class variables.
-    private final Context context;
-    private final String[] blocklistVersions;
-    private final LinkedList<Fragment> aboutFragmentList = new LinkedList<>();
-
-    public AboutPagerAdapter(FragmentManager fragmentManager, Context context, String[] blocklistVersions) {
-        // Run the default commands.
-        super(fragmentManager, BEHAVIOR_RESUME_ONLY_CURRENT_FRAGMENT);
-
-        // Store the class variables.
-        this.context = context;
-        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.getString(R.string.version);
-
-            case 1:
-                return context.getString(R.string.permissions);
-
-            case 2:
-                return context.getString(R.string.privacy_policy);
-
-            case 3:
-                return context.getString(R.string.changelog);
-
-            case 4:
-                return context.getString(R.string.licenses);
-
-            case 5:
-                return context.getString(R.string.contributors);
-
-            case 6:
-                return context.getString(R.string.links);
-
-            default:
-                return "";
-        }
-    }
-
-    @Override
-    @NonNull
-    // Setup each tab.
-    public Fragment getItem(int tabNumber) {
-        // Create the tab fragment and add it to the list.
-        if (tabNumber == 0){
-            // Add the version tab to the list.
-            aboutFragmentList.add(AboutVersionFragment.createTab(blocklistVersions));
-        } else {
-            // Add the WebView tab to the list.
-            aboutFragmentList.add(AboutWebViewFragment.createTab(tabNumber));
-        }
-
-        // Return the tab number fragment.
-        return aboutFragmentList.get(tabNumber);
-    }
-
-    public Fragment getTabFragment(int tabNumber) {
-        // Return the tab fragment.
-        return aboutFragmentList.get(tabNumber);
-    }
-}
\ No newline at end of file