1<ScrollView 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
8 <LinearLayout
9 android:layout_width="match_parent"
10 android:layout_height="wrap_content">
11
12 <android.support.v7.widget.CardView
13 android:layout_width="match_parent"
14 android:layout_height="wrap_content"
15 android:layout_marginBottom="@dimen/activity_vertical_margin"
16 android:layout_marginLeft="@dimen/activity_horizontal_margin"
17 android:layout_marginRight="@dimen/activity_horizontal_margin"
18 android:layout_marginTop="@dimen/activity_vertical_margin">
19
20 <TextView
21 android:layout_width="wrap_content"
22 android:layout_height="wrap_content"
23 android:autoLink="web"
24 android:fontFamily="monospace"
25 android:linksClickable="true"
26 android:padding="@dimen/card_padding_regular"
27 android:text="@string/pref_about_message"
28 android:textAppearance="@style/TextAppearance.AppCompat.Body1"
29 android:typeface="monospace"/>
30 </android.support.v7.widget.CardView>
31 </LinearLayout>
32</ScrollView>