]> gitweb.stoutner.com Git - PrivacyBrowserAndroid.git/blob - app/src/main/java/com/stoutner/privacybrowser/activities/GuideActivity.java
Display memory usage information in About > Version. https://redmine.stoutner.com...
[PrivacyBrowserAndroid.git] / app / src / main / java / com / stoutner / privacybrowser / activities / GuideActivity.java
1 /*
2  * Copyright © 2016-2020 Soren Stoutner <soren@stoutner.com>.
3  *
4  * This file is part of Privacy Browser <https://www.stoutner.com/privacy-browser>.
5  *
6  * Privacy Browser 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 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.  If not, see <http://www.gnu.org/licenses/>.
18  */
19
20 package com.stoutner.privacybrowser.activities;
21
22 import android.content.SharedPreferences;
23 import android.os.Bundle;
24 import android.preference.PreferenceManager;
25 import android.view.WindowManager;
26
27 import androidx.appcompat.app.ActionBar;
28 import androidx.appcompat.app.AppCompatActivity;
29 import androidx.appcompat.widget.Toolbar;
30 import androidx.viewpager.widget.ViewPager;
31
32 import com.google.android.material.tabs.TabLayout;
33
34 import com.stoutner.privacybrowser.adapters.GuidePagerAdapter;
35 import com.stoutner.privacybrowser.R;
36
37 public class GuideActivity extends AppCompatActivity {
38     @Override
39     protected void onCreate(Bundle savedInstanceState) {
40         // Get a handle for the shared preferences.
41         SharedPreferences sharedPreferences = PreferenceManager.getDefaultSharedPreferences(this);
42
43         // Get the screenshot preference.
44         boolean allowScreenshots = sharedPreferences.getBoolean("allow_screenshots", false);
45
46         // Disable screenshots if not allowed.
47         if (!allowScreenshots) {
48             getWindow().addFlags(WindowManager.LayoutParams.FLAG_SECURE);
49         }
50
51         // Set the theme.
52         setTheme(R.style.PrivacyBrowser);
53
54         // Run the default commands.
55         super.onCreate(savedInstanceState);
56
57         // Set the content view.
58         setContentView(R.layout.guide_coordinatorlayout);
59
60         // The AndroidX toolbar must be used until the minimum API is >= 21.
61         Toolbar toolbar = findViewById(R.id.guide_toolbar);
62         setSupportActionBar(toolbar);
63
64         // Get a handle for the action bar.
65         final ActionBar actionBar = getSupportActionBar();
66
67         // Remove the incorrect lint warning that the action bar might be null.
68         assert actionBar != null;
69
70         // Display the home arrow on the action bar.
71         actionBar.setDisplayHomeAsUpEnabled(true);
72
73         //  Get a handle for the view pager and the tab layout.
74         ViewPager aboutViewPager = findViewById(R.id.guide_viewpager);
75         TabLayout aboutTabLayout = findViewById(R.id.guide_tablayout);
76
77         // Remove the incorrect lint warnings that the views might be null
78         assert aboutViewPager != null;
79         assert aboutTabLayout != null;
80
81         // Set the view pager adapter.
82         aboutViewPager.setAdapter(new GuidePagerAdapter(getSupportFragmentManager(), getApplicationContext()));
83
84         // Keep all the tabs in memory.
85         aboutViewPager.setOffscreenPageLimit(10);
86
87         // Link the tab layout to the view pager.
88         aboutTabLayout.setupWithViewPager(aboutViewPager);
89     }
90 }