Please note that the contents of this offline web site may be out of date. To access the most recent documentation visit the online version .
Note that links that point to online resources are green in color and will open in a new window.
We would love it if you could give us feedback about this material by filling this form (You have to be online to fill it)
Android APIs
public interface

AccessibilityEventSource

android.view.accessibility.AccessibilityEventSource
Known Indirect Subclasses

Class Overview

This interface is implemented by classes source of AccessibilityEvent s.

Developer Guides

For more information about making applications accessible, read the Accessibility developer guide.

Summary

Public Methods
abstract void sendAccessibilityEvent (int eventType)
Handles the request for sending an AccessibilityEvent given the event type.
abstract void sendAccessibilityEventUnchecked ( AccessibilityEvent event)
Handles the request for sending an AccessibilityEvent .

Public Methods

public abstract void sendAccessibilityEvent (int eventType)

Added in API level 4

Handles the request for sending an AccessibilityEvent given the event type. The method must first check if accessibility is on via calling AccessibilityManager.isEnabled() , obtain an AccessibilityEvent from the event pool through calling AccessibilityEvent.obtain(int) , populate the event, and send it for dispatch via calling AccessibilityManager.sendAccessibilityEvent(AccessibilityEvent) .

Parameters
eventType The event type.

public abstract void sendAccessibilityEventUnchecked ( AccessibilityEvent event)

Added in API level 4

Handles the request for sending an AccessibilityEvent . The method does not guarantee to check if accessibility is on before sending the event for dispatch. It is responsibility of the caller to do the check via calling AccessibilityManager.isEnabled() .

Parameters
event The event.