圧縮された jpeg の 25 フレームのアニメーションがあり、合計で 2 MB 未満です。
<?xml version="1.0" encoding="utf-8"?>
<animation-list xmlns:android="http://schemas.android.com/apk/res/android" android:oneshot="true">
<item android:drawable="@drawable/y1" android:duration="50" />
<item android:drawable="@drawable/y2" android:duration="50" />
...
<item android:drawable="@drawable/mouse" android:duration="50" />
</animation-list>
それでも弾いてみたら
iv.setBackgroundResource( R.anim.yawn );
AnimationDrawable anim = (AnimationDrawable)iv.getBackground();
anim.start();
ビットマップ サイズが VM の予算を超えてクラッシュしました。
どうすればいいですか?
ありがとう!