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