DCAv2GUI/app/src/main/res/navigation/mobile_navigation.xml

44 lines
1.6 KiB
XML

<?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/mobile_navigation"
app:startDestination="@+id/nav_home">
<fragment
android:id="@+id/nav_home"
android:name="com.example.dcav2gui.ui.home.HomeFragment"
android:label="@string/menu_home"
tools:layout="@layout/fragment_home" />
<fragment
android:id="@+id/nav_binance"
android:name="com.example.dcav2gui.ui.exchanges.BinanceFragment"
android:label="@string/menu_binance"
tools:layout="@layout/fragment_binance" />
<fragment
android:id="@+id/nav_gateio"
android:name="com.example.dcav2gui.ui.exchanges.GateioFragment"
android:label="@string/menu_gateio"
tools:layout="@layout/fragment_gateio" />
<fragment
android:id="@+id/nav_kucoin"
android:name="com.example.dcav2gui.ui.exchanges.KucoinFragment"
android:label="@string/menu_kucoin"
tools:layout="@layout/fragment_kucoin" />
<fragment
android:id="@+id/nav_okx"
android:name="com.example.dcav2gui.ui.exchanges.OkxFragment"
android:label="@string/menu_okx"
tools:layout="@layout/fragment_okx" />
<fragment
android:id="@+id/nav_settings"
android:name="com.example.dcav2gui.ui.settings.SettingsFragment"
android:label="Settings"
tools:layout="@layout/fragment_settings" />
</navigation>