我的活动中有很多按钮,单击一个按钮就需要翻转整个布局。点击的按钮必须显示一个特定的活动,也可以通过翻转点击。
在这里帮助我......
注意:我在网上看过很多教程,但他们只翻转单张图片。感谢
答案 0 :(得分:0)
翻转活动基本上是Y轴的旋转。您可以通过ObjectAnimator
实现目标。
ObjectAnimator anim=ObjectAnimator.ofFloat(yourView, "rotationY", 360);
如果您使用 11 下面的 API级,则需要使用九个老式机器人库,因为新的动画API ,其中包括ObjectAnimator
,ValueAnimator
以及更多 API Level 11 及以上版本。
参考lib;
http://nineoldandroids.com/