Skip to content

Instantly share code, notes, and snippets.

@tfcporciuncula
Created January 30, 2019 07:59
Show Gist options
  • Save tfcporciuncula/f351bd95d398ef2658ce90c85bd1b676 to your computer and use it in GitHub Desktop.
Save tfcporciuncula/f351bd95d398ef2658ce90c85bd1b676 to your computer and use it in GitHub Desktop.
TextView extension to dynamically set maxLines
fun TextView.setMaxLinesToEllipsize() = doOnPreDraw {
val numberOfCompletelyVisibleLines = (measuredHeight - paddingTop - paddingBottom) / lineHeight
maxLines = numberOfCompletelyVisibleLines
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment