java代码创建动画方法
//创建动画
Animation alpha=new AlphaAnimation(0.1f,1.0f);
//设置动画时间为5秒
alphalsetDuratoin(5000);
//开始播放
img.startAnimation(alpha);