我一直在测试
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' }