简体   繁体   中英

Create animation for text field

I need to create an animation in Android. I have 3 TextView s placed in an LinearLayout . All I want to do is the text field must come on to the screen as though it has been pulled out from the left end of the screen. Something similar to a marquee, however the text field must come from left end of screen one character at a time to occupy the left end of screen.

you must textView set textview property in your xml layout android:ellipsize="marquee" and you oncreate() method to set textview like youtextview.setSelected(true); now your textview running with marquee effect perfectly work for me!

another way you can add dynamically textview in coding you can follow this code:

yourtextview.setEllipsize(TruncateAt.MARQUEE);
yourtextview.setSelected(true);

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM