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.
pocketcommunityclient/app/src/main/res/navigation/nav_mainmenu.xml

30 lines
1.2 KiB

5 years ago
<?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/navigation_home">
<fragment
android:id="@+id/navigation_home"
5 years ago
android:name="com.community.pocket.ui.main.ui.forum.ForumFragment"
5 years ago
android:label="@string/title_home"
5 years ago
tools:layout="@layout/forum" />
5 years ago
<fragment
android:id="@+id/navigation_dashboard"
android:name="com.community.pocket.ui.main.ui.visitor.VisitorFragment"
5 years ago
android:label="@string/title_dashboard"
tools:layout="@layout/visitor" />
5 years ago
<fragment
android:id="@+id/navigation_notifications"
android:name="com.community.pocket.ui.main.ui.notifications.NotificationsFragment"
android:label="@string/title_notifications"
tools:layout="@layout/fragment_notifications" />
<fragment
android:id="@+id/navigation_info"
android:name="com.community.pocket.ui.main.ui.info.InfoFragment"
android:label="@string/title_info" />
</navigation>