Animación Dibujable programáticamente sin animación-lista xml

Estoy en una situación en la que quiero mostrar la animación de la lista dinámica de imágenes. Quiero usar AnimationDrawable para este propósito, pero desafortunadamente estoy atascado ... :( mi código es como

<code>ImageView globe = (ImageView) findViewById(R.id.globe);

AnimationDrawable animation = new AnimationDrawable();
animation.setOneShot(true);

Resources res = this.getResources();

while (from <= to) {
    String name = "globe_" + String.format("%03d", from);
    int globeId = res.getIdentifier(name, "drawable",
            this.getPackageName());
    animation.addFrame(res.getDrawable(globeId), 200);
    from++;
}

globe.setBackgroundDrawable(animation);
globe.post(new Runnable(){
        @Override
        public void run() {
            animation.start();
        }
});
</code>

Respuestas a la pregunta(2)

Su respuesta a la pregunta