You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
443 B
Java
16 lines
443 B
Java
2 months ago
|
package com.xypower.mpapp;
|
||
|
|
||
|
import android.content.BroadcastReceiver;
|
||
|
import android.content.Context;
|
||
|
import android.content.Intent;
|
||
|
|
||
|
public class HeartBeatResponseReceiver extends BroadcastReceiver {
|
||
|
|
||
|
@Override
|
||
|
public void onReceive(Context context, Intent intent) {
|
||
|
String action = intent.getAction();
|
||
|
if ("heartbeat".equals(action)) {
|
||
|
MicroPhotoService.infoLog("收到heartbeat广播");
|
||
|
}
|
||
|
}
|
||
|
}
|