Created
July 14, 2018 09:40
-
-
Save vorobeij/7bc92b32f49f0142ac601855791433ab to your computer and use it in GitHub Desktop.
spans
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
| 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