|
1
2
3
4
5
6
7
8
9
10
11
12
|
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/LinearLayout1"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" >
<TextView
android:id="@+id/textView1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center"
|
|
13
|
android:layout_weight="0.04"
|
|
14
15
|
android:text="@string/help"
android:textAppearance="?android:attr/textAppearanceLarge" />
|
|
16
17
18
19
20
21
22
23
24
25
26
|
<ScrollView
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="0.87" >
<TextView
android:id="@+id/textView2"
android:layout_width="match_parent"
android:layout_height="0dp" />
</ScrollView>
|
|
27
28
|
</LinearLayout>
|