其他分享
首页 > 其他分享> > Android:点击按钮后布局上的动画,最低SDK版本为14

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

作者:互联网

在最低SDK版本14应用程序中,如何在Android中完成与此相同的效果?

enter image description here

>背景效果
>滑动切换按钮
>我的minSDKVersion是14

看起来像是在背景上放大动画的圆圈,还是有更具体的功能呢?

非常感谢…

解决方法:

看看Circular Reveal from touch point

@Override
public 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, 0, finalRadius);
    viewRoot.setBackgroundColor(color);
    anim.start();
}

enter image description here

标签:android,animation,slidetoggle
来源: https://codeday.me/bug/20190611/1221084.html