blob: bcaae066995691bddd305e957f00cf218e1126de (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
|
<?xml version="1.0" encoding="utf-8"?>
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent" android:layout_height="fill_parent"
android:fillViewport="true">
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical" android:layout_width="fill_parent"
android:layout_height="wrap_content" android:paddingTop="10dip">
<Button android:id="@+id/camera_button" android:layout_width="fill_parent"
android:layout_height="wrap_content" android:text="Take photo"
android:drawableRight="@drawable/add" />
<Button android:id="@+id/details_button" android:layout_width="fill_parent"
android:layout_height="wrap_content" android:text="Add details"
android:drawableRight="@drawable/add" android:paddingRight="10dip"
android:paddingLeft="10dip" />
<View android:layout_width="1dip" android:layout_height="10dip"
android:src="@drawable/spacer" />
<TextView android:paddingRight="10dip" android:paddingLeft="10dip"
android:layout_width="wrap_content" android:textColor="#87190f"
android:id="@+id/progress_text" android:layout_height="wrap_content"
android:text="Waiting for a GPS fix... Please make sure you can see the sky." />
<Button android:id="@+id/report_button" android:layout_width="fill_parent"
android:layout_height="wrap_content" android:text="Report to Fix My Street"
android:paddingRight="10dip" android:paddingLeft="10dip" />
<TextView android:layout_width="fill_parent"
android:layout_weight="1" android:layout_height="wrap_content"
android:text=" " />
<ImageView android:id="@+id/background_image"
android:scaleType="centerCrop" android:layout_width="fill_parent"
android:layout_gravity="bottom" android:layout_height="wrap_content"
android:src="@drawable/street_background_smaller"></ImageView>
</LinearLayout>
</ScrollView>
|