2 * Copyright © 2016-2021 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.fragment.app.Fragment
25 import androidx.fragment.app.FragmentManager
26 import androidx.fragment.app.FragmentPagerAdapter
28 import com.stoutner.privacybrowser.R
29 import com.stoutner.privacybrowser.fragments.AboutVersionFragment
30 import com.stoutner.privacybrowser.fragments.AboutWebViewFragment
32 import java.util.LinkedList
34 class AboutPagerAdapter(fragmentManager: FragmentManager, private val context: Context, private val blocklistVersions: Array<String>) :
35 FragmentPagerAdapter(fragmentManager, BEHAVIOR_RESUME_ONLY_CURRENT_FRAGMENT) {
36 // Define the class variables.
37 private val aboutFragmentList = LinkedList<Fragment>()
39 // Get the number of tabs.
40 override fun getCount(): Int {
41 // There are seven tabs.
45 // Get the name of each tab. Tab numbers start at 0.
46 override fun getPageTitle(tab: Int): CharSequence {
48 0 -> context.getString(R.string.version)
49 1 -> context.getString(R.string.permissions)
50 2 -> context.getString(R.string.privacy_policy)
51 3 -> context.getString(R.string.changelog)
52 4 -> context.getString(R.string.licenses)
53 5 -> context.getString(R.string.contributors)
54 6 -> context.getString(R.string.links)
60 override fun getItem(tabNumber: Int): Fragment {
61 // Create the tab fragment and add it to the list.
63 // Add the version tab to the list.
64 aboutFragmentList.add(AboutVersionFragment.createTab(blocklistVersions))
66 // Add the WebView tab to the list.
67 aboutFragmentList.add(AboutWebViewFragment.createTab(tabNumber))
70 // Return the tab fragment.
71 return aboutFragmentList[tabNumber]
75 fun getTabFragment(tabNumber: Int): Fragment {
76 // Return the tab fragment.
77 return aboutFragmentList[tabNumber]