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 \
Put a String in string.xml
Support: click here
And you can use it in textView like this:
EDIT
For some reason above code does not work properly. So, add below code also,
TextView t2 = (TextView) findViewById(R.id.text);
t2.setMovementMethod(LinkMovementMethod.getInstance());