Hi I want to open the website in chrome app from my app webview when user click on particular link. I see this is possible https://developer.chrome.com/multidevice/android/i
I have tested below code with Nexus 6 with Chrome and Mozilaa installed and it works great,
String url = "http://www.stackoverflow.com";
Intent i = new Intent();
i.setPackage("com.android.chrome");
i.setAction(Intent.ACTION_VIEW);
i.setData(Uri.parse(url));
startActivity(i);
This will give error if Chrome is not installed in your device. So put check for package availability.