blob: f22dee37180fc81b9f9221ea2e2a781d611b1d22 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
|
<?xml version="1.0" encoding="UTF-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<LinearLayout android:id="@+id/help_buttons"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_weight="0"
android:layout_alignParentBottom="true"
android:padding="4dip"
android:gravity="center_horizontal"
android:background="#ffcccccc">
<Button android:id="@+id/help_back"
android:text="@string/help.back"
android:layout_width="wrap_content"
android:layout_height="fill_parent"
android:layout_marginRight="5dip"
android:paddingLeft="25dip"
android:paddingRight="25dip"/>
<Button android:id="@+id/help_close"
android:text="@string/help.close"
android:layout_width="wrap_content"
android:layout_height="fill_parent"
android:layout_marginLeft="5dip"
android:paddingLeft="25dip"
android:paddingRight="25dip"/>
</LinearLayout>
<WebView
android:id="@+id/help_contents"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_above="@id/help_buttons"
android:layout_weight="1"
android:fadingEdge="vertical"
android:fadingEdgeLength="12dip"/>
</RelativeLayout>
|