Created
August 20, 2013 08:12
-
-
Save lecho/6278547 to your computer and use it in GitHub Desktop.
Android TextView marquee.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| TextView textView = new TextView(this); | |
| textView.setEllipsize(TruncateAt.MARQUEE); | |
| textView.setFocusableInTouchMode(true); | |
| textView.setFreezesText(true); | |
| textView.setSingleLine(true); | |
| textView.setMarqueeRepeatLimit(-1); | |
| textView.setFocusable(true); | |
| textView.setSelected(true); | |
| textView.setText("Sooooooooooooooome Loooooooooooooooooooooooong Teeeeeeeeeeeeeeeeeeeeeeeeeeext"); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment