| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116 |
- <?xml version="1.0" encoding="utf-8"?>
- <navigation xmlns:android="http://schemas.android.com/apk/res/android"
- xmlns:app="http://schemas.android.com/apk/res-auto"
- xmlns:tools="http://schemas.android.com/tools"
- android:id="@+id/nav_ncse"
- app:startDestination="@id/startDescriptionNameAndAgeAndPlaceFragment"
- tools:ignore="ResourceName">
- <fragment
- android:id="@+id/startDescriptionNameAndAgeAndPlaceFragment"
- android:label="startDNAPCFragment"
- android:name="com.yingyangfly.ncse.fragment.startDNAPCFragment"
- >
- <action
- android:id="@+id/action_startDNAPCFragment_to_inputFragment"
- app:destination="@id/figureinputFragment"/>
- <action android:id="@+id/action_startDNAPCFragment_to_selectedItemFragment"
- app:destination="@+id/selectedItemFragment"/>
- <action android:id="@+id/action_startDNAPCFragment_to_listenAndRepeatFragment"
- app:destination="@+id/listenAndRepeatFragment"/>
- </fragment>
- <fragment android:id="@+id/figureinputFragment"
- android:name="com.yingyangfly.ncse.fragment.FigureInputFragment"
- android:label="inputFragment">
- <action android:id="@+id/action_FigureinputFragment_to_startDNAPCFragment"
- app:destination="@+id/startDescriptionNameAndAgeAndPlaceFragment"/>
- <action android:id="@+id/action_figureinputFragment_to_selectedItemFragment"
- app:destination="@+id/selectedItemFragment"/>
- </fragment>
- <fragment android:id="@+id/selectedItemFragment"
- android:name="com.yingyangfly.ncse.fragment.SelectedItemFragment"
- android:label="SelectedItemFragment">
- <action android:id="@+id/action_selectedItemFragment_to_figureinputFragment"
- app:destination="@+id/figureinputFragment"/>
- <action android:id="@+id/action_selectedItemFragment_to_startDNAPCFragment"
- app:destination="@+id/startDescriptionNameAndAgeAndPlaceFragment"/>
- </fragment>
- <fragment android:id="@+id/listenAndRepeatFragment"
- android:name="com.yingyangfly.ncse.fragment.ListenAndRepeatFragment"
- android:label="ListenAndRepeatFragment">
- <action android:id="@+id/action_listenAndRepeatFragment_to_startDNAPCFragment"
- app:destination="@+id/startDescriptionNameAndAgeAndPlaceFragment"/>
- <action android:id="@+id/action_listenAndRepeatFragment_to_lookPictureFragment"
- app:destination="@+id/lookPictureFragment"/>
- <action android:id="@+id/action_listenAndRepeatFragment_to_namingAbilityFragment"
- app:destination="@+id/namingAbilityFragment"/>
- </fragment>
- <fragment android:id="@+id/lookPictureFragment"
- android:name="com.yingyangfly.ncse.fragment.LookPictureFragment"
- android:label="LookPictureFragment">
- <action android:id="@+id/action_lookPictureFragment_to_listenAndRepeatFragment"
- app:destination="@+id/listenAndRepeatFragment"/>
- </fragment>
- <fragment android:id="@+id/namingAbilityFragment"
- android:name="com.yingyangfly.ncse.fragment.NamingAbilityFragment"
- android:label="NamingAbilityFragment">
- <action android:id="@+id/action_namingAbilityFragment_to_listenAndRepeatFragment"
- app:destination="@+id/listenAndRepeatFragment"/>
- <action android:id="@+id/action_namingAbilityFragment_to_identifyImageResultFragment"
- app:destination="@+id/identifyImageResultFragment"/>
- </fragment>
- <fragment android:id="@+id/identifyImageResultFragment"
- android:name="com.yingyangfly.ncse.fragment.IdentifyImageResultFragment"
- android:label="IdentifyImageResultFragment">
- <action android:id="@+id/action_identifyImageResultFragment_to_namingAbilityFragment"
- app:destination="@+id/namingAbilityFragment"/>
- <action android:id="@+id/action_identifyImageResultFragment_to_structureOrganizationFragment"
- app:destination="@+id/structureOrganizationFragment"/>
- </fragment>
- <fragment android:id="@+id/structureOrganizationFragment"
- android:name="com.yingyangfly.ncse.fragment.StructureOrganizationFragment"
- android:label="StructureOrganizationFragment">
- <action android:id="@+id/action_structureOrganizationFragment_to_identifyImageResultFragment"
- app:destination="@+id/identifyImageResultFragment"/>
- <action android:id="@+id/action_structureOrganizationFragment_to_pictureRecognitionJudgmentFragment"
- app:destination="@+id/pictureRecognitionJudgmentFragment"/>
- </fragment>
- <fragment android:id="@+id/pictureRecognitionJudgmentFragment"
- android:name="com.yingyangfly.ncse.fragment.PictureRecognitionJudgmentFragment"
- android:label="PictureRecognitionJudgmentFragment">
- <action android:id="@+id/action_pictureRecognitionJudgmentFragment_to_structureOrganizationFragment"
- app:destination="@+id/structureOrganizationFragment"/>
- </fragment>
- </navigation>
|