草庐IT

ViewAnimationUtils

全部标签

未找到 Android L ViewAnimationUtils?

我一直在测试AndroidLSDK,并尝试了解新的MaterialDesign和查看动画。具体来说,我想尝试让RevealEffect正常工作,但缺少该类。http://developer.android.com/preview/material/animations.html#reveal让我失望的具体行是ValueAnimatoranim=ViewAnimationUtils.createCircularReveal(myView,cx,cy,0,finalRadius);缺少ViewAnimationUtils类-还是我缺少某些依赖项?编辑:对于targetSDK、minSDK和

android - ViewAnimationUtils 无法工作

正在尝试执行下面的代码段。[fromdeveloperdocumentationhere]:ViewmyView=findViewById(R.id.my_view);//getthecenterfortheclippingcircleintcx=(myView.getLeft()+myView.getRight())/2;intcy=(myView.getTop()+myView.getBottom())/2;//getthefinalradiusfortheclippingcircleintfinalRadius=Math.max(myView.getWidth(),myView.