mirror of
https://github.com/Michatec/Radio.git
synced 2026-05-31 01:52:39 +02:00
56 lines
2.0 KiB
XML
56 lines
2.0 KiB
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"
|
|
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" />
|
|
<action
|
|
android:id="@+id/action_map_fragment_to_visualizer_fragment"
|
|
app:destination="@id/visualizer_destination" />
|
|
<action
|
|
android:id="@+id/action_map_fragment_to_player_to_add_station"
|
|
app:destination="@id/add_station_destination" />
|
|
</fragment>
|
|
|
|
<!-- SETTINGS -->
|
|
<fragment
|
|
android:id="@+id/settings_destination"
|
|
android:name="com.michatec.radio.SettingsFragment"
|
|
android:label="Settings">
|
|
<action
|
|
android:id="@+id/action_settings_to_equalizer"
|
|
app:destination="@id/equalizer_destination" />
|
|
<action
|
|
android:id="@+id/action_settings_to_visualizer"
|
|
app:destination="@id/visualizer_destination" />
|
|
</fragment>
|
|
|
|
<!-- EQUALIZER -->
|
|
<fragment
|
|
android:id="@+id/equalizer_destination"
|
|
android:name="com.michatec.radio.EqualizerFragment"
|
|
android:label="Equalizer" />
|
|
|
|
<!-- VISUALIZER -->
|
|
<fragment
|
|
android:id="@+id/visualizer_destination"
|
|
android:name="com.michatec.radio.VisualizerFragment"
|
|
android:label="Visualizer" />
|
|
|
|
<!-- ADD STATION (TV) -->
|
|
<fragment
|
|
android:id="@+id/add_station_destination"
|
|
android:name="com.michatec.radio.AddStationFragment"
|
|
android:label="Add Station"
|
|
tools:layout="@layout/dialog_find_station" />
|
|
</navigation>
|