我使用这段代码:
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
这是为什么?以及如何解决?