I have a textView and text like
\"This is the Simple Text with KeyWord and the Link to browse\"
in the above text i want to
Generate your TextView in the following manner:
TextView t3 = (TextView) findViewById(R.id.text3);
t3.setText(Html.fromHtml("This is the Simple Text with
Keyword and the
Link to browse"));
t3.setMovementMethod(LinkMovementMethod.getInstance());
Specify your activity the following way:
I think it should work. Might require some tweaking. I did not get the time to test it. Let me know if it works.