我想在开始另一项活动时为活动设置动画。 我试图动画翻转动画。
我尝试使用objectanimtor调用ActivityOptions和overridePendingTransition。 我认为我做错了,objectanimator不能用于上述方法。
有没有办法为api级别8的活动设置动画,请解释objecanimator不使用ActivityOptions和overridePendingTransition的原因
附上样本
<set xmlns:android="http://schemas.android.com/apk/res/android">
<!-- Before rotating, immediately set the alpha to 0. -->
<objectAnimator
android:valueFrom="1.0"
android:valueTo="0.0"
android:propertyName="alpha"
android:duration="0" />
<!-- Rotate. -->
<objectAnimator
android:valueFrom="180"
android:valueTo="0"
android:propertyName="rotationY"
android:interpolator="@android:interpolator/accelerate_decelerate"
android:duration="@integer/card_flip_time_full" />
<!-- Half-way through the rotation (see startOffset), set the alpha to 1. -->
<`objectAnimator`
android:valueFrom="0.0"
android:valueTo="1.0"
android:propertyName="alpha"
android:startOffset="@integer/card_flip_time_half"
android:duration="1" />
</set>
`enter code here`and i used this `xml` like this
`overridePendingTransition`(`R.anim.card`_flip_right_in,`R.anim.card`_flip_right_out);