aboutsummaryrefslogtreecommitdiff
path: root/res/layout
diff options
context:
space:
mode:
Diffstat (limited to 'res/layout')
-rw-r--r--res/layout/about_dialog.xml33
-rw-r--r--res/layout/find_activity.xml36
-rw-r--r--res/layout/welcome_dialog.xml52
3 files changed, 52 insertions, 69 deletions
diff --git a/res/layout/about_dialog.xml b/res/layout/about_dialog.xml
deleted file mode 100644
index 03a68ad..0000000
--- a/res/layout/about_dialog.xml
+++ /dev/null
@@ -1,33 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
- android:layout_width="fill_parent"
- android:layout_height="fill_parent"
- android:orientation="vertical" >
-
- <TextView
- android:id="@+id/textView1"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:text="@string/app_name"
- android:textAppearance="?android:attr/textAppearanceLarge" />
-
- <TextView
- android:id="@+id/textView2"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:text="@string/about_menu_instruction_text" />
-
- <ExpandableListView
- android:id="@+id/helpExpandableListView"
- android:layout_width="fill_parent"
- android:layout_height="0dip"
- android:layout_weight="0.05" >
- </ExpandableListView>
-
- <Button
- android:id="@+id/donateButton"
- android:layout_width="fill_parent"
- android:layout_height="wrap_content"
- android:text="@string/donate_button" />
-
-</LinearLayout> \ No newline at end of file
diff --git a/res/layout/find_activity.xml b/res/layout/find_activity.xml
deleted file mode 100644
index 6b19c67..0000000
--- a/res/layout/find_activity.xml
+++ /dev/null
@@ -1,36 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
- android:layout_width="fill_parent"
- android:layout_height="fill_parent"
- android:gravity="center|top"
- android:orientation="vertical"
- android:theme="@android:style/Theme.NoTitleBar" >
-
- <EditText
- android:id="@+id/searchBar"
- android:layout_width="fill_parent"
- android:layout_height="wrap_content"
- android:inputType="textNoSuggestions" />
-
- <LinearLayout
- xmlns:android="http://schemas.android.com/apk/res/android"
- android:id="@+id/findContentLayout"
- android:layout_width="fill_parent"
- android:layout_height="fill_parent"
- android:gravity="center"
- android:orientation="vertical" >
-
- <ProgressBar
- android:id="@+id/findLoadBar"
- style="?android:attr/progressBarStyleLarge"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content" />
-
- <ListView
- android:id="@+id/findListItems"
- android:layout_width="fill_parent"
- android:layout_height="wrap_content" >
- </ListView>
- </LinearLayout>
-
-</LinearLayout> \ No newline at end of file
diff --git a/res/layout/welcome_dialog.xml b/res/layout/welcome_dialog.xml
new file mode 100644
index 0000000..2a8b5cd
--- /dev/null
+++ b/res/layout/welcome_dialog.xml
@@ -0,0 +1,52 @@
+<?xml version="1.0" encoding="utf-8"?>
+<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
+ android:id="@+id/layout_root"
+ android:layout_width="fill_parent"
+ android:layout_height="fill_parent"
+ android:orientation="vertical"
+ android:padding="2dp" >
+
+ <LinearLayout
+ android:id="@+id/linearLayout1"
+ android:layout_width="match_parent"
+ android:layout_height="wrap_content"
+ android:layout_alignParentBottom="true"
+ android:layout_alignParentLeft="true"
+ android:gravity="center"
+ android:orientation="horizontal" >
+
+ <Button
+ android:id="@+id/welcomeDialogButton"
+ android:layout_width="wrap_content"
+ android:layout_height="wrap_content"
+ android:text="@string/welcome_dialog_button_text" />
+ </LinearLayout>
+
+ <TextView
+ android:id="@+id/textView3"
+ android:layout_width="wrap_content"
+ android:layout_height="wrap_content"
+ android:layout_alignParentLeft="true"
+ android:layout_below="@+id/textView4"
+ android:text="@string/welcome_dialog_version"
+ android:textAppearance="?android:attr/textAppearanceMedium" />
+
+ <TextView
+ android:id="@+id/textView4"
+ android:layout_width="wrap_content"
+ android:layout_height="wrap_content"
+ android:layout_alignParentLeft="true"
+ android:text="@string/welcome_dialog_copyright"
+ android:textAppearance="?android:attr/textAppearanceMedium" />
+
+ <TextView
+ android:id="@+id/welcomeDialogMessage"
+ android:layout_width="match_parent"
+ android:layout_height="305dp"
+ android:layout_above="@+id/linearLayout1"
+ android:layout_alignParentLeft="true"
+ android:layout_below="@+id/textView3"
+ android:scrollbars="vertical"
+ android:text="@string/welcome_dialog_install_message" />
+
+</RelativeLayout> \ No newline at end of file