Skip to content

Instantly share code, notes, and snippets.

@shanmugasanthosh7
Created May 15, 2018 17:51
Show Gist options
  • Save shanmugasanthosh7/d70ec9c43c3fe1ab3ae3982f240f2da7 to your computer and use it in GitHub Desktop.
Save shanmugasanthosh7/d70ec9c43c3fe1ab3ae3982f240f2da7 to your computer and use it in GitHub Desktop.
Navigation file with actions
<?xml version="1.0" encoding="utf-8"?>
<navigation xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
app:startDestination="@id/navigationFragment">
<fragment
android:id="@+id/navigationFragment"
android:name="com.aptus.navigatioarchitecture.NavigationFragment"
android:label="fragment_navigation"
tools:layout="@layout/fragment_navigation" >
<action
android:id="@+id/action_navigationFragment_to_blankFragment"
app:destination="@id/blankFragment" />
</fragment>
<fragment
android:id="@+id/blankFragment"
android:name="com.aptus.navigatioarchitecture.BlankFragment"
android:label="fragment_blank"
tools:layout="@layout/fragment_blank" />
</navigation>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment