Skip to content
Snippets Groups Projects
nav_graph.xml 908 B
Newer Older
  • Learn to ignore specific revisions
  • Ethan Charles Vasquez's avatar
    Ethan Charles Vasquez committed
    <?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/mapFragment">
    
        <fragment
            android:id="@+id/mapFragment"
            android:name="com.example.androidfinalproject.MapFragment"
            android:label="fragment_map"
    
    Ethan Charles Vasquez's avatar
    Ethan Charles Vasquez committed
            tools:layout="@layout/fragment_map" >
            <action
                android:id="@+id/action_mapFragment_to_scheduleFragment"
                app:destination="@id/scheduleFragment" />
        </fragment>
        <fragment
            android:id="@+id/scheduleFragment"
            android:name="com.example.androidfinalproject.ScheduleFragment"
            android:label="fragment_schedule"
            tools:layout="@layout/fragment_schedule" />
    
    Ethan Charles Vasquez's avatar
    Ethan Charles Vasquez committed
    </navigation>