Having the textView with autoLinkMask set to Linkify.ALL, i\'m able to open the links and the browser shows the web-page.
I need to call a
Than do this:
TextView textView=(TextView) findViewById(R.id.link);
textView.setOnClickListener(new OnClickListener() {
public void onClick(View v) {
Intent intent=new Intent(YourActivityName.this,WebActivity.class);
startActivity(intent);
}
});
onCreate of WebActivity Class:
WebView webView=(WebView) findViewById(R.id.web);
webView.loadUrl("http://www.google.co.in");
Add this under textview in xml:
android:clickable="true"