LayoutAnimationController不起作用

我的Activity里有一个ListView,然后再onCreate()方法中添加了如下代码,希望能测试一下LayoutAnimationController,但跑出来没有达到预定的效果,请问这里有什么问题吗?

    AnimationSet animationSet = new AnimationSet(true);

    AlphaAnimation alphaAnimation = new AlphaAnimation(0.0f, 1.0f);
    alphaAnimation.setDuration(500);
    animationSet.addAnimation(alphaAnimation);

    TranslateAnimation translateAnimation = new TranslateAnimation(
            Animation.RELATIVE_TO_SELF, 0.0f,
            Animation.RELATIVE_TO_SELF, 0.0f,
            Animation.RELATIVE_TO_SELF, -1.0f,
            Animation.RELATIVE_TO_SELF, 0.0f);
    translateAnimation.setDuration(500);
    animationSet.addAnimation(translateAnimation);

    LayoutAnimationController controller = new LayoutAnimationController(animationSet, 0.5f);
    controller.setOrder(LayoutAnimationController.ORDER_NORMAL);
    mListView.setLayoutAnimation(controller);
阅读 3.4k
撰写回答
你尚未登录,登录后可以
  • 和开发者交流问题的细节
  • 关注并接收问题和回答的更新提醒
  • 参与内容的编辑和改进,让解决方法与时俱进
推荐问题