diff options
author | Christopher Baines <cbaines8@gmail.com> | 2012-02-24 20:47:11 +0000 |
---|---|---|
committer | Christopher Baines <cbaines8@gmail.com> | 2012-02-24 20:47:11 +0000 |
commit | 6e971428e780adc781c3d8146168590dabec7ada (patch) | |
tree | b5aef6f58d70206ae38a66603aed11b395e3d0b9 /res | |
parent | 2aa944a3a12dfbed81392538e7516c050c01a098 (diff) | |
download | southamptonuniversitymap-6e971428e780adc781c3d8146168590dabec7ada.tar southamptonuniversitymap-6e971428e780adc781c3d8146168590dabec7ada.tar.gz |
Added a BuildingActivity, with a photo, and am begining to use rdf data :)
Diffstat (limited to 'res')
-rw-r--r-- | res/layout/building_activity.xml | 39 | ||||
-rw-r--r-- | res/layout/bus_stop_activity.xml (renamed from res/layout/bustimes.xml) | 0 |
2 files changed, 39 insertions, 0 deletions
diff --git a/res/layout/building_activity.xml b/res/layout/building_activity.xml new file mode 100644 index 0000000..4a465ee --- /dev/null +++ b/res/layout/building_activity.xml @@ -0,0 +1,39 @@ +<?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/buildingActivityName" + android:layout_width="fill_parent" + android:layout_height="wrap_content" + android:textAppearance="?android:attr/textAppearanceLarge" /> + + <LinearLayout + android:id="@+id/linearLayout1" + android:layout_width="fill_parent" + android:layout_height="wrap_content" > + + <CheckBox + android:id="@+id/buildingActivityFavouriteCheckBox" + android:layout_width="wrap_content" + android:layout_height="wrap_content" + android:text="@string/bustimes_favourite_checkbox_label" /> + + <TextView + android:id="@+id/buildingActivityID" + android:layout_width="wrap_content" + android:layout_height="wrap_content" + android:paddingLeft="5dp" + android:paddingRight="5dp" + android:textAppearance="?android:attr/textAppearanceSmall" /> + </LinearLayout> + + <ImageButton + android:id="@+id/buildingActivityImage" + android:layout_width="wrap_content" + android:layout_height="wrap_content" + android:background="@null" /> + +</LinearLayout>
\ No newline at end of file diff --git a/res/layout/bustimes.xml b/res/layout/bus_stop_activity.xml index 24200c6..24200c6 100644 --- a/res/layout/bustimes.xml +++ b/res/layout/bus_stop_activity.xml |