最后的逐帧动画漏说了一点点啊~~。要
imageView.setImageResource(R.drawable.anim_list);
AnimationDrawable animationDrawable = (AnimationDrawable) imageView.getDrawable();
animationDrawable.start();
【imageView 就是图片】
这样才可以动起来。
imageView.setImageResource(R.drawable.anim_list);
AnimationDrawable animationDrawable = (AnimationDrawable) imageView.getDrawable();
animationDrawable.start();
【imageView 就是图片】
这样才可以动起来。
2016-05-13