activity_about.xml

 1<layout xmlns:android="http://schemas.android.com/apk/res/android"
 2    xmlns:tools="http://schemas.android.com/tools">
 3
 4    <LinearLayout
 5        android:layout_width="match_parent"
 6        android:layout_height="match_parent"
 7        android:fitsSystemWindows="true"
 8        android:orientation="vertical">
 9
10        <com.google.android.material.appbar.AppBarLayout
11            android:layout_width="match_parent"
12            android:layout_height="wrap_content">
13
14            <com.google.android.material.appbar.MaterialToolbar
15                android:id="@+id/toolbar"
16                android:layout_width="match_parent"
17                android:layout_height="wrap_content"
18                android:minHeight="?attr/actionBarSize" />
19
20        </com.google.android.material.appbar.AppBarLayout>
21
22        <ScrollView
23            android:layout_width="match_parent"
24            android:layout_height="match_parent">
25
26            <LinearLayout
27                android:layout_width="match_parent"
28                android:layout_height="wrap_content">
29
30                <TextView
31                    android:id="@+id/about"
32                    android:layout_width="wrap_content"
33                    android:layout_height="wrap_content"
34                    android:layout_margin="@dimen/card_padding_regular"
35                    android:fontFamily="monospace"
36                    android:textAppearance="?textAppearanceBodyMedium"
37                    android:typeface="monospace"
38                    tools:text="@string/pref_about_message" />
39            </LinearLayout>
40        </ScrollView>
41    </LinearLayout>
42</layout>