Necesito establecer la transparencia inicial para un TextView, pero no sé cómo hacerlo. En iPhone se puede hacer fácilmente con la propiedad alfa. Intenté establecer alfa usando AlphaAnimation pero no sirve, no funciona. Simplemente vuelve al 100% alfa cuando termina.Android. Ver transparencia
AlphaAnimation anim = new AlphaAnimation(1, 0.2f);
anim.setDuration (5000);
textView.startAnimation (anim);
¿Alguna idea, chicos?
Simplemente use anim.setFillAfter (true). –
Gracias hombre! Eso funcionó :) Aunque es bastante extraño que no se pueda hacer sin usar la animación ... –