之前看到有支付宝的效果非常牛逼。就是进去看到余额呼噜噜的直接上蹿下跳到具体数字,效果帅,但不知道怎么实现,最近终于知道了。
首先经常用到倒计时操作。这个类就是 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 猛击这里