]> gitweb.stoutner.com Git - PrivacyBrowserAndroid.git/blob - app/src/main/java/com/stoutner/privacybrowser/activities/AboutActivity.java
Move Clear and Exit to the top of the navigation menu. https://redmine.stoutner...
[PrivacyBrowserAndroid.git] / app / src / main / java / com / stoutner / privacybrowser / activities / AboutActivity.java
1 /*
2  * Copyright © 2016-2019 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.os.Bundle;
23 import android.view.WindowManager;
24
25 import androidx.appcompat.app.ActionBar;
26 import androidx.appcompat.app.AppCompatActivity;
27 import androidx.appcompat.widget.Toolbar;
28 import androidx.fragment.app.Fragment;
29 import androidx.fragment.app.FragmentManager;
30 import androidx.fragment.app.FragmentPagerAdapter;
31 import androidx.viewpager.widget.ViewPager;
32
33 import com.google.android.material.tabs.TabLayout;
34
35 import com.stoutner.privacybrowser.fragments.AboutTabFragment;
36 import com.stoutner.privacybrowser.R;
37
38 public class AboutActivity extends AppCompatActivity {
39     @Override
40     protected void onCreate(Bundle savedInstanceState) {
41         // Disable screenshots if not allowed.
42         if (!MainWebViewActivity.allowScreenshots) {
43             getWindow().addFlags(WindowManager.LayoutParams.FLAG_SECURE);
44         }
45
46         // Set the theme.
47         if (MainWebViewActivity.darkTheme) {
48             setTheme(R.style.PrivacyBrowserDark_SecondaryActivity);
49         } else {
50             setTheme(R.style.PrivacyBrowserLight_SecondaryActivity);
51         }
52
53         // Run the default commands.
54         super.onCreate(savedInstanceState);
55
56         // Set the content view.
57         setContentView(R.layout.about_coordinatorlayout);
58
59         // Get handles for the views.
60         Toolbar toolbar = findViewById(R.id.about_toolbar);
61         TabLayout aboutTabLayout = findViewById(R.id.about_tablayout);
62         ViewPager aboutViewPager = findViewById(R.id.about_viewpager);
63
64         // Set the action bar.  `SupportActionBar` must be used until the minimum API is >= 21.
65         setSupportActionBar(toolbar);
66
67         // Get a handle for the action bar.
68         final ActionBar actionBar = getSupportActionBar();
69
70         // Remove the incorrect lint warning that the action bar might be null.
71         assert actionBar != null;  //
72
73         // Display the home arrow on action bar.
74         actionBar.setDisplayHomeAsUpEnabled(true);
75
76         //  Setup the ViewPager.
77         aboutViewPager.setAdapter(new AboutPagerAdapter(getSupportFragmentManager()));
78
79         // Connect the tab layout to the view pager.
80         aboutTabLayout.setupWithViewPager(aboutViewPager);
81     }
82
83     private class AboutPagerAdapter extends FragmentPagerAdapter {
84         private AboutPagerAdapter(FragmentManager fragmentManager) {
85             // Run the default commands.
86             super(fragmentManager);
87         }
88
89         @Override
90         // Get the count of the number of tabs.
91         public int getCount() {
92             return 7;
93         }
94
95         @Override
96         // Get the name of each tab.  Tab numbers start at 0.
97         public CharSequence getPageTitle(int tab) {
98             switch (tab) {
99                 case 0:
100                     return getString(R.string.version);
101
102                 case 1:
103                     return getString(R.string.permissions);
104
105                 case 2:
106                     return getString(R.string.privacy_policy);
107
108                 case 3:
109                     return getString(R.string.changelog);
110
111                 case 4:
112                     return getString(R.string.licenses);
113
114                 case 5:
115                     return getString(R.string.contributors);
116
117                 case 6:
118                     return getString(R.string.links);
119
120                 default:
121                     return "";
122             }
123         }
124
125         @Override
126         // Setup each tab.
127         public Fragment getItem(int tab) {
128             return AboutTabFragment.createTab(tab);
129         }
130     }
131 }