diff options
Diffstat (limited to 'res/layout/camera.xml')
-rw-r--r-- | res/layout/camera.xml | 62 |
1 files changed, 62 insertions, 0 deletions
diff --git a/res/layout/camera.xml b/res/layout/camera.xml new file mode 100644 index 0000000..d60c27b --- /dev/null +++ b/res/layout/camera.xml @@ -0,0 +1,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>
\ No newline at end of file |