1
0
Fork 0

Fixes #1864 - made about page scrollable (#1865)

master
Kourosh 2019-04-21 23:44:53 +04:30 committed by Jeff Boek
parent 23e2b51db2
commit 08796a1f95
1 changed files with 55 additions and 49 deletions

View File

@ -2,11 +2,15 @@
<!-- This Source Code Form is subject to the terms of the Mozilla Public
- License, v. 2.0. If a copy of the MPL was not distributed with this
- file, You can obtain one at http://mozilla.org/MPL/2.0/. -->
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<androidx.constraintlayout.widget.ConstraintLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto" xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_height="wrap_content"
tools:context="org.mozilla.fenix.settings.AboutFragment">
<ImageView
@ -57,3 +61,5 @@
android:textAlignment="center" />
</androidx.constraintlayout.widget.ConstraintLayout>
</ScrollView>