正如标题所说,“BaseInterpolator”无法解析为类型而我无法包含它通过
import android.view.animation.BaseInterpolator;
我还 包括LinearInterpolator ,没有任何问题 ,但今天这个“BaseInterpolator”会编译错误。< / p>
import android.view.animation.LinearInterpolator;
此项目的SDK依赖性为:
android:minSdkVersion="16"
android:targetSdkVersion="23"
感谢您的考虑。
答案 0 :(得分:3)
您应该使用:
import android.view.animation.Interpolator;
BaseInterpolator
添加了API 22以进一步抽象。使用Interpolator
界面就可以了。