2021-01-12 14:28:52 -04:00
|
|
|
<?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/chat_wallpaper"
|
|
|
|
app:startDestination="@id/chatWallpaperFragment">
|
|
|
|
|
|
|
|
<fragment
|
|
|
|
android:id="@+id/chatWallpaperFragment"
|
|
|
|
android:name="org.thoughtcrime.securesms.wallpaper.ChatWallpaperFragment"
|
|
|
|
android:label="chat_wallpaper_fragment"
|
|
|
|
tools:layout="@layout/chat_wallpaper_fragment">
|
|
|
|
|
|
|
|
<action
|
|
|
|
android:id="@+id/action_chatWallpaperFragment_to_chatWallpaperSelectionFragment"
|
2021-01-19 21:54:10 -05:00
|
|
|
app:destination="@id/chatWallpaperSelectionFragment"
|
2021-05-12 13:02:44 -03:00
|
|
|
app:enterAnim="@anim/fragment_open_enter"
|
|
|
|
app:exitAnim="@anim/fragment_open_exit"
|
|
|
|
app:popEnterAnim="@anim/fragment_close_enter"
|
|
|
|
app:popExitAnim="@anim/fragment_close_exit" />
|
2021-01-12 14:28:52 -04:00
|
|
|
</fragment>
|
|
|
|
<fragment
|
|
|
|
android:id="@+id/chatWallpaperSelectionFragment"
|
|
|
|
android:name="org.thoughtcrime.securesms.wallpaper.ChatWallpaperSelectionFragment"
|
|
|
|
android:label="chat_wallpaper_selection_fragment"
|
|
|
|
tools:layout="@layout/chat_wallpaper_selection_fragment">
|
|
|
|
</fragment>
|
|
|
|
</navigation>
|