Android:点击按钮后布局上的动画,最低SDK版本为14

Android:点击按钮后布局上的动画,最低SDK版本为14,第1张

概述在最低SDK版本14应用程序中,如何在 Android中完成与此相同的效果? >背景效果 >滑动切换按钮 >我的minSDKVersion是14 看起来像是在背景上放大动画的圆圈,还是有更具体的功能呢? 非常感谢… 看看 Circular Reveal from touch point: @Overridepublic boolean onTouch(View view, MotionEvent 在最低SDK版本14应用程序中,如何在 Android中完成与此相同的效果?

>背景效果
>滑动切换按钮
>我的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所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/1130232.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-30
下一篇 2022-05-30

发表评论

登录后才能评论

评论列表(0条)

保存