M
moppi1972
Neues Mitglied
- 0
Hallo
ich habe folgende rotatio anim :
sicht=(TextView)findViewById(R.id.test);
ImageView image=(ImageView)findViewById(R.id.imageView1);
RotateAnimation anim = new RotateAnimation(0f,360f,
Animation.RELATIVE_TO_SELF, 0.5f, Animation.RELATIVE_TO_SELF,
0.5f);
anim.setInterpolator(new LinearInterpolator());
anim.setRepeatCount(8);
anim.setDuration(3000);
image.startAnimation(anim);
Diese geht auch recht gut.
Wenn die 8 Repeat abgelaufen sind möchte ich ein TextView aufrufen.
Ich kann einfach den richtigen Anschluss nicht finden.
Wie kann ich auslesen das die 8 Abläufe zu ende sind ?
Habe jetzt schon mehrer Sachen ausprobiert.
Vielen Dank schon mal für eure Hilfe.
ich habe folgende rotatio anim :
sicht=(TextView)findViewById(R.id.test);
ImageView image=(ImageView)findViewById(R.id.imageView1);
RotateAnimation anim = new RotateAnimation(0f,360f,
Animation.RELATIVE_TO_SELF, 0.5f, Animation.RELATIVE_TO_SELF,
0.5f);
anim.setInterpolator(new LinearInterpolator());
anim.setRepeatCount(8);
anim.setDuration(3000);
image.startAnimation(anim);
Diese geht auch recht gut.
Wenn die 8 Repeat abgelaufen sind möchte ich ein TextView aufrufen.
Ich kann einfach den richtigen Anschluss nicht finden.
Wie kann ich auslesen das die 8 Abläufe zu ende sind ?
Habe jetzt schon mehrer Sachen ausprobiert.
Vielen Dank schon mal für eure Hilfe.