please watch this video to know the exact issue
由于我的过渡元素在未完全可见时未正确制作动画,但在可见时效果非常好。
答案 0 :(得分:-1)
在XML中使用它来禁用叠加层:
android:windowSharedElementsUseOverlay="false"
或强>
从窗口的默认进入/退出转换中排除状态栏:
Transition fade = new Fade();
fade.excludeTarget(android.R.id.statusBarBackground, true);
getWindow().setExitTransition(fade);
getWindow().setEnterTransition(fade);