2 * Copyright © 2016-2020 Soren Stoutner <soren@stoutner.com>.
4 * This file is part of Privacy Browser <https://www.stoutner.com/privacy-browser>.
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.
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.
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/>.
20 package com.stoutner.privacybrowser.adapters;
22 import android.content.Context;
24 import androidx.annotation.NonNull;
25 import androidx.fragment.app.Fragment;
26 import androidx.fragment.app.FragmentManager;
27 import androidx.fragment.app.FragmentPagerAdapter;
29 import com.stoutner.privacybrowser.R;
30 import com.stoutner.privacybrowser.fragments.GuideWebViewFragment;
32 public class GuidePagerAdapter extends FragmentPagerAdapter {
33 // Define the class variables.
34 private final Context context;
36 // The default constructor.
37 public GuidePagerAdapter(FragmentManager fragmentManager, Context context) {
38 // Run the default commands.
39 super(fragmentManager, BEHAVIOR_RESUME_ONLY_CURRENT_FRAGMENT);
41 // Store the class variables.
42 this.context = context;
46 // Get the count of the number of tabs.
47 public int getCount() {
52 // Get the name of each tab. Tab numbers start at 0.
53 public CharSequence getPageTitle(int tab) {
56 return context.getString(R.string.overview);
59 return context.getString(R.string.javascript);
62 return context.getString(R.string.local_storage);
65 return context.getString(R.string.user_agent);
68 return context.getString(R.string.requests);
71 return context.getString(R.string.domain_settings);
74 return context.getString(R.string.ssl_certificates);
77 return context.getString(R.string.proxies);
80 return context.getString(R.string.tracking_ids);
90 public Fragment getItem(int tabNumber) {
91 return GuideWebViewFragment.createTab(tabNumber);