我创建了一个服务,并希望始终运行这个服务,直到我的手机重新启动或强制关闭。服务应该在后台运行。
创建服务和启动服务的示例代码:
启动服务:
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>
是否可以在应用程序暂停或其他任何情况下始终运行此服务。 一段时间之后,我的应用程序会暂停,服务也会暂停或停止。 因此,我如何在后台运行这个服务,并始终。