X-Git-Url: https://gitweb.stoutner.com/?p=PrivacyBrowserAndroid.git;a=blobdiff_plain;f=app%2Fsrc%2Fmain%2Fjava%2Fcom%2Fstoutner%2Fprivacybrowser%2Factivities%2FGuideActivity.java;h=d6809e57f6923b2f2b90462b33ae7471e2c616b6;hp=00872252abe550c99e89876503bfcbab0a633133;hb=7de44ca8dbf4330ee6fa3d9146940c1016edd608;hpb=dab795a417200c6094da1b1aa25c7bb3e638c686 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..d6809e57 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 . * @@ -75,14 +75,18 @@ 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. + // Link the tab layout to the view pager. aboutTabLayout.setupWithViewPager(aboutViewPager); } -} +} \ No newline at end of file