0

我正在通过以下教程Android Developer Guide学习 GCM 。有这样一行“您的应用程序必须在启动服务之前获取唤醒锁 - 否则设备可能会在服务启动之前进入睡眠状态。
在示例代码中,接收器首先接收消息,然后触发您自己的实现IntentService,代码如下。

我的问题是为什么我们在课堂上得到这个WakeLockIntentService不是在Receiver课堂上?

public class MyBroadcastReceiver extends BroadcastReceiver {

    @Override
    public final void onReceive(Context context, Intent intent) {
        MyIntentService.runIntentInService(context, intent);
        setResult(Activity.RESULT_OK, null, null);
    }
}




public class MyIntentService extends IntentService {

    private static PowerManager.WakeLock sWakeLock;
    private static final Object LOCK = MyIntentService.class;

    static void runIntentInService(Context context, Intent intent) {
        synchronized(LOCK) {
            if (sWakeLock == null) {
                PowerManager pm = (PowerManager) context.getSystemService(Context.POWER_SERVICE);
                sWakeLock = pm.newWakeLock(PowerManager.PARTIAL_WAKE_LOCK, "my_wakelock");
            }
        }
        sWakeLock.acquire();
        intent.setClassName(context, MyIntentService.class.getName());
        context.startService(intent);
    }

    @Override
    public final void onHandleIntent(Intent intent) {
        try {
            String action = intent.getAction();
            if (action.equals("com.google.android.c2dm.intent.REGISTRATION")) {
                handleRegistration(intent);
            } else if (action.equals("com.google.android.c2dm.intent.RECEIVE")) {
                handleMessage(intent);
            }
        } finally {
            synchronized(LOCK) {
                sWakeLock.release();
            }
        }
    }
}
4

1 回答 1

1

唤醒锁用于服务。当您完成唤醒锁对象后,您必须释放该对象,这就是原因。

于 2012-11-16T16:14:14.353 回答