X-Git-Url: https://gitweb.stoutner.com/?a=blobdiff_plain;f=app%2Fsrc%2Fmain%2Fjava%2Fcom%2Fstoutner%2Fprivacybrowser%2Fadapters%2FAboutPagerAdapter.java;fp=app%2Fsrc%2Fmain%2Fjava%2Fcom%2Fstoutner%2Fprivacybrowser%2Fadapters%2FAboutPagerAdapter.java;h=0000000000000000000000000000000000000000;hb=91154b307513e7bc6958b27fba518e4f9b564cf9;hp=27f972906d7a1648a8d526bf6c4ceb3e04e70a76;hpb=4ce562261f47e06c454504262a24f61f46bb393d;p=PrivacyBrowserAndroid.git 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 index 27f97290..00000000 --- a/app/src/main/java/com/stoutner/privacybrowser/adapters/AboutPagerAdapter.java +++ /dev/null @@ -1,107 +0,0 @@ -/* - * Copyright © 2016-2020 Soren Stoutner . - * - * This file is part of 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 . - */ - -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 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