首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 移动开发 > Android >

android Frame卡通片基础

2013-08-04 
android Frame动画基础animation-list xmlns:androidhttp://schemas.android.com/apk/res/android ?an

android Frame动画基础

<animation-list xmlns:android="http://schemas.android.com/apk/res/android" ?android:oneshot="false">

? ? ?<item android:drawable="@drawable/img1" ?android:duration="150"/>

? ? ?<item android:drawable="@drawable/img2" ?android:duration="150"/>

? ? ??<item android:drawable="@drawable/img3" ?android:duration="150"/>

<animation-list />

?

二:

imageView img_frame;

AnimationDrawable loaclAnimation=null;

img_frame.setBackgroundResource(R.id.img_frame);

loaclAnimation=(AnimationDrawable?)img_frame.getBackground();

loaclAnimation.start();

?

loaclAnimation.stop();

activity中:

?

热点排行