启动Frame Animation动画的代码rocketAnimation.start();不能在OnCreate()中,因为在OnCreate()中 AnimationDrawable还没有完全的与ImageView绑定
这个时候是不能显示的, 在onWindowFocusChanged中可以显示出动画
public void onWindowFocusChanged(boolean hasFocus)
{
aniDraw.setVisible(true, true);
aniDraw.invalidateSelf();
aniDraw.stop();
aniDraw.start();
}