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 android:background="@color/darkBlue" 6 tools:context=".NavigationFragment"> 7 8 <FrameLayout 9 android:id="@+id/nav_frame_layout" 10 android:layout_width="match_parent" 11 android:layout_height="match_parent"> 12 13 <SurfaceView 14 android:id="@+id/nav_surface" 15 android:layout_width="match_parent" 16 android:layout_height="match_parent" 17 android:layout_margin="20dp"/> 18 19 </FrameLayout> 20 21 22 </FrameLayout> 23