]> gitweb.stoutner.com Git - PrivacyBrowserAndroid.git/blob - app/src/main/java/com/stoutner/privacybrowser/adapters/AboutPagerAdapter.java
Add support for I2P and custom proxies. https://redmine.stoutner.com/issues/355
[PrivacyBrowserAndroid.git] / app / src / main / java / com / stoutner / privacybrowser / adapters / AboutPagerAdapter.java
1 /*
2  * Copyright © 2016-2019 Soren Stoutner <soren@stoutner.com>.
3  *
4  * This file is part of Privacy Browser <https://www.stoutner.com/privacy-browser>.
5  *
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.
10  *
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.
15  *
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/>.
18  */
19
20 package com.stoutner.privacybrowser.adapters;
21
22 import android.content.Context;
23
24 import androidx.annotation.NonNull;
25 import androidx.fragment.app.Fragment;
26 import androidx.fragment.app.FragmentManager;
27 import androidx.fragment.app.FragmentPagerAdapter;
28
29 import com.stoutner.privacybrowser.R;
30 import com.stoutner.privacybrowser.fragments.AboutTabFragment;
31
32 public class AboutPagerAdapter extends FragmentPagerAdapter {
33     // Define the class variable to store the blocklist versions.
34     private Context context;
35     private String[] blocklistVersions;
36
37     public AboutPagerAdapter(FragmentManager fragmentManager, Context context, String[] blocklistVersions) {
38         // Run the default commands.
39         super(fragmentManager, BEHAVIOR_RESUME_ONLY_CURRENT_FRAGMENT);
40
41         // Store the context in a class variable.
42         this.context = context;
43
44         // Store the blocklist versions in a class variable.
45         this.blocklistVersions = blocklistVersions;
46     }
47
48     @Override
49     // Get the count of the number of tabs.
50     public int getCount() {
51         return 7;
52     }
53
54     @Override
55     // Get the name of each tab.  Tab numbers start at 0.
56     public CharSequence getPageTitle(int tab) {
57         switch (tab) {
58             case 0:
59                 return context.getString(R.string.version);
60
61             case 1:
62                 return context.getString(R.string.permissions);
63
64             case 2:
65                 return context.getString(R.string.privacy_policy);
66
67             case 3:
68                 return context.getString(R.string.changelog);
69
70             case 4:
71                 return context.getString(R.string.licenses);
72
73             case 5:
74                 return context.getString(R.string.contributors);
75
76             case 6:
77                 return context.getString(R.string.links);
78
79             default:
80                 return "";
81         }
82     }
83
84     @Override
85     @NonNull
86     // Setup each tab.
87     public Fragment getItem(int tabNumber) {
88         return AboutTabFragment.createTab(tabNumber, blocklistVersions);
89     }
90 }