blob: 23328c96f11eb435c7d930d83a2e401b7dd4a4dc (
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
|
<?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" />
</navigation>
|