BaseInterpolator无法解析为某种类型

时间:2016-01-19 14:27:28

标签: android sdk include

正如标题所说,“BaseInterpolator”无法解析为类型而我无法包含它通过

import android.view.animation.BaseInterpolator;

我还 包括LinearInterpolator ,没有任何问题 ,但今天这个“BaseInterpolator”会编译错误。< / p>

import android.view.animation.LinearInterpolator;

此项目的SDK依赖性为:

android:minSdkVersion="16"
android:targetSdkVersion="23"

感谢您的考虑。

1 个答案:

答案 0 :(得分:3)

您应该使用:

import android.view.animation.Interpolator;

BaseInterpolator添加了API 22以进一步抽象。使用Interpolator界面就可以了。