blob: 86c8cd6c0ab4079deb1b5c3bcc9cd40abe18bd14 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
<?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_reader">
<fragment
android:id="@+id/nav_reader"
android:name="com.jopek.lectordecodi.ui.reader.ReaderFragment"
android:label="@string/menu_reader"
tools:layout="@layout/fragment_reader" />
<fragment
android:id="@+id/nav_barcode_gen"
android:name="com.jopek.lectordecodi.ui.barcode_gen.BarcodeGenFragment"
android:label="@string/menu_barcode_gen"
tools:layout="@layout/fragment_barcode_gen" />
<fragment
android:id="@+id/nav_qrcode_gen"
android:name="com.jopek.lectordecodi.ui.qrcode_gen.QRCodeGenFragment"
android:label="@string/menu_qrcode_gen"
tools:layout="@layout/fragment_qrcode_gen" />
<fragment
android:id="@+id/nav_settings"
android:name="com.jopek.lectordecodi.ui.settings.SettingsFragment"
android:label="@string/menu_settings"
tools:layout="@layout/fragment_qrcode_gen" />
</navigation>
|