Android Automatic Circular Gallery

Ich habe ein Galerie-Widget mit 1-10 zu verschiebenden Bildern. Ich weiß, dass wenn ich den Bildschirm streife, die Bilder von links nach rechts scrollen. Ich möchte, dass die automatische Kreisgalerie nach 10 automatisch beim ersten Bild startet. Gibt es einen automatischen Kreisadapter oder eine Möglichkei

         final Gallery g = (Gallery) findViewById(R.id.gallery);
         g.setAdapter(new ImageAdapter(this));
         Animation animation = AnimationUtils.loadAnimation(this,
        R.anim.rotate_indefinitely);

        animation.getInterpolator();
        animation.setDuration(1000);
        animation.setStartOffset(200);
        animation.setRepeatMode(2);
        animation.setFillAfter(false);
        animation.setFillEnabled(true);

        g.setAnimation(animation);
        g.startAnimation(animation);

aber ich sehe nur das erste Bild ist animiert ..

Schau dir mein @ Vide ...

Antworten auf die Frage(4)

Ihre Antwort auf die Frage