1<?xml version="1.0" encoding="utf-8"?>
2<layout xmlns:android="http://schemas.android.com/apk/res/android"
3 xmlns:app="http://schemas.android.com/apk/res-auto">
4
5 <RelativeLayout
6 android:layout_width="fill_parent"
7 android:layout_height="fill_parent">
8
9 <TextView
10 android:id="@+id/desc"
11 android:layout_width="match_parent"
12 android:layout_height="wrap_content"
13 android:gravity="center"
14 android:minHeight="?android:attr/listPreferredItemHeightSmall"
15 android:paddingLeft="8dp"
16 android:paddingRight="8dp"
17 android:textAppearance="@style/TextAppearance.Conversations.Body1"
18 android:textColor="?attr/edit_text_color" />
19
20 <WebView
21 android:id="@+id/webview"
22 android:layout_below="@+id/desc"
23 android:layout_width="match_parent"
24 android:layout_height="match_parent" />
25
26 <ProgressBar
27 android:id="@+id/progressbar"
28 android:layout_width="match_parent"
29 android:layout_height="130dp"
30 android:paddingLeft="8dp"
31 android:paddingRight="8dp"
32 android:paddingBottom="16dp" />
33
34 </RelativeLayout>
35
36</layout>