在 android 中翻转一个图块

flipping a tile in android

在我的布局中,我有一组图块(类似于 windows phone 主屏幕)。我正在尝试翻转图块以显示更多内容。我看过卡片翻转,但它翻转了整个 fragment.I 希望它翻转整个的一部分 layout.I 尝试使用对象动画师旋转它。这是我的代码..

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();

是否可以在翻转时调用另一个布局?

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

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