25 lines
963 B
XML
25 lines
963 B
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.onetap_ssh.ui.home.HomeFragment"
|
|
android:label="@string/menu_home"
|
|
tools:layout="@layout/fragment_home" />
|
|
|
|
<fragment
|
|
android:id="@+id/nav_about"
|
|
android:name="com.example.onetap_ssh.fragment.AboutFragment"
|
|
android:label="@string/menu_gallery"
|
|
tools:layout="@layout/fragment_about" />
|
|
|
|
<fragment
|
|
android:id="@+id/nav_settings"
|
|
android:name="com.example.onetap_ssh.ui.slideshow.SlideshowFragment"
|
|
android:label="@string/menu_slideshow"
|
|
tools:layout="@layout/fragment_settings" />
|
|
</navigation> |