我想讓圖像水平翻轉4次,同時縮小翻頁。Android - 翻轉動畫不能平滑翻轉
我有以下代碼爲翻轉:
ObjectAnimator flipAnimation = ObjectAnimator.ofFloat(view, "rotationY", 0.0f, 1440f);
flipAnimation.setDuration(4000);
flipAnimation.start();
而且我在scale_down.xml按比例縮小下面的代碼:
<scale
android:duration="4000"
android:fromXScale="1"
android:fromYScale="1"
android:pivotX="50%"
android:pivotY="50%"
android:toXScale="0.1"
android:toYScale="0.1" >
</scale>
然而,當我在模擬器中運行我的應用程序日食,翻轉的圖像顯示出尷尬的效果。正如你從圖像中看到的,有時在翻轉時,一個垂直邊比另一邊長,產生拉伸效果,這不是我想要的。任何有助於消除這種影響?
太棒了!這就是我要的。而thx的信息。設置數字= 10已經非常令人滿意。 – Derekyy