ich einen Satz von zwei Animationen haben, laufen beide Animationen zusammen, um den Interpolator Überschwinger mitAndroid Ist es möglich, gleichzeitige Interpolatoren zu verwenden?
<?xml version="1.0" encoding="utf-8"?>
<set xmlns:android="http://schemas.android.com/apk/res/android"
android:interpolator="@android:anim/overshoot_interpolator" >
<translate
android:duration="6000"
android:fromXDelta="100%" android:toXDelta="0%" />
<scale
android:duration="6000"
android:fromXScale="1.0" android:toXScale="0.6"
android:pivotX="0"
android:fromYScale="1.0" android:toYScale="1.0"
android:repeatCount="1"
android:repeatMode="reverse" />
</set>
Ich möchte die translate
Animation überschreiten, und die scale
Animation zu beschleunigen.
Ich habe versucht, dies zu tun, aber es funktioniert nicht:
<?xml version="1.0" encoding="utf-8"?>
<set xmlns:android="http://schemas.android.com/apk/res/android" >
<translate
android:interpolator="@android:anim/overshoot_interpolator"
android:duration="6000"
android:fromXDelta="100%" android:toXDelta="0%" />
<scale
android:interpolator="@android:anim/accelerate_interpolator"
android:duration="6000"
android:fromXScale="1.0" android:toXScale="0.6"
android:pivotX="0"
android:fromYScale="1.0" android:toYScale="1.0"
android:repeatCount="1"
android:repeatMode="reverse" />
</set>
Es scheint, als ob nur ein Interpolator zu einem bestimmten Zeitpunkt für alle Animationen aktiv sein kann, auf ein einzelnes Objekt durchgeführt wird.