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=0d9a15867db8a0c2ef436b9a02a5b487758a9863;hb=fa3b8b382eb5ed86c598e3b126d1ef5dd117c5be;hp=0000000000000000000000000000000000000000;hpb=f0393ca22075be3e5fe9199c7db87381256236fa;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 new file mode 100644 index 00000000..0d9a1586 --- /dev/null +++ b/app/src/main/java/com/stoutner/privacybrowser/adapters/AboutPagerAdapter.java @@ -0,0 +1,88 @@ +/* + * Copyright © 2016-2019 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.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