I am creating application in android here i want to call browser not default one but specific one like opera or someone else... Frankly speaking these browsers better than default one and also having more options..
I googled lot but i could able to get only to call default browser.
Here is code for call default browser
Intent intent = new Intent(Intent.ACTION_VIEW);
intent.setData(Uri.parse("http://www.google.co.in"));
startActivity(intent);
Pls any suggestion ...