这种方法使用一种方法,允许您输入任何String而不是使用固定的输入。如果重复使用多次,这确实会节省一些代码行,因为您只需要三行即可调用该方法。
public Intent getWebIntent(String url) {
//Make sure it is a valid URL before parsing the URL.
if(!url.contains("http://") && !url.contains("https://")){
//If it isn't, just add the HTTP protocol at the start of the URL.
url = "http://" + url;
}
//create the intent
Intent intent = new Intent(Intent.ACTION_VIEW, Uri.parse(url)/*And parse the valid URL. It doesn't need to be changed at this point, it we don't create an instance for it*/);
if (intent.resolveActivity(getPackageManager()) != null) {
//Make sure there is an app to handle this intent
return intent;
}
//If there is no app, return null.
return null;
}
使用此方法使其通用。您不必将IT置于特定的活动中,因为您可以这样使用它:
Intent i = getWebIntent("google.com");
if(i != null)
startActivity();
或者,如果您想在活动之外启动它,只需在活动实例上调用startActivity即可:
Intent i = getWebIntent("google.com");
if(i != null)
activityInstance.startActivity(i);
从这两个代码块中都可以看到空检查。这是因为如果没有应用程序可以处理该意图,则返回null。
如果未定义协议,则此方法默认为HTTP,因为有些网站没有SSL证书(HTTPS连接需要什么),并且如果您尝试使用HTTPS并且不存在,则这些网站将停止工作。任何网站都仍然可以强制使用HTTPS,因此无论哪种方式,您都可以使用HTTPS
因为此方法使用外部资源来显示页面,所以您无需声明INternet权限。显示网页的应用必须执行此操作