我创建了一项服务,并希望始终运行此服务,直到我的手机重新启动或强制关闭。该服务应在后台运行。
创建服务和启动服务的示例代码:
启动服务:
Intent service = new Intent(getApplicationContext(), MyService.class);
getApplicationContext().startService(service);
服务:
public class MyService extends Service {
@Override
public int onStartCommand(Intent intent, int flags, int startId) {
// TODO do something useful
HFLAG = true;
//smsHandler.sendEmptyMessageDelayed(DISPLAY_DATA, 1000);
return Service.START_NOT_STICKY;
}
@Override
public IBinder onBind(Intent intent) {
// TODO for communication return IBinder implementation
return null;
}
}
清单声明:
<service
android:name=".MyService"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name" >
</service>
是否可以在应用程序暂停和其他任何情况下始终运行此服务。一段时间后,我的应用程序暂停,服务也暂停或停止。那么我如何才能始终在后台运行此服务。