mirror of
https://github.com/Michatec/Radio.git
synced 2026-04-01 16:06:27 +02:00
Initial commit
This commit is contained in:
24
app/src/main/res/navigation/nav_graph_main.xml
Normal file
24
app/src/main/res/navigation/nav_graph_main.xml
Normal file
@@ -0,0 +1,24 @@
|
||||
<?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"
|
||||
app:startDestination="@id/player_destination">
|
||||
|
||||
<!-- PLAYER -->
|
||||
<fragment
|
||||
android:id="@+id/player_destination"
|
||||
android:name="com.michatec.radio.PlayerFragment"
|
||||
android:label="Player"
|
||||
tools:layout="@layout/fragment_player">
|
||||
<action
|
||||
android:id="@+id/action_map_fragment_to_settings_fragment"
|
||||
app:destination="@id/settings_destination" />
|
||||
</fragment>
|
||||
|
||||
<!-- SETTINGS -->
|
||||
<fragment
|
||||
android:id="@+id/settings_destination"
|
||||
android:name="com.michatec.radio.SettingsFragment"
|
||||
android:label="Settings" />
|
||||
|
||||
</navigation>
|
||||
Reference in New Issue
Block a user