1<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
2 xmlns:tools="http://schemas.android.com/tools"
3 android:layout_width="match_parent"
4 android:layout_height="match_parent"
5 android:background="?attr/color_background_secondary"
6 tools:context="eu.siacs.conversations.ui.AboutActivity"
7 android:orientation="vertical">
8
9 <include layout="@layout/toolbar" />
10
11 <ScrollView
12 android:layout_width="match_parent"
13 android:layout_height="match_parent">
14
15 <android.support.v7.widget.CardView
16 android:layout_width="match_parent"
17 android:layout_height="wrap_content"
18 android:layout_marginBottom="@dimen/activity_vertical_margin"
19 android:layout_marginLeft="@dimen/activity_horizontal_margin"
20 android:layout_marginRight="@dimen/activity_horizontal_margin"
21 android:layout_marginTop="@dimen/activity_vertical_margin">
22
23 <TextView
24 android:layout_width="wrap_content"
25 android:layout_height="wrap_content"
26 android:autoLink="web"
27 android:fontFamily="monospace"
28 android:linksClickable="true"
29 android:padding="@dimen/card_padding_regular"
30 android:text="@string/pref_about_message"
31 android:textAppearance="@style/TextAppearance.AppCompat.Body1"
32 android:typeface="monospace"/>
33 </android.support.v7.widget.CardView>
34 </ScrollView>
35</LinearLayout>