我有一个简单的广播接收器,它监听连接变化,如果网络可用,它会设置一个循环警报,启动一个短期服务。如果没有网络连接,它将禁用重复警报:
public class ConnectivityChange extends BroadcastReceiver {
@Override
public void onReceive(Context context, Intent intent) {
Log.d(getClass().getName(), "Connectivity changed! :/");
MyApplication app = (MyApplication ) context
.getApplicationContext();
if (app.isConnected()) {
// setup repeating alarms, since we are connected.
app.setCurrencyRatesServiceRepeatingAlarm(context);
Log.d(getClass().getName(), "Connected :D");
} else {
// cancel any repeating alarm, since we are NOT connected.
app.unsetCurrencyRatesServiceRepeatingAlarm(context);
Log.d(getClass().getName(), "Not connected :(");
}
}
}
清单看起来像:
<receiver android:name="ConnectivityChange">
<intent-filter>
<action android:name="android.net.conn.CONNECTIVITY_CHANGE"/>
</intent-filter>
</receiver>
所有这些都很好。
但是,即使在我重新启动模拟器后,这段代码似乎也能运行。我不是要 BOOT_COMPLETE。我确保我没有从快照中恢复模拟器。这是预期的行为吗?我不确定这是在哪里记录的。当我遇到这个时,我正要询问 BOOT_COMPLETE。