我的nativescript后台服务有问题。我想用后台服务编写应用程序。该服务必须始终在后台运行,即使应用程序将被停止和关闭。
我已将nativescript-android-utils用于android意图服务,但是该服务在应用程序关闭后停止工作。我也尝试根据this注册广播接收器,但结果是相同的: 当应用关闭时,该服务也将停止工作。
我想编写gps跟踪器后台服务,这就是为什么我需要始终在后台运行该服务的原因。
服务代码:
declare var com: any;
@JavaProxy("org.nativescript.PresleyApp.Test")
export class Test extends com.pip3r4o.android.app.IntentService {
protected onHandleIntent(intent: android.content.Intent): void {
geolocation.enableLocationRequest().then(function() {
this.watchId = geolocation.watchLocation(
(loc) => {
if (loc) {
const toast = Toast.makeText("Background Location: " + loc.latitude + " " + loc.longitude);
toast.show();
console.log("Background Location: " + loc.latitude + " " + loc.longitude);
}
},
(e) => {
console.log("Background watchLocation error: " + (e.message || e));
},
{
desiredAccuracy: Accuracy.high,
updateDistance: 0.1,
updateTime: 3000,
minimumUpdateTime: 100
});
}, (e) => {
console.log("Background enableLocationRequest error: " + (e.message || e));
});
}
}
开始服务
const context = application.android.context;
const intent = new android.content.Intent();
intent.setClassName(context, "org.nativescript.PresleyApp.Test");
context.startService(intent);
答案 0 :(得分:1)
这就是我的服务方式,
import * as timer from "timer";
@JavaProxy("com.nativescript.DataSyncService")
class DataSyncService extends android.app.Service {
private timerId: number;
onBind(): android.os.IBinder {
return null;
}
onCreate(): void {
super.onCreate();
if (!this.timerId) {
this.timerId = timer.setInterval(()=> {
// Run this every 4 hrs
}, (1000 * 60 * 60 * 4));
}
}
onStartCommand(intent: android.content.Intent, flags: number, startId: number): number {
return android.app.Service.START_STICKY;
}
onDestroy(): void {
super.onDestroy();
timer.clearInterval(this.timerId);
}
}
从onStartCommand
返回START_STICKY会使系统在进程(应用程序)被终止时重新启动服务。