How to play multiple Animations using AnimatorSet?
问题 I'm using Sceneform to create an android app that plays animation. I'm trying to start multiple Animators sequentially using AnimatorSet . The code works perfectly when trying to play two animations, but whenever I add a 3rd animation, the first two animations play then the app crashes. Here's a piece of the code: List<Animator> animatorList = new ArrayList<Animator>(); AnimationData ad1 = JimRenderable.getAnimationData("Abm_09|A"); Animator a = new ModelAnimator(ad1, JimRenderable);