您的位置:首页 > 移动开发 > Android开发

NineOldAndroids在level 11以下的版本中实现view动画

2014-12-03 15:49 471 查看
NineOldAndroids项目: http://nineoldandroids.com/

在level 11以上的系统版本中,可以用以下方法实现view平移、透明度

text1.setTranslationX(-600 * arg1);
text1.setAlpha(1 - Math.abs(arg1));
text2.setTranslationX(-200 * arg1);
text2.setAlpha(1 - Math.abs(arg1));
text3.setTranslationX(-400 * arg1);
text3.setAlpha(1 - Math.abs(arg1));
但是这些方法不能在level 11以下的版本中使用,所有为了解决这个问题,可以引用NineOldAndroids来实现同样的效果
ViewPropertyAnimator.animate(text1).setDuration(0).translationX(-600*arg1);
ViewPropertyAnimator.animate(text2).setDuration(0).translationX(-200*arg1);
ViewPropertyAnimator.animate(text3).setDuration(0).translationX(-400*arg1);
ViewPropertyAnimator.animate(text1).setDuration(0).alpha(1 - Math.abs(arg1));
ViewPropertyAnimator.animate(text2).setDuration(0).alpha(1 - Math.abs(arg1));
ViewPropertyAnimator.animate(text3).setDuration(0).alpha(1 - Math.abs(arg1));
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: 
相关文章推荐