弹性动画的实现

本文介绍了如何使用Facebook的rebound库来实现弹性动画,包括图片的弹性放大和指示器的弹性滑动。通过导入依赖,设置SpringConfig,以及使用SimpleSpringListener监听动画过程,可以实现动画效果。文章还提到了封装工具类的使用,以及如何处理view的属性动画,特别是处理没有get和set方法的属性,如ImageView的leftMargin。
摘要由CSDN通过智能技术生成

使用Facebook推出的rebound实现

先看下图片放大的效果,下文还有一个指示器弹性滑动的
在这里插入图片描述

一、导入依赖

implementation 'com.facebook.rebound:rebound:0.3.8'

二、代码中使用

先看一下官网的示例代码
官网示例

// Create a system to run the physics loop for a set of springs.
        SpringSystem springSystem = SpringSystem.create();
        // Add a spring to the system.
        Spring spring = springSystem.createSpring();
        // Add a listener to observe the motion of the spring.
        spring.addListener(new SimpleSpringListener() {
   
            @Override
            public void onSpringUpdate(Spring spring) {
   
                // You can observe the updates in the spring
                // state by asking its current value in onSpringUpdate.
                float value = (float) spring.getCurrentValue();
                float scale = 1f - (value * 0.5f);
                myView.setScaleX(scale);
                myView.setScaleY(scale);
            }
        });
        // Set the spring in motion; moving from 0 to 1
        spring.setEndValue(1);

首先创建一个spring,然后设置监听,在onSpringUpdate方法中做view的变化

例一 代码中直接使用:
 SpringSystem springSystem = SpringSystem.create();
        Spring spring = springSystem.createSpring();
        spring.setCurrentValue(1.0f);
        spring.setSpringConfig(new SpringConfig(50,5));
        spring.addListener(new SimpleSpringListener(){
   
            @Override
            public void onSpringUpdate(Spring spring) {
   
                super.onSpringUpdate(spring);
                float currentValue = (float) spring.getCurrentValue();
                imageView.setScaleX(currentValue);
                imageView.setScaleY(currentValue);
            }
        });
        spring.setEndValue(1.8f
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值