J'ai un paragraphe de texte et quand un bouton est cliqué, je veux que le texte s'estompe, change pour un autre texte, puis réapparaisse. J'ai du code mais il ne fait pas l'animation de disparition, juste l'apparition.
final TextView mSwitcher = (TextView) findViewById(R.id.bookContent);
mSwitcher.setText("ancien texte");
final Animation in = new AlphaAnimation(0.0f, 1.0f);
in.setDuration(3000);
final Animation out = new AlphaAnimation(1.0f, 0.0f);
out.setDuration(3000);
Button moveOn = (Button) findViewById(R.id.moveOn);
moveOn.setOnClickListener( new OnClickListener() {
public void onClick(View v) {
mSwitcher.startAnimation(out);
mSwitcher.setText("nouveau texte");
mSwitcher.startAnimation(in);
}
});