linphone-android/app/src/main/res/navigation/conference_nav_graph.xml

63 lines
No EOL
3 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"
android:id="@+id/conference_nav_graph"
app:startDestination="@id/conferenceActiveSpeakerFragment">
<fragment
android:id="@+id/conferenceGridFragment"
android:name="org.linphone.ui.call.conference.fragment.ConferenceGridFragment"
android:label="ConferenceGridFragment"
tools:layout="@layout/call_conference_grid_fragment">
<action
android:id="@+id/action_conferenceGridFragment_to_conferenceActiveSpeakerFragment"
app:destination="@id/conferenceActiveSpeakerFragment"
app:launchSingleTop="true"
app:popUpTo="@id/conferenceActiveSpeakerFragment"
app:popUpToInclusive="true" />
<action
android:id="@+id/action_conferenceGridFragment_to_conferenceAudioOnlyFragment"
app:destination="@id/conferenceAudioOnlyFragment"
app:launchSingleTop="true"
app:popUpTo="@id/conferenceAudioOnlyFragment"
app:popUpToInclusive="true" />
</fragment>
<fragment
android:id="@+id/conferenceActiveSpeakerFragment"
android:name="org.linphone.ui.call.conference.fragment.ConferenceActiveSpeakerFragment"
android:label="ConferenceActiveSpeakerFragment"
tools:layout="@layout/call_conference_active_speaker_fragment">
<action
android:id="@+id/action_conferenceActiveSpeakerFragment_to_conferenceGridFragment"
app:destination="@id/conferenceGridFragment"
app:launchSingleTop="true"
app:popUpTo="@id/conferenceGridFragment"
app:popUpToInclusive="true" />
<action
android:id="@+id/action_conferenceActiveSpeakerFragment_to_conferenceAudioOnlyFragment"
app:destination="@id/conferenceAudioOnlyFragment"
app:launchSingleTop="true"
app:popUpTo="@id/conferenceAudioOnlyFragment"
app:popUpToInclusive="true" />
</fragment>
<fragment
android:id="@+id/conferenceAudioOnlyFragment"
android:name="org.linphone.ui.call.conference.fragment.ConferenceAudioOnlyFragment"
android:label="ConferenceAudioOnlyFragment"
tools:layout="@layout/call_conference_audio_only_fragment">
<action
android:id="@+id/action_conferenceAudioOnlyFragment_to_conferenceActiveSpeakerFragment"
app:destination="@id/conferenceActiveSpeakerFragment"
app:launchSingleTop="true"
app:popUpTo="@id/conferenceActiveSpeakerFragment"
app:popUpToInclusive="true" />
<action
android:id="@+id/action_conferenceAudioOnlyFragment_to_conferenceGridFragment"
app:destination="@id/conferenceGridFragment"
app:launchSingleTop="true"
app:popUpTo="@id/conferenceGridFragment"
app:popUpToInclusive="true" />
</fragment>
</navigation>