私は次のように AnimationDrawable を使用しています。
ImageView rocketImage = (ImageView) layout.findViewById(R.id.animation);
rocketImage.setBackgroundResource(R.drawable.progress_blue_animation);
rocketAnimation = (AnimationDrawable) rocketImage.getBackground();
rocketAnimation.start();
このコードは Android 3.0/4.0/4.1/4.0 では機能しますが、Android 2.2 では機能しません。この問題を解決するには?