当前位置: 代码迷 >> Android >> android Frame卡通片基础
  详细解决方案

android Frame卡通片基础

热度:25   发布时间:2016-05-01 10:07:39.0
android Frame动画基础

Frame动画是通过对多张系列帧图片的不停切换来达到视觉上的动画效果。

XML动画:

一:

<?xml version="1.0" encoding="uft-8"?>

<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中:

?

  相关解决方案