Skip to content

Instantly share code, notes, and snippets.

@lecho
Created August 20, 2013 08:12
Show Gist options
  • Select an option

  • Save lecho/6278547 to your computer and use it in GitHub Desktop.

Select an option

Save lecho/6278547 to your computer and use it in GitHub Desktop.
Android TextView marquee.
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