xref: /aosp_15_r20/development/samples/VirtualDeviceManager/host/res/layout/fragment_input_navigation.xml (revision 90c8c64db3049935a07c6143d7fd006e26f8ecca)
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    <androidx.fragment.app.FragmentContainerView
22        android:id="@+id/rotary_fragment_container"
23        android:name="com.example.android.vdmdemo.common.RotaryFragment"
24        android:layout_width="match_parent"
25        android:layout_height="match_parent"
26        android:layout_weight="1" />
27
28</LinearLayout>