stock-news-app / app / src / main / res / navigation / nav_graph.xml
nav_graph.xml
Raw
<?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_graph"
    app:startDestination="@id/NewsFragment">

    <fragment
        android:id="@+id/NewsFragment"
        android:name="edu.utap.stocknewsapp.ui.NewsFragment"
        android:label="@string/news_fragment_label"
        tools:layout="@layout/fragment_news">
    </fragment>

    <fragment
        android:id="@+id/FavoriteFragment"
        android:name="edu.utap.stocknewsapp.ui.FavoriteFragment"
        android:label="@string/favorite_fragment_label"
        tools:layout="@layout/fragment_favorite">
    </fragment>

    <fragment
        android:id="@+id/AccountFragment"
        android:name="edu.utap.stocknewsapp.ui.AccountFragment"
        android:label="@string/account_fragment_label"
        tools:layout="@layout/fragment_account">
    </fragment>

</navigation>