summaryrefslogtreecommitdiff
path: root/res/layout/camera.xml
blob: d60c27b3631f07897fb9e7a37d1c47b3f9ac2419 (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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
	android:layout_width="fill_parent"
	android:layout_height="fill_parent">
	<com.lc8n.android.CustomCameraView
		android:id="@+id/camview"
		android:layout_width="wrap_content"
		android:layout_height="wrap_content"/>
	<LinearLayout 
		android:id="@+id/overlay"
		android:orientation="horizontal"
		android:layout_width="fill_parent"
		android:layout_height="wrap_content"
		android:layout_alignParentTop="true"
		android:layout_centerHorizontal="true">
		<EditText
			android:id="@+id/entry1"
			android:layout_width="fill_parent"
			android:layout_height="wrap_content"
			android:layout_weight="2"/>
		<ImageButton
			android:id="@+id/ok1"
			android:layout_width="fill_parent"
			android:layout_height="wrap_content"
			android:layout_weight="8"
			android:src="@drawable/search"/>
	</LinearLayout>
	<LinearLayout
		android:id="@+id/loc"
		android:orientation="vertical"
		android:layout_width="fill_parent"
		android:layout_height="wrap_content"
		android:layout_alignParentBottom="true"
		android:layout_centerHorizontal="true">
		<TextView
			android:id="@+id/loc1"
			android:text="location"
			android:textSize="10pt"
			android:layout_width="fill_parent"
			android:layout_height="wrap_content"
			android:gravity="center_horizontal"
			android:layout_weight="1"/>
		<LinearLayout 
			android:id="@+id/seek"
			android:orientation="horizontal"
			android:layout_width="fill_parent"
			android:layout_height="wrap_content"
			android:layout_alignParentBottom="true"
			android:layout_centerHorizontal="true">
	    <Spinner 
	        android:id="@+id/spinner"
	        android:layout_width="fill_parent"
	        android:layout_height="wrap_content"
	        android:drawSelectorOnTop="true"
	        android:prompt="@string/db_prompt"
	        android:layout_weight="8"
	    />


		</LinearLayout>
	</LinearLayout>
</RelativeLayout>