1<?xml version="1.0" encoding="utf-8"?> 2<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" 3 android:layout_width="match_parent" 4 android:layout_height="match_parent" 5 android:orientation="vertical"> 6 7 <androidx.fragment.app.FragmentContainerView 8 android:id="@+id/nav_touchpad_fragment_container" 9 android:name="com.example.android.vdmdemo.common.NavTouchpadFragment" 10 android:layout_width="match_parent" 11 android:layout_height="match_parent" 12 android:layout_weight="1" /> 13 14 <androidx.fragment.app.FragmentContainerView 15 android:id="@+id/dpad_fragment_container" 16 android:name="com.example.android.vdmdemo.common.DpadFragment" 17 android:layout_width="match_parent" 18 android:layout_height="match_parent" 19 android:layout_weight="1" /> 20 21</LinearLayout>