I've googled few hours but couldn't find how to change my intent from Firefox to dolphin browser. I know how to get the list of browsers, but I'm looking in specific to open only the Dolphin web browser, later I will deal with exception if not installed.
String url = "http://www.google.com";
Intent intent = new Intent(Intent.ACTION_MAIN, null);
intent.addCategory(Intent.CATEGORY_LAUNCHER);
intent.setComponent(new ComponentName("org.mozilla.firefox", "org.mozilla.firefox.App"));
intent.setAction("org.mozilla.gecko.BOOKMARK");
intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
intent.putExtra("args", "--url=" + url);
intent.setData(Uri.parse(url));
startActivity(intent);