码迷,mamicode.com
首页 > 其他好文 > 详细

增加动画的效果

时间:2014-11-27 00:07:00      阅读:273      评论:0      收藏:0      [点我收藏+]

标签:android   style   blog   io   ar   color   使用   sp   on   

a) alpha(AlphaAnimation)

渐变透明

b) scale(ScaleAnimation)

渐变尺寸伸缩

c) translate(TranslateAnimation)

画面转换、位置移动

d) rotate(RotateAnimation)

画面转移,旋转动画

 1 public void onClick(View v) {
 2                 if(grid_list) {
 3                     lv.setVisibility(View.VISIBLE);
 4                     gv.setVisibility(View.GONE);
 5                     lv.setAdapter(lvAdapter);
 6                     grid_list = false;
 7                     
 8                     Animation animation = new RotateAnimation(60,0);
 9                     animation.setInterpolator(MainActivity.this, android.R.anim.bounce_interpolator);
10                     animation.setDuration(1000);
11                     
12                     lv.startAnimation(animation);
13                 }
14                 else {
15                     lv.setVisibility(View.GONE);
16                     gv.setVisibility(View.VISIBLE);
17                     gv.setAdapter(gvAdapter);
18                     grid_list = true;
19                     Animation animation = new TranslateAnimation(130, 1, 130, 1);
20                     animation.setDuration(1000);
21                     animation.setInterpolator(MainActivity.this, android.R.anim.overshoot_interpolator);
22                     //setInterpolator用来丰富动画效果,上面是超过又回来
23                     gv.startAnimation(animation);
24                 }

 若想让一个VIEW呈现多种动画效果,则要使用AnimationSet

例如:

AnimationSet set = new AnimationSet(false);

set.addAnimation(animation);

VIEW.startAnimation(set);

可以理解为set是一种混合型的动画效果。

 

增加动画的效果

标签:android   style   blog   io   ar   color   使用   sp   on   

原文地址:http://www.cnblogs.com/hixin/p/4125087.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!