私は次のようにしました
imageView = (ImageView) findViewById(R.id.animation_iv);
imageView.setImageResource(R.drawable.loadinganim);
AnimationDrawable animationDrawable = (AnimationDrawable) imageView.getDrawable();
animationDrawable.start();
Loading.xmlに画像をコピーしています
<?xml version="1.0" encoding="utf-8"?>
<animation-list xmlns:android="http://schemas.android.com/apk/res/android"
android:oneshot="false">
<item android:drawable="@drawable/v1" android:duration="160" />
<item android:drawable="@drawable/v4" android:duration="160" />
<item android:drawable="@drawable/v7" android:duration="160" />
</animation-list>
ギャラクシーノートで問題が発生します。誰かアイデアがあれば助けてください。よろしくお願いします。