X-Git-Url: https://gitweb.stoutner.com/?a=blobdiff_plain;f=app%2Fsrc%2Fmain%2Fjava%2Fcom%2Fstoutner%2Fprivacybrowser%2Fadapters%2FAboutPagerAdapter.kt;fp=app%2Fsrc%2Fmain%2Fjava%2Fcom%2Fstoutner%2Fprivacybrowser%2Fadapters%2FAboutPagerAdapter.kt;h=51967501be8f04de9783444c16f3d1c870ec18d9;hb=91154b307513e7bc6958b27fba518e4f9b564cf9;hp=0000000000000000000000000000000000000000;hpb=4ce562261f47e06c454504262a24f61f46bb393d;p=PrivacyBrowserAndroid.git diff --git a/app/src/main/java/com/stoutner/privacybrowser/adapters/AboutPagerAdapter.kt b/app/src/main/java/com/stoutner/privacybrowser/adapters/AboutPagerAdapter.kt new file mode 100644 index 00000000..51967501 --- /dev/null +++ b/app/src/main/java/com/stoutner/privacybrowser/adapters/AboutPagerAdapter.kt @@ -0,0 +1,79 @@ +/* + * Copyright © 2016-2021 Soren Stoutner . + * + * This file is part of Privacy Browser . + * + * Privacy Browser is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * Privacy Browser is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with Privacy Browser. If not, see . + */ + +package com.stoutner.privacybrowser.adapters + +import android.content.Context + +import androidx.fragment.app.Fragment +import androidx.fragment.app.FragmentManager +import androidx.fragment.app.FragmentPagerAdapter + +import com.stoutner.privacybrowser.R +import com.stoutner.privacybrowser.fragments.AboutVersionFragment +import com.stoutner.privacybrowser.fragments.AboutWebViewFragment + +import java.util.LinkedList + +class AboutPagerAdapter(fragmentManager: FragmentManager, private val context: Context, private val blocklistVersions: Array) : + FragmentPagerAdapter(fragmentManager, BEHAVIOR_RESUME_ONLY_CURRENT_FRAGMENT) { + // Define the class variables. + private val aboutFragmentList = LinkedList() + + // Get the number of tabs. + override fun getCount(): Int { + // There are seven tabs. + return 7 + } + + // Get the name of each tab. Tab numbers start at 0. + override fun getPageTitle(tab: Int): CharSequence { + return when (tab) { + 0 -> context.getString(R.string.version) + 1 -> context.getString(R.string.permissions) + 2 -> context.getString(R.string.privacy_policy) + 3 -> context.getString(R.string.changelog) + 4 -> context.getString(R.string.licenses) + 5 -> context.getString(R.string.contributors) + 6 -> context.getString(R.string.links) + else -> "" + } + } + + // Setup each tab. + override fun getItem(tabNumber: Int): Fragment { + // Create the tab fragment and add it to the list. + if (tabNumber == 0) { + // Add the version tab to the list. + aboutFragmentList.add(AboutVersionFragment.createTab(blocklistVersions)) + } else { + // Add the WebView tab to the list. + aboutFragmentList.add(AboutWebViewFragment.createTab(tabNumber)) + } + + // Return the tab fragment. + return aboutFragmentList[tabNumber] + } + + // Get a tab. + fun getTabFragment(tabNumber: Int): Fragment { + // Return the tab fragment. + return aboutFragmentList[tabNumber] + } +} \ No newline at end of file