我不明白为什么会这样。我将 imageview 设置为不可见。然后旋转它。但是我可以看到图像视图在屏幕上和屏幕上闪烁。为什么 setvisibility 不能立即起作用?
img = (ImageView) findViewById(R.id.mystuff);
img.setVisibility(View.INVISIBLE);
animation = new RotateAnimation(0, 0,
Animation.RELATIVE_TO_SELF, 0.5f,
Animation.RELATIVE_TO_SELF, 0.5f);
animation.setDuration(0);
img.startAnimation(animation);