Android服務一旦清除應用程序就會停止。即使用戶清除所有應用程序,我也需要一個在後臺持續運行的服務。 我創建了一個啓動服務的警報。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>
現在我需要跟蹤即使活動破壞移動位置.. 但對我來說,一旦我清楚應用程序我的服務被銷燬而不執行銷燬方法。我已閱讀STICKY_INTENT
,但它不適合我。
你測試哪些設備?一些設備不支持服務運行後,像在模擬器上測試的華爲和XIOMI –
應用程序和華碩 –
此鏈接可能會幫助您:http://stackoverflow.com/questions/15758980/android-service-needs-to-run永遠不會暫停或停止 – d1vivek681065