You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
Banking5/app/src/main/res/navigation/nav_graph.xml

14 lines
1.0 KiB

<?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/navigation_transaction">
<fragment android:id="@+id/navigation_transaction"
android:name="software.jonasfranz.banking5.fragments.TransactionFragment"
android:label="@string/title_transactions" tools:layout="@layout/fragment_transaction_list"/>
<fragment android:id="@+id/navigation_transfer"
android:name="software.jonasfranz.banking5.fragments.TransferFragment"
android:label="@string/title_transfer" tools:layout="@layout/fragment_transfer"/>
<fragment android:id="@+id/navigation_menu" android:name="software.jonasfranz.banking5.fragments.SettingsFragment"
android:label="@string/title_menu" tools:layout="@layout/fragment_settings_list"/>
</navigation>