Answers:
Uri myUri = Uri.parse("http://www.google.com");
这是文档http://developer.android.com/reference/android/net/Uri.html#parse%28java.lang.String%29
Uri.parse(STRING);
见文件:
字符串:符合RFC 2396的编码URI
使用前必须规范化网址,如下所示:
Uri.parse(Uri.decode(STRING));