我试图在Android DocdecelerateInterpolator
的示例中创建一个来声明一个:decelerateInterpolator
示例:保存在 res/anim/my_overshoot_interpolator.xml 的 XML 文件:
<?xml version="1.0" encoding="utf-8"?> <overshootInterpolator xmlns:android="http://schemas.android.com/apk/res/android"
android:tension="7.0"
/> This animation XML will apply the interpolator:
此动画 XML 将应用插值器:
<scale xmlns:android="http://schemas.android.com/apk/res/android"
android:interpolator="@anim/my_overshoot_interpolator"
android:fromXScale="1.0"
android:toXScale="3.0"
android:fromYScale="1.0"
android:toYScale="3.0"
android:pivotX="50%"
android:pivotY="50%"
android:duration="700" />
我的是这样的:
<?xml version="1.0" encoding="utf-8"?>
<decelerateInterpolator xmlns:android="http://schemas.android.com/apk/res/android"
android:factor="1"
/>
但我收到以下错误:element decelerateinterpolator must be declared error
. 代码可以编译,但我在下面的 Activity 转换中没有效果:
<?xml version="1.0" encoding="utf-8"?>
<set xmlns:android="http://schemas.android.com/apk/res/android">
<translate
android:interpolator="@animator/my_interpolator"
android:fromYDelta="8%"
android:toYDelta="0%"
android:duration="@android:integer/config_shortAnimTime" />
</set>
是什么导致了这个错误?
PS:是的,我确实overridePendingTransition
使用上面的过渡进行了调用