]> gitweb.stoutner.com Git - PrivacyBrowserAndroid.git/blob - app/src/main/java/com/stoutner/privacybrowser/adapters/AboutPagerAdapter.kt
Release 3.14.
[PrivacyBrowserAndroid.git] / app / src / main / java / com / stoutner / privacybrowser / adapters / AboutPagerAdapter.kt
1 /*
2  * Copyright © 2016-2023 Soren Stoutner <soren@stoutner.com>.
3  *
4  * This file is part of Privacy Browser Android <https://www.stoutner.com/privacy-browser-android>.
5  *
6  * Privacy Browser Android 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 Android 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 Android.  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.AboutVersionFragment
30 import com.stoutner.privacybrowser.fragments.AboutWebViewFragment
31
32 import java.util.LinkedList
33
34 class AboutPagerAdapter(fragmentManager: FragmentManager, private val context: Context, private val filterListVersions: Array<String>) :
35     FragmentPagerAdapter(fragmentManager, BEHAVIOR_RESUME_ONLY_CURRENT_FRAGMENT) {
36
37     // Define the class variables.
38     private val aboutFragmentList = LinkedList<Fragment>()
39
40     // Get the number of tabs.
41     override fun getCount(): Int {
42         // There are seven tabs.
43         return 7
44     }
45
46     // Setup each tab.
47     override fun getItem(tabNumber: Int): Fragment {
48         // Create the tab fragment and add it to the list.
49         if (tabNumber == 0) {
50             // Add the version tab to the list.
51             aboutFragmentList.add(AboutVersionFragment.createTab(filterListVersions))
52         } else {
53             // Add the WebView tab to the list.
54             aboutFragmentList.add(AboutWebViewFragment.createTab(tabNumber))
55         }
56
57         // Return the tab fragment.
58         return aboutFragmentList[tabNumber]
59     }
60
61     // Get the name of each tab.  Tab numbers start at 0.
62     override fun getPageTitle(tab: Int): CharSequence {
63         return when (tab) {
64             0 -> context.getString(R.string.version)
65             1 -> context.getString(R.string.permissions)
66             2 -> context.getString(R.string.privacy_policy)
67             3 -> context.getString(R.string.changelog)
68             4 -> context.getString(R.string.licenses)
69             5 -> context.getString(R.string.contributors)
70             6 -> context.getString(R.string.links)
71             else -> ""
72         }
73     }
74 }