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

动画片animition方法

2012-08-21 
动画animition方法?protected void animate() {?? ? ? ? // TODO Auto-generated method stub?? ? ? ? Ima

动画animition方法

?protected void animate() {?? ? ? ? // TODO Auto-generated method stub?
? ? ? ? ImageView img = (ImageView) findViewById(R.id.image_view);?
? ? ? ? img.setBackgroundResource(R.drawable.frame_animation);?
? ? ? ? img.setVisibility(ImageView.VISIBLE);?
?
? ? ? ? AnimationDrawable anim = (AnimationDrawable) img.getBackground();?
?
? ? ? ? if(anim.isRunning()){?
? ? ? ? ? ? anim.stop();?
? ? ? ? }?
? ? ? ? else{ ?
? ? ? ? ? ? anim.stop();?
? ? ? ? ? ? anim.start();?
? ? ? ? }?
? ? }?

热点排行