在android中翻转一个tile

时间:2015-02-27 08:12:04

标签: android animation nineoldandroids

在我的布局中,我有一组瓷砖(类似于Windows手机主屏幕的东西)。我正在尝试翻转瓷砖以显示更多内容。我看了一下卡片翻转,然后它翻转了整个片段。我希望它翻转整个布局的一部分。我尝试使用对象动画师旋转它。这是我的代码..

View v = findViewById(R.id.iotd_relative);
            ObjectAnimator animation = ObjectAnimator.ofFloat(v, "rotationY", 0.0f, 360f);
            animation.setDuration(3600);
            animation.setRepeatCount(ObjectAnimator.INFINITE);
            animation.setInterpolator(new AccelerateDecelerateInterpolator());
            animation.start();

翻转时是否有可能调用另一个布局?

1 个答案:

答案 0 :(得分:1)

我建议使用ScaleAnimation,这是一个模拟卡片翻转的好例子,你应该能够从那里得到你想要的东西。

Use Android's scale animation to simulate a 3D flip...