1<?xml version="1.0" encoding="utf-8"?> 2<navigation xmlns:android="http://schemas.android.com/apk/res/android" 3 xmlns:app="http://schemas.android.com/apk/res-auto" 4 xmlns:tools="http://schemas.android.com/tools" 5 android:id="@+id/nav_graph" 6 app:startDestination="@id/role_selection_fragment"> 7 8 <fragment 9 android:id="@+id/role_selection_fragment" 10 android:name="com.android.bluetooth.channelsoundingtestapp.RoleSelectionFragment" 11 android:label="Role Selection" 12 tools:layout="@layout/fragment_role_selection"> 13 14 <action 15 android:id="@+id/action_RoleSelectionFragment_to_InitiatorFragment" 16 app:destination="@id/initiator_fragment" /> 17 <action 18 android:id="@+id/action_RoleSelectionFragment_to_ReflectorFragment" 19 app:destination="@id/reflector_fragment" /> 20 </fragment> 21 <fragment 22 android:id="@+id/initiator_fragment" 23 android:name="com.android.bluetooth.channelsoundingtestapp.InitiatorFragment" 24 android:label="Initiator" 25 tools:layout="@layout/fragment_initiator"> 26 27 <action 28 android:id="@+id/action_InitiatorFragment_to_RoleSelectionFragment" 29 app:destination="@id/role_selection_fragment" /> 30 </fragment> 31 <fragment 32 android:id="@+id/reflector_fragment" 33 android:name="com.android.bluetooth.channelsoundingtestapp.ReflectorFragment" 34 android:label="Reflector" 35 tools:layout="@layout/fragment_reflector"> 36 37 <action 38 android:id="@+id/action_ReflectorFragment_to_RoleSelectionFragment" 39 app:destination="@id/role_selection_fragment" /> 40 </fragment> 41 42</navigation> 43