If you know the package name and browser class name, you can use Intent.setClassName (String packageName, String className). as follows:
Intent i=new Intent(ACTION_VIEW, url);
i.setClassName("com.test.browser","BrowserActivity");
startActivity(i);
source
share