]> gitweb.stoutner.com Git - PrivacyBrowserAndroid.git/blob - app/src/main/java/com/stoutner/privacybrowser/adapters/GuidePagerAdapter.java
fccf188316fc88efae4251b09cfae69a88440cf4
[PrivacyBrowserAndroid.git] / app / src / main / java / com / stoutner / privacybrowser / adapters / GuidePagerAdapter.java
1 /*
2  * Copyright © 2016-2020 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.GuideTabFragment;
31
32 public class GuidePagerAdapter extends FragmentPagerAdapter {
33     // Define the class context variable.
34     private Context context;
35
36     public GuidePagerAdapter(FragmentManager fragmentManager, Context context) {
37         // Run the default commands.
38         super(fragmentManager, BEHAVIOR_RESUME_ONLY_CURRENT_FRAGMENT);
39
40         // Store the context in a class variable.
41         this.context = context;
42     }
43
44     @Override
45     // Get the count of the number of tabs.
46     public int getCount() {
47         return 9;
48     }
49
50     @Override
51     // Get the name of each tab.  Tab numbers start at 0.
52     public CharSequence getPageTitle(int tab) {
53         switch (tab) {
54             case 0:
55                 return context.getString(R.string.overview);
56
57             case 1:
58                 return context.getString(R.string.javascript);
59
60             case 2:
61                 return context.getString(R.string.local_storage);
62
63             case 3:
64                 return context.getString(R.string.user_agent);
65
66             case 4:
67                 return context.getString(R.string.requests);
68
69             case 5:
70                 return context.getString(R.string.domain_settings);
71
72             case 6:
73                 return context.getString(R.string.ssl_certificates);
74
75             case 7:
76                 return context.getString(R.string.proxies);
77
78             case 8:
79                 return context.getString(R.string.tracking_ids);
80
81             default:
82                 return "";
83         }
84     }
85
86     @Override
87     @NonNull
88     // Setup each tab.
89     public Fragment getItem(int tabNumber) {
90         return GuideTabFragment.createTab(tabNumber);
91     }
92 }