即使清除正在運行的應用程序(RAM)後,如何連續運行Android服務...請爲我提供服務代碼,而不是重新給我Android安全代碼 我的代碼已給出如下:我該如何連續運行Android服務
public class MyService extends Service {
public MyService() {
}
@Nullable
@Override
public IBinder onBind(Intent intent) {
// TODO: Return the communication channel to the service.
return null;
}
@Override
public int onStartCommand(Intent intent1, int flags, int startId) {
// do your jobs here
return super.onStartCommand(intent1, flags, startId);
}