nav_moca.xml 1.2 KB

1234567891011121314151617181920212223242526272829303132
  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_moca"
  6. app:startDestination="@id/alternatingconnectionFragment"
  7. tools:ignore="ResourceName">
  8. <fragment
  9. android:id="@+id/alternatingconnectionFragment"
  10. android:name="com.yingyangfly.moca.alternatingconnection.AlternatingConnectionFragment"
  11. android:label="alternatingconnectionFragment"
  12. tools:layout="@layout/fragment_alternating_connection">
  13. <action
  14. android:id="@+id/action_alternatingconnectionFragment_to_signatureFragment"
  15. app:destination="@id/signatureFragment" />
  16. </fragment>
  17. <fragment
  18. android:id="@+id/signatureFragment"
  19. android:name="com.yingyangfly.moca.signature.SignatureFragment"
  20. android:label="signatureFragment">
  21. <action
  22. android:id="@+id/action_signatureFragment_to_alternatingconnectionFragment"
  23. app:destination="@id/alternatingconnectionFragment" />
  24. </fragment>
  25. </navigation>