如何检查互联网连接在Android中是否已启用?就像如果LOCATION SERVICE被禁用,我们使用该技术

Location myLocation = locationmanager.getLastKnownLocation(provider);
if(myLocation == null){
      Show the AlertDialog.
}else{
do this.
}


这样,如何检查Internet连接是否已启用。

最佳答案

您可以使用以下方法:

ConnectivityManager conectivtyManager = (ConnectivityManager) ctx.getSystemService(Context.CONNECTIVITY_SERVICE);
if (conectivtyManager.getActiveNetworkInfo() != null
    && conectivtyManager.getActiveNetworkInfo().isAvailable()
    && conectivtyManager.getActiveNetworkInfo().isConnected()) {
    isConnected = true;
} else {
    isConnected= false;
}


希望能帮助到你!

09-13 11:52