aboutsummaryrefslogtreecommitdiff
path: root/res/layout/find_activity.xml
diff options
context:
space:
mode:
authorChristopher Baines <cbaines8@gmail.com>2012-02-28 22:22:27 +0000
committerChristopher Baines <cbaines8@gmail.com>2012-02-28 22:22:27 +0000
commit5f2b8712079aeb5b7cee476b06b36013edac4fb3 (patch)
tree99c01ccf78dc130a8ca9b8a2d19384b9f91e1768 /res/layout/find_activity.xml
parent0b5aefbe0ff01638dd264222c5368ad02a0fe1ee (diff)
downloadsouthamptonuniversitymap-5f2b8712079aeb5b7cee476b06b36013edac4fb3.tar
southamptonuniversitymap-5f2b8712079aeb5b7cee476b06b36013edac4fb3.tar.gz
Next release, many improvements.
Diffstat (limited to 'res/layout/find_activity.xml')
-rw-r--r--res/layout/find_activity.xml36
1 files changed, 36 insertions, 0 deletions
diff --git a/res/layout/find_activity.xml b/res/layout/find_activity.xml
new file mode 100644
index 0000000..6b19c67
--- /dev/null
+++ b/res/layout/find_activity.xml
@@ -0,0 +1,36 @@
+<?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