寮鏈哄拰緗戠粶榪炴帴鏃跺惎鍔≧eceiver
1 @Override
2 public void onReceive(Context context, Intent intent) {
3 String action = intent.getAction();
4 if(Intent.ACTION_BOOT_COMPLETED.equals(action) ||
5 ConnectivityManager.CONNECTIVITY_ACTION.equals(action)) {
6 Intent serviceIntent = new Intent();
7 serviceIntent.setClass(context, BcsService.class);
8 context.startService(serviceIntent);
9 }
10 }