How to give autolink for some part of textview ? For example : My text inside TextView is \"Please click here to open this webpage\". I want to show link for only the text \
Textviews are capable of displaying HTML, which solves your problem. Wrap what you want clickable in a hyperlink:
String html = "My link is here"; myTextView.setText(Html.fromHtml(html));