<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
  xmlns:android="http://s...content-available-to-author-only...d.com/apk/res/android"
  android:background="@drawable/white"
  android:orientation="vertical"
  android:layout_width="fill_parent"
  android:layout_height="fill_parent"
>
  <TextView
    android:id="@+id/myTextView1"
    android:layout_width="fill_parent" 
    android:layout_height="wrap_content"
    android:textColor="@drawable/blue" 
    android:text="@string/hello"
  />

  <SurfaceView
    android:id="@+id/mSurfaceView1"
    android:visibility="visible" 
    android:layout_width="240px" 
    android:layout_height="180px">
  </SurfaceView>

  <LinearLayout
      android:layout_width="wrap_content"
      android:layout_height="wrap_content"
      android:orientation="horizontal" >

      

      <Button
          android:id="@+id/myButton1"
          android:layout_width="wrap_content"
          android:layout_height="wrap_content"
          android:text="@string/str_button1" />

      <Button
          android:id="@+id/myButton2"
          android:layout_width="wrap_content"
          android:layout_height="wrap_content"
          android:text="@string/str_button2" />

      <Button
          android:id="@+id/myButton3"
          android:layout_width="wrap_content"
          android:layout_height="wrap_content"
          android:text="@string/str_take_picture" />
  </LinearLayout>

  <SeekBar
      android:id="@+id/seekBar1"
      android:layout_width="174dp"
      android:layout_height="wrap_content" />

  <TextView
      android:id="@+id/textView1"
      android:layout_width="wrap_content"
      android:layout_height="wrap_content"
      android:layout_alignParentLeft="true"
      android:layout_below="@+id/seekBar1"
       />

  <Button
      android:id="@+id/button1"
      android:layout_width="wrap_content"
      android:layout_height="wrap_content"
      android:text="@string/light" />

  <ImageView
      android:id="@+id/myImageView1"
      android:layout_width="240px"
      android:layout_height="180px" />

</LinearLayout>
