apradanas / simple-linkable-text

Simple way to create linked text, such as @username or #hashtag, in Android TextView and EditText
Other
74 stars 13 forks source link

Can support to get found links?? #1

Closed KingWu closed 8 years ago

KingWu commented 8 years ago

Any public method to get found links in the future?

apradanas commented 8 years ago

Hello @KingWu

It's included in v1.0.3. You can use List<Link> foundLinks = editText.getFoundLinks() or List<Link> foundLinks = textView.getFoundLinks(). You can check sample as well.

Thank you for your feedback.