Prueba a utilizar
Animation Resources.
Aquí tienes un tutorial:
http://android-er.blogspot.com.es/20...tion-with.html
Basicamente declaras las imágenes a animar en el xml y desde la clase inicias la animación con start y la detienes con stop.
Por ejemplo, la clase sería algo así:
private AnimationDrawable frameAnimation;
private ImageView img_dados;
...
img_dados = (ImageView) findViewById(R.id.imgv_dados);
//Animación dados
img_dados.setBackgroundResource(R.drawable.dados_a nimation);
frameAnimation = (AnimationDrawable) img_dados.getBackground();
//Inicias con:
frameAnimation.start();
//Detienes con:
frameAnimation.stop();