我做了如下
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>
它在 Galaxy Note 中出现问题。如果有人有想法请帮助我。在此先感谢