Possible Duplicate:
Android: Clickable hyperlinks in AlertDialog
Hi, I have created an AlertDialog with two buttons (positive and negative) along with message text. Both the buttons are performing some action already and I want to hyper link the message text in AlertDialog box. Can anyone please help me with how to do this?
You’ve still got 1 more button (neutral) to play with if you wanted…
Otherwise, I would suggest reading this question.
This is how I have accomplished it though:
I have used regular
<a href=".."></a>formatting in my strings.xmlThe only thing I don’t like about my current solution is that it makes all of the text clickable and not just the links.