Android FAQ
Friday, April 20, 2012
How to open URL in browser in Android?
Intent i = new Intent(Intent.ACTION_VIEW);
i.setData(Uri.parse(url.toString().trim()));
startActivity(i);
No comments:
Post a Comment
‹
›
Home
View web version
No comments:
Post a Comment