Анимируйте переходы DialogFragment с помощью компонента навигации
Поддерживается ли анимация переходов DialogFragment компонентом навигации?
Мой диалог:
<dialog
android:id="@+id/loginBottomSheetDialog"
android:name="com.app.tlbx.mvvm.bottomsheetdialogs.authenticationbottomsheetdialog.LoginBottomSheetDialog"
android:label="LoginBottomSheetDialog">
<action
android:id="@+id/action_loginBottomSheetDialog_to_verificationBottomSheetDialog"
app:destination="@id/verificationBottomSheetDialog"
app:popUpTo="@id/loginBottomSheetDialog"
app:popUpToInclusive="true"
app:popEnterAnim="@anim/no_animation"
app:popExitAnim="@anim/no_animation"
app:enterAnim="@anim/no_animation"
app:exitAnim="@anim/no_animation"/>
</dialog>
anim/no_animation
:
<?xml version="1.0" encoding="utf-8"?>
<set xmlns:android="http://schemas.android.com/apk/res/android">
//Empty
</set>
Когда я перехожу к месту назначения, объявленному в действии, его анимация по умолчанию отображается вместо той, которая определена в
@anim/no_animation
.