Android服务停止了一次清除应用程序。我需要一个在后台持续运行的服务,即使用户清除所有应用程序也是如此。 我创建了一个启动服务的警报。
public class AlarmReceiver extends BroadcastReceiver
{
@Override
public void onReceive(Context context, Intent intent) {
Log.d("Alarm","Alarm receive");
Intent i=new Intent(context,GetLocationService.class);
context.startService(i);
}
}
我的服务文件
public class GetLocationService extends Service {
@Override
public IBinder onBind(Intent intent) {
return null;
}
@Override
public int onStartCommand(Intent intent, int flags, int startId) {
Toast.makeText(getApplicationContext(),"calling Get Location service", Toast.LENGTH_LONG).show();
//service code here
return Service.START_STICKY;
}
@Override
public void onDestroy() {
super.onDestroy();
Log.d("Service","Service destroy");
}
}
清单文件
<uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION"/>
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION"/>
<uses-permission android:name="android.permission.INTERNET"/>
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/>
<application
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:supportsRtl="true"
android:theme="@style/AppTheme">
<activity android:name=".MainActivity" android:configChanges="keyboardHidden|orientation|screenSize">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<service android:name=".GetLocationService" android:stopWithTask="false" android:exported="false" />
<receiver android:name=".AlarmReceiver" android:enabled="true" />
</application>
现在我需要跟踪移动位置,即使活动破坏了..
但在我的情况下,一旦我清除应用程序,我的服务被销毁而不执行destroy方法。我已经阅读了STICKY_INTENT
,但它对我不起作用。
答案 0 :(得分:1)
您应该查看 JobScheduler
以下是一些参考资料。
https://developer.android.com/reference/android/app/job/JobScheduler.html
http://www.vogella.com/tutorials/AndroidTaskScheduling/article.html
答案 1 :(得分:0)
答案 2 :(得分:0)
这是解决问题的代码,我不支持它。 因此,如果您的服务停止,它可以通过注册Broad Cast接收器重新启动。 把它放在你的清单上
<receiver android:name=".RestartTrigger">
<intent-filter>
<action android:name="donotkill" />
</intent-filter>
</receiver>
只需添加此课程
public class RestartTrigger extends BroadcastReceiver {
private static final String TAG = "RestartServiceReceiver";
@Override
public void onReceive(Context context, Intent intent) {
Log.e(TAG, "onReceive");
Intent intent1 = Intent(context,GetLocationService.class);
context.startService(intent1);
}
}
在服务中添加此
@Override
public void onDestroy() {
super.onDestroy();
sendBroadcast(new Intent("donotkill"));
}
在Manifest中,您应该将您的服务作为单独的流程添加android:process=":name_of_process"
<service android:name=".GetLocationService" android:stopWithTask="false" android:process=":name_of_process" android:exported="true" android:enabled="true" />
我不支持这种代码。这将对用户造成危害。