I\'m implementing a TextView with a string containing two hyperlinks as below but the links are not opening a new browser window:
You can use like bellow..
textview xml
In activity
TextView tv_welcome_message=(TextView) findViewById(R.id.tv_welcome_message);
tv_welcome_message.setMovementMethod(LinkMovementMethod.getInstance());
String text = " Google ";
tv_welcome_message.setText(Html.fromHtml(text));