本文介紹了如何在Android中創(chuàng)建自定義插值器來應(yīng)用翻譯動(dòng)畫的處理方法,對(duì)大家解決問題具有一定的參考價(jià)值,需要的朋友們下面隨著小編來一起學(xué)習(xí)吧!
問題描述
我要?jiǎng)?chuàng)建自定義插補(bǔ)以應(yīng)用平移動(dòng)畫,其中動(dòng)畫應(yīng)經(jīng)過以下函數(shù):
public static float easeIn(float t,float b , float c, float d) {
return c*(t/=d)*t + b;
}
其中:
t: current time
b: start value
c: change in value
d: duration
我找到了一個(gè)實(shí)現(xiàn)縮放動(dòng)畫的方法,如果只帶一個(gè)參數(shù):
import android.view.animation.Interpolator;
public class MyInterpolator implements Interpolator {
public MyInterpolator() {
}
public float getInterpolation(float t) {
float x = 2.0f * t - 1.0f;
return 0.5f * (x * x * x + 1.0f);
}
}
如何使用上面的函數(shù)Create In Interpolate進(jìn)行翻譯。
推薦答案
簡(jiǎn)答:從名字看,我猜你的easyIn應(yīng)該是一個(gè)加速插值器
您編寫的函數(shù)不是插值器所能做的。插值器不關(guān)心它是Scale動(dòng)畫、Alpha動(dòng)畫還是TranslateAnimation。
文檔對(duì)Interpolator getInterpolation的解釋如下:
介于0和1.0之間的值,表示動(dòng)畫中的當(dāng)前點(diǎn),其中0表示開始,1.0表示結(jié)束
插補(bǔ)器提供了從(相對(duì))經(jīng)過的時(shí)間映射到動(dòng)畫進(jìn)度的功能。您可以想象它的單位為%,getInterpolation(Xy)將告訴您
“如果通過總時(shí)長(zhǎng)的XY%,則應(yīng)通過總動(dòng)畫的多少%?”
以LinearInterpolator為例。實(shí)現(xiàn)如下所示:
public float getInterpolation(float t) {
return t
}
示例:使用LinearInterpolator設(shè)置從0px到200px的動(dòng)畫:
經(jīng)過45%(0.45)的時(shí)間后,應(yīng)通過45%(回報(bào)0.45)的動(dòng)畫,即90px(200px*0.45)
有關(guān)詳細(xì)信息,請(qǐng)閱讀以下內(nèi)容:
Android Animations Tutorial 5: More on Interpolators
這篇關(guān)于如何在Android中創(chuàng)建自定義插值器來應(yīng)用翻譯動(dòng)畫的文章就介紹到這了,希望我們推薦的答案對(duì)大家有所幫助,