анимации animation list? Я делала как здесь описано
// Load the ImageView that will host the animation and
// set its background to our AnimationDrawable XML resource.
ImageView img = (ImageView)findViewById(R.id.spinning_wheel_image);
img.setBackgroundResource(R.drawable.spin_animation);
// Get the background, which has been compiled to an AnimationDrawable object.
AnimationDrawable frameAnimation = (AnimationDrawable) img.getBackground();
// Start the animation (looped playback by default).
frameAnimation.start();
Вот такую ошибку получаю
java.lang.OutOfMemoryError: Failed to allocate a 11087852 byte allocation with 4194304 free bytes and 9MB until OOM
А если посмотреть по стеку ошибки — где она возникает?
Обсуждают сегодня