所以这个问题是类似的:How to know when enter transition ends on Fragment?
但我不是自己设置过渡,也不是共享过渡。所以我无法获得附加我的听众的过渡对象。
背景:
我使用了BottomSheetDialogFragment,它在引擎盖下使用带有自己转换的样式
<item name="android:windowAnimationStyle">
@style/Animation.MaterialComponents.BottomSheetDialog
</item>
<style name="Animation.MaterialComponents.BottomSheetDialog" parent="Animation.AppCompat.Dialog">
<item name="android:windowEnterAnimation">@anim/mtrl_bottom_sheet_slide_in</item>
<item name="android:windowExitAnimation">@anim/mtrl_bottom_sheet_slide_out</item>
</style>
我想要的是在完成过渡后添加我的动画。由于与过渡同时播放动画是无用的