Comment démarrer Animation immédiatement après onCreate?

Je suis http://developer.android.com/guide/topics/graphics/view-animation.html#frame-animation avec des changements mineurs. J'ai décidé de faire de l'animation en boucle et il veut commencer à partir de l'obtenir-aller.

Mon animation est à drawable/listening.xml:

<animation-list
xmlns:android="http://schemas.android.com/apk/res/android"
android:oneshot="false">
<item
    android:drawable="@drawable/l_01"
    android:duration="200" />
<item
    android:drawable="@drawable/l_02"
    android:duration="200" />
<item
    android:drawable="@drawable/l_03"
    android:duration="200" />
</animation-list>

et mon code d'initialisation:

 @Override public void onWindowFocusChanged(boolean hasFocus)  { 
      super.onWindowFocusChanged(hasFocus); 
      animImg = (ImageView)findViewById(R.id.listen_anim);
      animImg.setBackgroundResource(R.drawable.listening);
      anim = (AnimationDrawable) animImg.getBackground(); 
      anim.start();
 };

Tout ce que je vois est la première image et pas d'autres images.

source d'informationauteur hunterp