所以iv最近开始寻找有关Android动画的更多信息的地方,我进入了这个Android开发页面: https://developer.android.com/preview/material/animations.html#reveal
我尝试制作自己的揭示效果,但是我收到了这个错误:
Cannot resolve symbol `ViewAnimationUtils`
我的代码:
RelativeLayout mlouta = (RelativeLayout) findViewById(R.id.louta);
int cx = (mlouta.getLeft() + mlouta.getRight()) / 2;
int cy = (mlouta.getTop() + mlouta.getBottom()) / 2;
int finalRadius = mlouta.getWidth();
ValueAnimator anim = ViewAnimationUtils.createCircularReveal(mlouta, cx, cy, 0, finalRadius); // error is : Cannot resolve symbol 'View AnimationUtils'
anim.start();
当我尝试导入android.view.ViewAnimationUtils
时,但同样的错误......
我使用的是Android Studio 0.8.9(最新版本)。
答案 0 :(得分:0)
没关系,问题是我的min sdk。