課程
/移動開發(fā)
/Android
/Android屬性動畫賞析
為什么我設置了setStartDelay,圖片還是一次性彈出,沒有延時?
2016-09-08
源自:Android屬性動畫賞析 1-3
正在回答
你把代碼貼出來啊,
我的是這樣的:
private?void?startAnim()?{ ????for(int?i=0;i<res.length-1;i++){ ????????ObjectAnimator?animater?=?ObjectAnimator.ofFloat(imageViewList.get(i),"translationY",0F,i*80); ????????animater.setDuration(1000); ????????animater.setInterpolator(new?OvershootInterpolator()); ????????animater.setStartDelay(i*300); ????????animater.start(); ????????flag?=?false; ????} }
其實我覺得不加這句代碼,動畫還好看一些。
我是是小浩 提問者
讓動畫時長等于數(shù)組長度乘于300(這取決于你給i乘的值)
舉報
本次課程,將向你介紹如何使用屬性動畫做出更好的動畫
Copyright ? 2025 imooc.com All Rights Reserved | 京ICP備12003892號-11 京公網(wǎng)安備11010802030151號
購課補貼聯(lián)系客服咨詢優(yōu)惠詳情
慕課網(wǎng)APP您的移動學習伙伴
掃描二維碼關注慕課網(wǎng)微信公眾號
2016-09-08
你把代碼貼出來啊,
我的是這樣的:
其實我覺得不加這句代碼,動畫還好看一些。
2016-10-09
讓動畫時長等于數(shù)組長度乘于300(這取決于你給i乘的值)