aboutsummaryrefslogtreecommitdiff
path: root/res/layout/bus_route_activity.xml
diff options
context:
space:
mode:
authorChristopher Baines <cbaines8@gmail.com>2012-02-28 22:27:49 +0000
committerChristopher Baines <cbaines8@gmail.com>2012-02-28 22:27:49 +0000
commitcde3c08d7e9e486d7d1a795832ea1b767d96a4f3 (patch)
treef1af1424ebf5cb3a548a7d73257723395dccb267 /res/layout/bus_route_activity.xml
parent7e88b00e017bde16c12e6adb78883acf7b2ba575 (diff)
parent5f2b8712079aeb5b7cee476b06b36013edac4fb3 (diff)
downloadsouthamptonuniversitymap-cde3c08d7e9e486d7d1a795832ea1b767d96a4f3.tar
southamptonuniversitymap-cde3c08d7e9e486d7d1a795832ea1b767d96a4f3.tar.gz
Merge branch 'dev'
Conflicts: src/net/cbaines/suma/BusSpecificStopView.java src/net/cbaines/suma/StopView.java
Diffstat (limited to 'res/layout/bus_route_activity.xml')
-rw-r--r--res/layout/bus_route_activity.xml42
1 files changed, 42 insertions, 0 deletions
diff --git a/res/layout/bus_route_activity.xml b/res/layout/bus_route_activity.xml
new file mode 100644
index 0000000..48cdadc
--- /dev/null
+++ b/res/layout/bus_route_activity.xml
@@ -0,0 +1,42 @@
+<?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" >
+
+ <TextView
+ android:id="@+id/busRouteActivityCode"
+ android:layout_width="fill_parent"
+ android:layout_height="wrap_content"
+ android:textAppearance="?android:attr/textAppearanceLarge" />
+
+ <LinearLayout
+ android:id="@+id/busRouteActivityHeaderLayout"
+ android:layout_width="fill_parent"
+ android:layout_height="wrap_content"
+ android:orientation="horizontal" >
+
+ <TextView
+ android:id="@+id/busRouteActivityLabel"
+ android:layout_width="wrap_content"
+ android:layout_height="wrap_content"
+ android:paddingRight="5dp"
+ android:textAppearance="?android:attr/textAppearanceMedium" />
+
+ <TextView
+ android:id="@+id/busRouteActivityID"
+ android:layout_width="wrap_content"
+ android:layout_height="wrap_content"
+ android:textAppearance="?android:attr/textAppearanceMedium"
+ android:visibility="gone" />
+ </LinearLayout>
+
+ <ListView
+ android:id="@+id/busRouteBusStops"
+ android:layout_width="fill_parent"
+ android:layout_height="wrap_content" >
+ </ListView>
+
+</LinearLayout> \ No newline at end of file