组合动画

来源:互联网 发布:xlsx 导入 java 编辑:程序博客网 时间:2024/05/07 19:01
img=(ImageView)view.findViewById(R.id.img);RotateAnimation animation = new RotateAnimation(0, 180, Animation.RELATIVE_TO_SELF, 0.5f, Animation.RELATIVE_TO_SELF, 0.5f);animation.setRepeatCount(1);animation.setRepeatMode(Animation.RESTART);TranslateAnimation animation1 = new TranslateAnimation(Animation.RELATIVE_TO_PARENT, 0.0f, Animation.RELATIVE_TO_SELF, 0.8f, Animation.RELATIVE_TO_PARENT, 0.0f, Animation.RELATIVE_TO_SELF, 0.8f);animation1.setRepeatCount(1);animation1.setRepeatMode(Animation.RELATIVE_TO_PARENT);AnimationSet set = new AnimationSet(true);set.addAnimation(animation);set.addAnimation(animation1);set.setDuration(5000);img.startAnimation(set);
原创粉丝点击