fragment_info.xml revision 4ae1a87883045d820ffd6e1b8a95c13b1919e00a
1<?xml version="1.0" encoding="utf-8"?>
2<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
3    android:layout_width="match_parent"
4    android:layout_height="match_parent"
5    android:orientation="vertical" >
6
7    <ScrollView
8        android:id="@+id/info_text_scroll"
9        android:layout_width="match_parent"
10        android:layout_height="0dp"
11        android:layout_weight="1" >
12
13        <TextView
14            android:id="@+id/info_text"
15            android:layout_width="wrap_content"
16            android:layout_height="wrap_content"
17            android:paddingLeft="3dp"
18            android:paddingRight="3dp" />
19
20    </ScrollView>
21
22    <Button
23        android:id="@+id/info_ok_button"
24        android:layout_width="wrap_content"
25        android:layout_height="wrap_content"
26        android:layout_gravity="center"
27        android:text="@string/info_ok_button_label" />
28
29</LinearLayout>