String result = "http://baidu.com";
if (result.startsWith("http")) {
// 启动网页Intent intent = new Intent(Intent.ACTION_VIEW);
intent.setData(Uri.parse(result));
startActivity(intent);
}
String result = "http://baidu.com";
if (result.startsWith("http")) {
// 启动网页
1万+

被折叠的 条评论
为什么被折叠?