读书人

卡通

发布时间: 2013-10-08 17:02:59 作者: rapoo

动画

一、介绍:

卡通


二、实现方法

1、通过布局文件来实现

1)新建/res/anim/alpha.xml文件(这里以透明度动画为例子)

2)在MainActivity中写上

Animation animation = new AlphaAnimation(1.0f, 0.0f);animation.setDuration(2000);animation.setFillAfter(true);iv.startAnimation(animation);




读书人网 >移动开发

热点推荐