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