X-Git-Url: https://gitweb.stoutner.com/?a=blobdiff_plain;f=app%2Fsrc%2Fmain%2Fjava%2Fcom%2Fstoutner%2Fprivacybrowser%2Factivities%2FGuideActivity.java;h=54c87a87eaa26a6638d2201c73b29d2bf04d7b1c;hb=8d4d8f41d729dd0354d12fd99bd7d91b436feee5;hp=00872252abe550c99e89876503bfcbab0a633133;hpb=81179d84ced6b43360d42a4b44eb8fb329532ff4;p=PrivacyBrowserAndroid.git diff --git a/app/src/main/java/com/stoutner/privacybrowser/activities/GuideActivity.java b/app/src/main/java/com/stoutner/privacybrowser/activities/GuideActivity.java index 00872252..54c87a87 100644 --- a/app/src/main/java/com/stoutner/privacybrowser/activities/GuideActivity.java +++ b/app/src/main/java/com/stoutner/privacybrowser/activities/GuideActivity.java @@ -1,5 +1,5 @@ /* - * Copyright © 2016-2019 Soren Stoutner . + * Copyright © 2016-2020 Soren Stoutner . * * This file is part of Privacy Browser . * @@ -40,8 +40,7 @@ public class GuideActivity extends AppCompatActivity { // Get a handle for the shared preferences. SharedPreferences sharedPreferences = PreferenceManager.getDefaultSharedPreferences(this); - // Get the theme and screenshot preferences. - boolean darkTheme = sharedPreferences.getBoolean("dark_theme", false); + // Get the screenshot preference. boolean allowScreenshots = sharedPreferences.getBoolean("allow_screenshots", false); // Disable screenshots if not allowed. @@ -50,11 +49,7 @@ public class GuideActivity extends AppCompatActivity { } // Set the theme. - if (darkTheme) { - setTheme(R.style.PrivacyBrowserDark_SecondaryActivity); - } else { - setTheme(R.style.PrivacyBrowserLight_SecondaryActivity); - } + setTheme(R.style.PrivacyBrowser); // Run the default commands. super.onCreate(savedInstanceState); @@ -75,14 +70,21 @@ public class GuideActivity extends AppCompatActivity { // Display the home arrow on the action bar. actionBar.setDisplayHomeAsUpEnabled(true); - // Setup the ViewPager. + // Get a handle for the view pager and the tab layout. ViewPager aboutViewPager = findViewById(R.id.guide_viewpager); - assert aboutViewPager != null; // This assert removes the incorrect warning in Android Studio on the following line that aboutViewPager might be null. + TabLayout aboutTabLayout = findViewById(R.id.guide_tablayout); + + // Remove the incorrect lint warnings that the views might be null + assert aboutViewPager != null; + assert aboutTabLayout != null; + + // Set the view pager adapter. aboutViewPager.setAdapter(new GuidePagerAdapter(getSupportFragmentManager(), getApplicationContext())); - // Setup the TabLayout and connect it to the ViewPager. - TabLayout aboutTabLayout = findViewById(R.id.guide_tablayout); - assert aboutTabLayout != null; // This assert removes the incorrect warning in Android Studio on the following line that aboutTabLayout might be null. + // Keep all the tabs in memory. + aboutViewPager.setOffscreenPageLimit(10); + + // Link the tab layout to the view pager. aboutTabLayout.setupWithViewPager(aboutViewPager); } -} +} \ No newline at end of file