翻转支持片段的动画(ObjectAnimator)(API小于10)

时间:2014-10-23 03:15:26

标签: android animation actionbarsherlock fragment objectanimator

我尝试将CustomAnimation功能用于我的应用程序。但我最终得到了Unknown Object Animator名称错误。我做了一些研究,发现在getSupportFragmentManager下不支持objectAnimator类型的动画(如果我错了,请更正我)。

    getSupportFragmentManager()
        .beginTransaction()
        .setCustomAnimations(R.animator.card_flip_left_in, R.animator.card_flip_left_out,
                R.animator.card_flip_right_in, R.animator.card_flip_right_out)
                .add(R.id.content_frame, reportPage,reportPage.getClass().getSimpleName()).addToBackStack(reportPage.getClass().getSimpleName())
                .commit();

        getSupportFragmentManager().executePendingTransactions();

我看到多个线程提到对ObjectAnimator使用http://nineoldandroids.com/。但我不知道如何使用这个库在我的应用程序上实现它。

是否有任何解决方法可以在上面的函数中使用Object Animator类型的动画?

0 个答案:

没有答案