Intent.ACTION_VIEWとURIを指定したIntentを使用する。

Uri uri = Uri.parse("http://hoge.com");
Intent intent = new Intent(Intent.ACTION_VIEW, uri);
startActivity(intent);
最終更新:2011年05月14日 09:58