Added in API level 11

RemoteViewsService


abstract class RemoteViewsService : Service
kotlin.Any
   ↳ android.content.Context
   ↳ android.content.ContextWrapper
   ↳ android.app.Service
   ↳ android.widget.RemoteViewsService

The service to be connected to for a remote adapter to request RemoteViews. Users should extend the RemoteViewsService to provide the appropriate RemoteViewsFactory's used to populate the remote collection view (ListView, GridView, etc).

Summary

Nested classes
abstract

An interface for an adapter between a remote collection view (ListView, GridView, etc) and the underlying data for that view.

Inherited constants
Public constructors

Public methods
open IBinder?
onBind(intent: Intent!)

Return the communication channel to the service.

abstract RemoteViewsService.RemoteViewsFactory!

To be implemented by the derived service to generate appropriate factories for the data.

Inherited functions

Public constructors

RemoteViewsService

RemoteViewsService()

Public methods

onBind

Added in API level 11
open fun onBind(intent: Intent!): IBinder?

Return the communication channel to the service. May return null if clients can not bind to the service. The returned android.os.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 android.content.Context#bindService. Note that any extras that were included with the Intent at that point will not be seen here.
Return
IBinder? Return an IBinder through which clients can call on to the service.

onGetViewFactory

Added in API level 11
abstract fun onGetViewFactory(intent: Intent!): RemoteViewsService.RemoteViewsFactory!

To be implemented by the derived service to generate appropriate factories for the data.