码迷,mamicode.com
首页 > 移动开发 > 详细

android实现类似于支付宝余额快速闪动的效果

时间:2015-02-09 15:54:46      阅读:160      评论:0      收藏:0      [点我收藏+]

标签:

效果如下:

  此图片不会动,但实际上是会快速跳动的。 

之前看到有支付宝的效果非常牛逼。就是进去看到余额呼噜噜的直接上蹿下跳到具体数字,效果帅,但不知道怎么实现,最近终于知道了。

技术分享

思路:

     首先经常用到倒计时操作。这个类就是 CountDownTimer.Android自带的。继承此类。无非就是跳动的 increase和intervel

增加的数字和间隔!你懂。继续。。然后让他快速从一定数字跳动到具体的总额数字,无废话了。。看Demo看效果

代码:

直接调用执行:

private void initAllViews() {
        myDanceTimer = new DanceWageTimer(DanceWageTimer.getTotalExecuteTime(myMoney, 100), 100, tvMoney, myMoney);
        myDanceTimer.start();
    }

/**
     * @Title getTotalExecuteTime
     * @Description 得到总共执行的时间
     * @param totalWage
     * @return
     */
    public static int getTotalExecuteTime(float totalWage, int interval) {
        int wage = getIntegerOfWage(totalWage);
        int startNum = getStartNum(totalWage);
        int increased = getIncreased(startNum);
        int result = (wage - startNum) / increased * interval;
        return result;
    }

Demo:下载地址:http://pan.baidu.com/s/1mgkPnHQ猛击这里

android实现类似于支付宝余额快速闪动的效果

标签:

原文地址:http://www.cnblogs.com/lixiaodaoaaa/p/4281427.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!