TagManagerService

  • The TagManagerService is an Android Service used by TagManager for processing and sending tags and must be registered in the application's AndroidManifest.xml.

  • This service inherits constants and methods from Android framework classes like Service, Context, and the ComponentCallbacks2 interface, covering service behavior, system services, resource access, and memory management.

  • It includes a default constructor TagManagerService() and overrides the onBind(Intent intent) method for client interaction.

  • The service inherits numerous methods for managing its lifecycle, handling configuration changes, responding to memory events, and interacting with the broader Android system context.

public class TagManagerService extends Service

A Service used by TagManager to process and send tags.

TagManagerService should be registered in your application's AndroidManifest.xml.

Inherited Constant Summary

Public Constructor Summary

Public Method Summary

IBinder
onBind(Intent intent)

Inherited Method Summary

Public Constructors

public TagManagerService ()

Public Methods

public IBinder onBind (Intent intent)