1<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android" 2 xmlns:tools="http://schemas.android.com/tools" 3 android:layout_width="match_parent" 4 android:layout_height="match_parent" 5 tools:context=".DetermineFovActivity" > 6 7 <SurfaceView 8 android:id="@+id/camera_fov_photo_surface" 9 android:layout_width="wrap_content" 10 android:layout_height="wrap_content" 11 android:layout_gravity="center" > 12 </SurfaceView> 13 14 <RelativeLayout 15 android:layout_width="match_parent" 16 android:layout_height="match_parent" > 17 <SeekBar 18 android:id="@+id/camera_fov_seekBar" 19 android:layout_width="match_parent" 20 android:layout_height="wrap_content" 21 android:layout_alignParentBottom="true" /> 22 <Button 23 android:id="@+id/camera_fov_fov_done" 24 android:layout_width="wrap_content" 25 android:layout_height="wrap_content" 26 android:text="@string/camera_fov_calibration_done" 27 android:layout_above="@id/camera_fov_seekBar" 28 android:layout_alignParentRight="true" /> 29 </RelativeLayout> 30 31</FrameLayout> 32