How can I make certain words clickable in a TextView?
I am building a twitt开发者_如何学Goer-like client. Assume I have a string:
"$AAPL rocks!"
I want to be able to click on "$AAPL" and do something.
How can I go about making $ clickable in a TextView?
Linkify should be what you are looking for.
UPDATE: You can implement your own URI and have your application listen for that Intent calls.
精彩评论