>背景效果
>滑动切换按钮
>我的minSDKVersion是14
看起来像是在背景上放大动画的圆圈,还是有更具体的功能呢?
非常感谢…
解决方法 看看 Circular Reveal from touch point:@OverrIDepublic boolean ontouch(VIEw vIEw,MotionEvent motionEvent) { if (motionEvent.getAction() == MotionEvent.ACTION_DOWN) { if (vIEw.getID() == R.ID.square_yellow) { revealFromCoordinates(motionEvent.getRawX(),motionEvent.getRawY()); } } return false;}private Animator animateRevealcolorFromCoordinates(int x,int y) { float finalRadius = (float) Math.hypot(vIEwRoot.getWIDth(),vIEwRoot.getHeight()); Animator anim = VIEwAnimationUtils.createCircularReveal(vIEwRoot,x,y,finalRadius); vIEwRoot.setBackgroundcolor(color); anim.start();}总结
以上是内存溢出为你收集整理的Android:点击按钮后布局上的动画,最低SDK版本为14全部内容,希望文章能够帮你解决Android:点击按钮后布局上的动画,最低SDK版本为14所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)