我正在编写一个需要使用 Internet 的应用程序。我拥有的一些相关代码是:
<uses-permission android:name="android.permission.INTERNET"/>
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/>
和
private boolean isConnected() {
ConnectivityManager cm = (ConnectivityManager) context.getSystemService(Context.CONNECTIVITY_SERVICE);
NetworkInfo netInfo = cm.getActiveNetworkInfo();
if (netInfo != null && netInfo.isConnected()) {
// do stuff
return true;
}
else{
// don't do stuff and display dialog instead
return false;
}
}
但是,我的应用似乎只能在 WiFi 连接上运行。无论它如何连接到 Internet,我如何使它工作?