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