如下:
Intent intent = new Intent(Intent.ACTION_VIEW);
intent.setData(Uri.parse("http://www.haoso.com"));
startActivity(intent);
其中的Uri.parse的参数必须带字符串"http://",否则触发事件会导致崩溃
转载于:https://blog.51cto.com/sylan215/1701162
如下:
Intent intent = new Intent(Intent.ACTION_VIEW);
intent.setData(Uri.parse("http://www.haoso.com"));
startActivity(intent);
其中的Uri.parse的参数必须带字符串"http://",否则触发事件会导致崩溃
转载于:https://blog.51cto.com/sylan215/1701162