X-Git-Url: https://gitweb.stoutner.com/?a=blobdiff_plain;f=app%2Fsrc%2Fmain%2Fjava%2Fcom%2Fstoutner%2Fprivacybrowser%2Fadapters%2FGuidePagerAdapter.java;h=eca0383242346c4c125c9640bac1b8564f451bc6;hb=b0f0322c62a5cd25e587f1760a33fcf60c279954;hp=59ad9f31d0860f3f2c76bb8363d3a1cc5a282589;hpb=81179d84ced6b43360d42a4b44eb8fb329532ff4;p=PrivacyBrowserAndroid.git diff --git a/app/src/main/java/com/stoutner/privacybrowser/adapters/GuidePagerAdapter.java b/app/src/main/java/com/stoutner/privacybrowser/adapters/GuidePagerAdapter.java index 59ad9f31..eca03832 100644 --- a/app/src/main/java/com/stoutner/privacybrowser/adapters/GuidePagerAdapter.java +++ b/app/src/main/java/com/stoutner/privacybrowser/adapters/GuidePagerAdapter.java @@ -1,20 +1,20 @@ /* - * Copyright © 2016-2019 Soren Stoutner . + * Copyright © 2016-2020,2022 Soren Stoutner . * - * This file is part of Privacy Browser . + * This file is part of Privacy Browser Android . * - * Privacy Browser is free software: you can redistribute it and/or modify + * Privacy Browser Android 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, + * Privacy Browser Android 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 . + * along with Privacy Browser Android. If not, see . */ package com.stoutner.privacybrowser.adapters; @@ -27,24 +27,25 @@ import androidx.fragment.app.FragmentManager; import androidx.fragment.app.FragmentPagerAdapter; import com.stoutner.privacybrowser.R; -import com.stoutner.privacybrowser.fragments.GuideTabFragment; +import com.stoutner.privacybrowser.fragments.GuideWebViewFragment; public class GuidePagerAdapter extends FragmentPagerAdapter { - // Define the class context variable. - private Context context; + // Define the class variables. + private final Context context; + // The default constructor. public GuidePagerAdapter(FragmentManager fragmentManager, Context context) { // Run the default commands. super(fragmentManager, BEHAVIOR_RESUME_ONLY_CURRENT_FRAGMENT); - // Store the context in a class variable. + // Store the class variables. this.context = context; } @Override // Get the count of the number of tabs. public int getCount() { - return 10; + return 9; } @Override @@ -78,9 +79,6 @@ public class GuidePagerAdapter extends FragmentPagerAdapter { case 8: return context.getString(R.string.tracking_ids); - case 9: - return context.getString(R.string.bookmarks); - default: return ""; } @@ -90,6 +88,6 @@ public class GuidePagerAdapter extends FragmentPagerAdapter { @NonNull // Setup each tab. public Fragment getItem(int tabNumber) { - return GuideTabFragment.createTab(tabNumber); + return GuideWebViewFragment.createTab(tabNumber); } } \ No newline at end of file