我正在寻找一种方法来使用Navigation component为片段中的操作声明默认动画。也许还没有实现这种行为的实现?
这是我要删除重复代码的代码:
<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/launcher_home">
<fragment
android:id="@+id/launcher_home"
android:name="fr.ylly.sgb.gyproc.ui.home.HomeFragment"
tools:layout="@layout/fragment_home">
<action
android:id="@+id/action_home_to_our_solutions"
app:destination="@id/ourSolutionsFragment"
app:enterAnim="@anim/slide_in_right"
app:exitAnim="@anim/slide_out_left"
app:popEnterAnim="@anim/slide_in_left"
app:popExitAnim="@anim/slide_out_right" />
<action
android:id="@+id/action_home_to_study_cases"
app:destination="@id/studyCasesFragment"
app:enterAnim="@anim/slide_in_right"
app:exitAnim="@anim/slide_out_left"
app:popEnterAnim="@anim/slide_in_left"
app:popExitAnim="@anim/slide_out_right" />
<action
android:id="@+id/action_home_to_aboutUs"
app:destination="@id/aboutUsFragment"
app:enterAnim="@anim/slide_in_right"
app:exitAnim="@anim/slide_out_left"
app:popEnterAnim="@anim/slide_in_left"
app:popExitAnim="@anim/slide_out_right" />
</fragment>