I\'m implementing a TextView with a string containing two hyperlinks as below but the links are not opening a new browser window:
Have a look on below code snippet, hope it helps,
TextView textView =(TextView)findViewById(R.id.textView);
textView.setClickable(true);
textView.setMovementMethod(LinkMovementMethod.getInstance());
String text = " Google ";
textView.setText(Html.fromHtml(text));