String url = "http://almondmendoza.com/android-applications/";
Intent i = new Intent(Intent.ACTION_VIEW);
i.setData(Uri.parse(url));
startActivity(i);Hope this helps.
Other android tutorial could be found at http://almondmendoza.com/android-tutorials/
3 comments:
Simple and effective!
10x a lot!
Good solution. thx
Post a Comment