Skip to content

Instantly share code, notes, and snippets.

@gpetuhov
Last active April 9, 2017 06:40
Show Gist options
  • Save gpetuhov/1c8151618413f6aea4137fe0fa7d6482 to your computer and use it in GitHub Desktop.
Save gpetuhov/1c8151618413f6aea4137fe0fa7d6482 to your computer and use it in GitHub Desktop.
Android TextView limit text to one line
Add to TextView tag in the layout XML file:
android:ellipsize="end"
android:maxLines="1"
This will limit number of lines to 1 and if text exceeds limit, TextView will display ... in the end of line.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment