我的广播接收器出现问题。
我已经设置了早上 6 点的闹钟,它必须启动我的广播接收器,它只需要从互联网上下载一些数据并进行处理。
例如,如果我将闹钟设置为下午 3 点,它就可以正常工作。但问题是在早上 6 点,下载失败,因为它没有网络连接。
我在尝试下载之前执行了部分唤醒锁定。会不会和这个有关?手机进入深度睡眠和部分唤醒锁定是否不够?
还能是什么?我已经仔细检查过启用网络数据的手机,并且我确实在夜间收到电子邮件和whatsapp。
有没有办法让android恢复连接?
任何提示或帮助都非常受欢迎!
最好的问候,费德里科。
我的代码:
来自 BroadcastReceiver 的 OnReceive 方法:
@Override
public void onReceive(Context context, Intent intent) {
...
// acquire partial wake lock
_PowerManager.acquire();
// check internet access
if (!_Utils.isDataEnabled()){
// here is where it enters at 6am, isDataEnabled return false, so it enters here
_Log.d("_BroadcastReceiver_Synchronize:onReceive","No internet, cancel sinc");
// release partial wake lock
_PowerManager.release();
return;
}
// excecute async task that downloads data
_WebServicesGet ws = new _WebServicesGet(null, null, null);
ws.syncAll(this, false);
return;
}
_Utils.isDataEnabled:
public static Boolean isDataEnabled() {
// this method returns false at 6am
ConnectivityManager connectivityManager = (ConnectivityManager) context.getSystemService(Context.CONNECTIVITY_SERVICE);
NetworkInfo activeNetworkInfo = connectivityManager.getActiveNetworkInfo();
return activeNetworkInfo != null && activeNetworkInfo.isConnected();
}