]> gitweb.stoutner.com Git - PrivacyBrowserAndroid.git/blob - app/src/main/java/com/stoutner/privacybrowser/adapters/GuideStateAdapter.kt
Switch the FragmentPagerAdapters to FragmentStateAdapters. https://redmine.stoutner...
[PrivacyBrowserAndroid.git] / app / src / main / java / com / stoutner / privacybrowser / adapters / GuideStateAdapter.kt
1 /*
2  * Copyright 2016-2020,2022-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 androidx.fragment.app.Fragment
23 import androidx.fragment.app.FragmentActivity
24 import androidx.viewpager2.adapter.FragmentStateAdapter
25
26 import com.stoutner.privacybrowser.fragments.GuideWebViewFragment
27
28 class GuideStateAdapter(fragmentActivity: FragmentActivity) : FragmentStateAdapter(fragmentActivity) {
29     // Get the number of tabs.
30     override fun getItemCount(): Int {
31         // There are 10 tabs.
32         return 10
33     }
34
35     // Create the tab.
36     override fun createFragment(tabNumber: Int): Fragment {
37         // Return the tab fragment.
38         return GuideWebViewFragment.createTab(tabNumber)
39     }
40 }