]> gitweb.stoutner.com Git - PrivacyBrowserAndroid.git/blob - 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
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.fragment.app.Fragment;
25 import androidx.fragment.app.FragmentManager;
26 import androidx.fragment.app.FragmentPagerAdapter;
27
28 import com.stoutner.privacybrowser.R;
29 import com.stoutner.privacybrowser.fragments.AboutTabFragment;
30
31 public class AboutPagerAdapter extends FragmentPagerAdapter {
32     // Define the class variable to store the blocklist versions.
33     private Context context;
34     private String[] blocklistVersions;
35
36     public AboutPagerAdapter(FragmentManager fragmentManager, Context context, String[] blocklistVersions) {
37         // Run the default commands.
38         super(fragmentManager);
39
40         // Store the context in a class variable.
41         this.context = context;
42
43         // Store the blocklist versions in a class variable.
44         this.blocklistVersions = blocklistVersions;
45     }
46
47     @Override
48     // Get the count of the number of tabs.
49     public int getCount() {
50         return 7;
51     }
52
53     @Override
54     // Get the name of each tab.  Tab numbers start at 0.
55     public CharSequence getPageTitle(int tab) {
56         switch (tab) {
57             case 0:
58                 return context.getResources().getString(R.string.version);
59
60             case 1:
61                 return context.getResources().getString(R.string.permissions);
62
63             case 2:
64                 return context.getResources().getString(R.string.privacy_policy);
65
66             case 3:
67                 return context.getResources().getString(R.string.changelog);
68
69             case 4:
70                 return context.getResources().getString(R.string.licenses);
71
72             case 5:
73                 return context.getResources().getString(R.string.contributors);
74
75             case 6:
76                 return context.getResources().getString(R.string.links);
77
78             default:
79                 return "";
80         }
81     }
82
83     @Override
84     // Setup each tab.
85     public Fragment getItem(int tabNumber) {
86         return AboutTabFragment.createTab(tabNumber, blocklistVersions);
87     }
88 }