AlphaAnimation无效

当为一个ImageView直接使用imageView.setAnimation(new AlphaAnimation(0f,1f));

这么设置的时候在某些手机上无法正常显示的时候  试试下面这种方法

AnimationSet animationSet = new AnimationSet(true);
        AlphaAnimation animation = new AlphaAnimation(0.1f, 1f);
        animation.setDuration(900);
        animation.setFillAfter(true);
        animationSet.addAnimation(animation);
        v.startAnimation(animationSet);

你可能感兴趣的:(Android)