Most visited

Recently visited

ServiceCompat

public final class ServiceCompat
extends Object

java.lang.Object
   ↳ android.support.v4.app.ServiceCompat


Helper用于访问在向后兼容的API级别4之后引入的 Service功能。

Summary

Constants

int START_STICKY

常量从 onStartCommand(Intent, int, int)返回:如果此服务的进程在启动时(从 onStartCommand(Intent, int, int)返回后)被 onStartCommand(Intent, int, int) ,则将其保留在启动状态,但不保留此传递的意图。

Inherited methods

From class java.lang.Object

Constants

START_STICKY

int START_STICKY

常量从onStartCommand(Intent, int, int)返回:如果此服务的进程在启动时(从onStartCommand(Intent, int, int)返回后)被onStartCommand(Intent, int, int) ,则将其保留在启动状态,但不保留此传递的意图。 稍后系统将尝试重新创建该服务。 由于它处于启动状态,因此保证在创建新的服务实例后调用onStartCommand(Intent, int, int) ; 如果没有任何挂起的启动命令要传递给服务,它将被调用一个空意图对象,所以你必须小心检查这一点。

这种模式对于明确启动和停止运行任意时间段的内容很有意义,例如执行背景音乐播放的服务。

常数值:1(0x00000001)

Hooray!