Skip to content

Instantly share code, notes, and snippets.

@vorobeij
Created July 14, 2018 09:40
Show Gist options
  • Select an option

  • Save vorobeij/7bc92b32f49f0142ac601855791433ab to your computer and use it in GitHub Desktop.

Select an option

Save vorobeij/7bc92b32f49f0142ac601855791433ab to your computer and use it in GitHub Desktop.
spans
tagFriendsTitle.text = SpannableStringBuilder("tag friend").apply {
setSpan(object : ClickableSpan() {
override fun onClick(widget: View?) {
Log.d("vorobeisj", "click on header")
}
}, 0, 9, 0)
}
tagFriendsTitle.movementMethod = LinkMovementMethod.getInstance()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment