逐幀動(dòng)畫(Frame-by-frame Animations)顧名思義就是一幀接著一幀的播放圖片,就像放電影一樣。可以通過xml實(shí)現(xiàn)也可以通過java代碼實(shí)現(xiàn)。逐幀動(dòng)畫適合實(shí)現(xiàn)比較簡(jiǎn)單的動(dòng)畫效果,如果要實(shí)現(xiàn)復(fù)雜動(dòng)畫不太建議使用逐幀動(dòng)畫。

xml方式實(shí)現(xiàn):
step 1 : 在res/drawable目錄下一個(gè)文件sample_animlist.xml:
<?xml version="1.0" encoding="utf-8"?> <animation-list xmlns:android="http://schemas.android.com/apk/res/android" android:oneshot="false"> <item android:drawable="@mipmap/sample_1" android:duration="100" /> <item android:drawable="@mipmap/sample_2" android:duration="100" /> <item android:drawable="@mipmap/sample_3" android:duration="100" /> <item android:drawable="@mipmap/sample_4" android:duration="100" /> <item android:drawable="@mipmap/sample_5" android:duration="100" /> <item android:drawable="@mipmap/sample_6" android:duration="100" /> </animation-list>
網(wǎng)站名稱:Android逐幀動(dòng)畫實(shí)現(xiàn)代碼-創(chuàng)新互聯(lián)
文章轉(zhuǎn)載:http://chinadenli.net/article10/pcigo.html
成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供網(wǎng)站內(nèi)鏈、靜態(tài)網(wǎng)站、企業(yè)建站、域名注冊(cè)、品牌網(wǎng)站建設(shè)、做網(wǎng)站
聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請(qǐng)盡快告知,我們將會(huì)在第一時(shí)間刪除。文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如需處理請(qǐng)聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時(shí)需注明來源: 創(chuàng)新互聯(lián)
猜你還喜歡下面的內(nèi)容