I use the following to open a url from my app:
String url = "http://www.example.com";
Intent i = new Intent(Intent.ACTION_VIEW);
i.setData(Uri.parse(url));
startActivity(i);
But when I test it in the simulator, it goes back to eclipse and states source not found.
Whats going wrong?
I usually do it like this:
Also, does your simulator have the browser app installed on it?