3中实现动画的方法:ImageView imgView = (ImageView)findViewById(R.id.imageView_logo); //第一种动画方法,使用AlphaAnimation实现动画(图片由暗变亮的过程)//animation = new AlphaAnimation(0.0f, 1.0f);//第二种动画方法,使用ScaleAnimation实现,动画由小变大animation = new ScaleAnimation(0.0f, 1.0f, 0.0f, 1.0f…