Most visited

Recently visited

NotificationCompatSideChannelService

public abstract class NotificationCompatSideChannelService
extends Service

java.lang.Object
   ↳ android.content.Context
     ↳ android.content.ContextWrapper
       ↳ android.app.Service
         ↳ android.support.v4.app.NotificationCompatSideChannelService


Abstract service to receive side channel notifications sent from NotificationManagerCompat.

To receive side channel notifications, extend this service and register it in your android manifest with an intent filter for the BIND_NOTIFICATION_SIDE_CHANNEL action. Note: you must also have an enabled NotificationListenerService within your package.

Example AndroidManifest.xml addition:

 <service android:name="com.example.NotificationSideChannelService">
     <intent-filter>
         <action android:name="android.support.BIND_NOTIFICATION_SIDE_CHANNEL" />
     </intent-filter>
 </service>

Summary

Inherited constants

From class android.app.Service
From class android.content.Context
From interface android.content.ComponentCallbacks2

Public constructors

NotificationCompatSideChannelService()

Public methods

abstract void cancel(String packageName, int id, String tag)

Handle a side-channelled notification being cancelled.

abstract void cancelAll(String packageName)

Handle the side-channelled cancelling of all notifications for a package.

abstract void notify(String packageName, int id, String tag, Notification notification)

Handle a side-channeled notification being posted.

IBinder onBind(Intent intent)

Return the communication channel to the service.

Inherited methods

From class android.app.Service
From class android.content.ContextWrapper
From class android.content.Context
From class java.lang.Object
From interface android.content.ComponentCallbacks2
From interface android.content.ComponentCallbacks

Public constructors

NotificationCompatSideChannelService

NotificationCompatSideChannelService ()

Public methods

cancel

void cancel (String packageName, 
                int id, 
                String tag)

Handle a side-channelled notification being cancelled.

Parameters
packageName String
id int
tag String

cancelAll

void cancelAll (String packageName)

Handle the side-channelled cancelling of all notifications for a package.

Parameters
packageName String

notify

void notify (String packageName, 
                int id, 
                String tag, 
                Notification notification)

Handle a side-channeled notification being posted.

Parameters
packageName String
id int
tag String
notification Notification

onBind

IBinder onBind (Intent intent)

Return the communication channel to the service. May return null if clients can not bind to the service. The returned IBinder is usually for a complex interface that has been described using aidl.

Note that unlike other application components, calls on to the IBinder interface returned here may not happen on the main thread of the process. More information about the main thread can be found in Processes and Threads.

Parameters
intent Intent: The Intent that was used to bind to this service, as given to Context.bindService. Note that any extras that were included with the Intent at that point will not be seen here.
Returns
IBinder Return an IBinder through which clients can call on to the service.

Hooray!