Java tutorial
/** * Copyright Google Inc. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except * in compliance with the License. You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software distributed under the * License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either * express or implied. See the License for the specific language governing permissions and * limitations under the License. */ package com.google.codelab.networkmanager; import android.app.IntentService; import android.content.Intent; import android.support.v4.content.LocalBroadcastManager; public class NowIntentService extends IntentService { public static final String TAG = "NowIntentService"; public NowIntentService() { super(TAG); } @Override protected void onHandleIntent(Intent intent) { String taskId = intent.getStringExtra(CodelabUtil.TASK_ID); boolean completed = CodelabUtil.makeNetworkCall(); Intent taskUpdateIntent = new Intent(CodelabUtil.TASK_UPDATE_FILTER); taskUpdateIntent.putExtra(CodelabUtil.TASK_ID, taskId); TaskItem taskItem = CodelabUtil.getTaskItemFromFile(this, taskId); if (taskItem == null) { return; } if (completed) { taskItem.setStatus(TaskItem.EXECUTED_STATUS); } else { taskItem.setStatus(TaskItem.FAILED_STATUS); } taskUpdateIntent.putExtra(CodelabUtil.TASK_STATUS, taskItem.getStatus()); CodelabUtil.saveTaskItemToFile(this, taskItem); LocalBroadcastManager localBroadcastManager = LocalBroadcastManager.getInstance(this); localBroadcastManager.sendBroadcast(taskUpdateIntent); } }