同时对父视图和子视图进行动画处理

时间:2019-04-27 12:43:25

标签: android animation material-components-android

如果parentView动画完成(延迟>>持续时间),则不会出现毛刺。

childView.show(x, y, duration = 600, delay = 450)
parentView.show(x, y, duration = 300, isBackground = true)

No glitch

如果parentView视图动画未完成(延迟<<持续时间),则出现此故障。

childView.show(x, y, duration = 600, delay = 150)
parentView.show(x, y, duration = 600, isBackground = true)

Glitch

1 个答案:

答案 0 :(得分:0)

您需要将动画同步在一起。 AnimationSets正是您需要的。 Here is an example