]> gitweb.stoutner.com Git - PrivacyBrowserAndroid.git/blob - app/src/main/java/com/stoutner/privacybrowser/adapters/GuidePagerAdapter.kt
Fix crash when adding domain settings with null domain. https://redmine.stoutner...
[PrivacyBrowserAndroid.git] / app / src / main / java / com / stoutner / privacybrowser / adapters / GuidePagerAdapter.kt
1 /*
2  * Copyright © 2016-2020,2022 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.GuideWebViewFragment
30
31 class GuidePagerAdapter(fragmentManager: FragmentManager, private val context: Context) : FragmentPagerAdapter(fragmentManager, BEHAVIOR_RESUME_ONLY_CURRENT_FRAGMENT) {
32     // Get the count of the number of tabs.
33     override fun getCount(): Int {
34         return 9
35     }
36
37     // Get the name of each tab.  Tab numbers start at 0.
38     override fun getPageTitle(tab: Int): CharSequence {
39         return when (tab) {
40             0 -> context.getString(R.string.overview)
41             1 -> context.getString(R.string.javascript)
42             2 -> context.getString(R.string.local_storage)
43             3 -> context.getString(R.string.user_agent)
44             4 -> context.getString(R.string.requests)
45             5 -> context.getString(R.string.domain_settings)
46             6 -> context.getString(R.string.ssl_certificates)
47             7 -> context.getString(R.string.proxies)
48             8 -> context.getString(R.string.tracking_ids)
49             else -> ""
50         }
51     }
52
53     // Setup each tab.
54     override fun getItem(tabNumber: Int): Fragment {
55         return GuideWebViewFragment.createTab(tabNumber)
56     }
57 }