android规模和旋转动画都不流畅

时间:2016-10-03 12:51:51

标签: android xml animation rotateanimation scaleanimation

我正在开发一个新的应用程序,在主窗口中我提供了一些动画。 问题是动画不流畅。(较新的Android版本动画变得不那么流畅) 这是xml代码:

<scale android:pivotX="50%"
    android:pivotY="50%"
    android:fromXScale="1"
    android:fromYScale="1"
    android:repeatCount="infinite"
    android:repeatMode="reverse"
    android:duration="1000"
    android:interpolator="@android:anim/linear_interpolator"
    android:toXScale="0.75" android:toYScale="0.75"
    xmlns:android="http://schemas.android.com/apk/res/android">
</scale>


<?xml version="1.0" encoding="utf-8"?>
<rotate android:fromDegrees="0"
    android:toDegrees="90"
    xmlns:android="http://schemas.android.com/apk/res/android" 
    android:duration="1000"
    android:repeatCount="infinite"
    android:interpolator="@android:anim/linear_interpolator"
    android:repeatMode="reverse"
    android:pivotX="50%" android:pivotY="50%">
    <!--
    android:fillAfter="false"
    android:startOffset="0"
    -->
</rotate>

0 个答案:

没有答案
相关问题