私はこのコードを使用します:
Intent i = new Intent(Intent.ACTION_VIEW);
i.setData(Uri.fromParts("http", "//google.com/", "")); //fromParts is ok b/c the scheme is different
startActivity(i);
しかし、Android Emulator のブラウザーでは、次のアドレスを取得します。
http:%2F%2Fgoogle.com
何故ですか?どうすれば解決できますか?