以下代码在 Ice Cream Sandwich 手机中淡出视图,但在 Gingerbread 手机中不淡出:
myView.setVisibility(View.VISIBLE);
AlphaAnimation alphaAnimation = new AlphaAnimation(1.0f, 0.0f);
alphaAnimation.setDuration(3000);
myView.startAnimation(alphaAnimation);
...有人知道为什么会这样吗?
注意:我已经尝试过该
View.setAnimation(alphaAnimation)
方法以及显式调用该alphaAnimation.start()
方法,但在 Gingerbread 手机上都失败了。