AlphaAnimation does not work

前端 未结 3 405
南旧
南旧 2020-12-09 01:42

I have been looking for a solution to my problem. But my code seems to be ok.

I\'ll try to explain: I have a TextView with android:alpha=\"0\" in my layout definiti

3条回答
  •  挽巷
    挽巷 (楼主)
    2020-12-09 02:04

    More simple way is presented in this answer:

    tv.animate().alpha(1).setDuration(1000);
    

提交回复
热议问题