Ich versuche, ein Bild ständig ein- und auszublenden, aber es wird nur ein- und ausgeblendet. Wie kann ich es ständig wiederholen? Hier ist der Code:Ein- und Ausblenden eines Bildes in der Android-App
Animation fadeIn = new AlphaAnimation(0, 1);
fadeIn.setDuration(1000);
Animation fadeOut = new AlphaAnimation(1, 0);
fadeOut.setStartOffset(1000);
fadeOut.setDuration(1000);
AnimationSet animation = new AnimationSet(true);
animation.addAnimation(fadeIn);
animation.addAnimation(fadeOut);
ImageView loading = (ImageView)findViewById(R.id.loading);
loading.startAnimation(animation);
Danke das hat funktioniert: D –