Android为listview的item添加动画效果

Android提供了LayoutAnimationController类,用于为布局或者ViewGroup的子视图添加动画效果。

注意:开发者不可以为每一个子视图分别添加不同的动画效果,但是LyoutAnimationController可以决定各个视图显示动画效果的时间。

@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
lView = (ListView) findViewById(R.id.lv);
// 创建一个动画集合
AnimationSet set = new AnimationSet(true);
// 设置动画插补器------BounceInterpolator:动画结束的时候弹起
set.setInterpolator(new BounceInterpolator());


//使用代碼加載
// Animation animation = new AlphaAnimation(0.0f, 1.0f);
// animation.setDuration(50);
// set.addAnimation(animation);
//
// animation = new TranslateAnimation(Animation.RELATIVE_TO_SELF, 0.0f,
// Animation.RELATIVE_TO_SELF, 0.0f, Animation.RELATIVE_TO_SELF,
// -1.0f, Animation.RELATIVE_TO_SELF, 0.0f);
// animation.setDuration(5000);
// set.addAnimation(animation);


// 用布局文件加载
Animation trAnimation = AnimationUtils.loadAnimation(this,
R.anim.fade_in);
Animation alAnimation = AnimationUtils.loadAnimation(this,
R.anim.alpha_in);
set.addAnimation(trAnimation);
set.addAnimation(alAnimation);


//创建对象加入动画集合  并设置子视图动画持续时间
LayoutAnimationController controller = new LayoutAnimationController(
set, 0.5f);

List<String> dataList = new ArrayList<String>();
for (int i = 0; i < 20; i++) {
dataList.add(i + "");
}
ArrayAdapter<String> adapter = new ArrayAdapter<String>(this,
android.R.layout.simple_list_item_1, dataList);
lView.setAdapter(adapter);


//将LayoutAnimationController对象设置到ListView中
lView.setLayoutAnimation(controller);
}


备注:插补器:Interpolator

AccelerateDecelerateInterpolator 在动画开始与结束的地方速率改变比较慢,在中间的时候加速

  AccelerateInterpolator  在动画开始的地方速率改变比较慢,然后开始加速

  AnticipateInterpolator 开始的时候向后然后向前甩

  AnticipateOvershootInterpolator 开始的时候向后然后向前甩一定值后返回最后的值

  BounceInterpolator   动画结束的时候弹起

  CycleInterpolator 动画循环播放特定的次数,速率改变沿着正弦曲线

  DecelerateInterpolator 在动画开始的地方快然后慢

  LinearInterpolator   以常量速率改变

  OvershootInterpolator    向前甩一定值后再回到原来位置


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值