X-Git-Url: https://gitweb.stoutner.com/?p=PrivacyBrowserAndroid.git;a=blobdiff_plain;f=app%2Fsrc%2Fmain%2Fjava%2Fcom%2Fstoutner%2Fprivacybrowser%2Factivities%2FAboutActivity.kt;h=bd5b3b68199096f14181ebb969c4eb9cf094ff9e;hp=94023b37028070ddba86b477e018cc9922602bff;hb=cd609c9888924549c03cd6509ed889cdb052d5bb;hpb=f4126c24a54f9af846371bb1515e072a818060c1 diff --git a/app/src/main/java/com/stoutner/privacybrowser/activities/AboutActivity.kt b/app/src/main/java/com/stoutner/privacybrowser/activities/AboutActivity.kt index 94023b37..bd5b3b68 100644 --- a/app/src/main/java/com/stoutner/privacybrowser/activities/AboutActivity.kt +++ b/app/src/main/java/com/stoutner/privacybrowser/activities/AboutActivity.kt @@ -60,8 +60,9 @@ class AboutActivity : AppCompatActivity(), SaveListener { // Get a handle for the shared preferences. val sharedPreferences = PreferenceManager.getDefaultSharedPreferences(this) - // Get the screenshot preference. + // Get the preferences. val allowScreenshots = sharedPreferences.getBoolean(getString(R.string.allow_screenshots_key), false) + val bottomAppBar = sharedPreferences.getBoolean(getString(R.string.bottom_app_bar_key), false) // Disable screenshots if not allowed. if (!allowScreenshots) { @@ -81,7 +82,11 @@ class AboutActivity : AppCompatActivity(), SaveListener { val blocklistVersions = launchingIntent.getStringArrayExtra(BLOCKLIST_VERSIONS)!! // Set the content view. - setContentView(R.layout.about_coordinatorlayout) + if (bottomAppBar) { + setContentView(R.layout.about_coordinatorlayout_bottom_appbar) + } else { + setContentView(R.layout.about_coordinatorlayout_top_appbar) + } // Get handles for the views. val toolbar = findViewById(R.id.about_toolbar)