如何从Kotlin获取以xml编写的`PathInterpolator`

时间:2018-08-09 03:38:51

标签: android kotlin android-animation

我在xml中将PathInterpolator定义为

<pathInterpolator xmlns:android="http://schemas.android.com/apk/res/android"
    android:controlX1="0.4"
    android:controlY1="0"
    android:controlX2="1"
    android:controlY2="1"/>

我如何从interpolator那里获得kotlin

1 个答案:

答案 0 :(得分:0)

我认为,您可以像从Interpolator中加载其他.xml一样加载它。

import android.view.animation.AnimationUtils

//...
AnimationUtils.loadInterpolator(context, R.interpolator.you_file)