没有找到Android L ViewAnimationUtils?

前端之家收集整理的这篇文章主要介绍了没有找到Android L ViewAnimationUtils?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我一直在测试 Android L SDK,并试图了解新的Material设计和查看动画.

具体来说,我想尝试让Reveal Effect正常工作,但缺少课程.

http://developer.android.com/preview/material/animations.html#reveal

让我失望的具体路线是

ValueAnimator anim =
ViewAnimationUtils.createCircularReveal(myView,cx,cy,finalRadius);

缺少ViewAnimationUtils类 – 或者我缺少一些依赖项?

编辑:对于targetSDK,minSDK和compileSDK,我在build.gradle文件中有这些设置.

compileSdkVersion 'android-L'
buildToolsVersion '20.0.0'
defaultConfig {
    minSdkVersion 'L'
    targetSdkVersion 'L'
    versionCode 1
    versionName '1.0'
}

解决方法

只需针对L编译并添加以下内容.
import android.view.ViewAnimationUtils;

正如我在上面评论的那样,这看起来像Android工作室版本中的一个错误. Android Studio会报告错误,但该应用仍会运行.

原文链接:https://www.f2er.com/android/309669.html

猜你在找的Android相关文章