aboutsummaryrefslogtreecommitdiff
path: root/subsonic-android/res/layout/help.xml
diff options
context:
space:
mode:
Diffstat (limited to 'subsonic-android/res/layout/help.xml')
-rw-r--r--subsonic-android/res/layout/help.xml42
1 files changed, 42 insertions, 0 deletions
diff --git a/subsonic-android/res/layout/help.xml b/subsonic-android/res/layout/help.xml
new file mode 100644
index 00000000..f22dee37
--- /dev/null
+++ b/subsonic-android/res/layout/help.xml
@@ -0,0 +1,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>