java.lang.Object | |
↳ | android.view.accessibility.AccessibilityManager |
System level service that serves as an event dispatch for AccessibilityEvent
s.
Such events are generated when something notable happens in the user interface,
for example an Activity
starts, the focus or selection of a
View
changes etc. Parties interested in handling accessibility
events implement and register an accessibility service which extends
AccessibilityService
.
Public Methods | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
Returns the
ServiceInfo s of the installed accessibility services. | |||||||||||
Requests interruption of the accessibility feedback from all accessibility services.
| |||||||||||
Returns if the
AccessibilityManager is enabled. | |||||||||||
Sends an
AccessibilityEvent . |
[Expand]
Inherited Methods | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
![]() |
Returns the ServiceInfo
s of the installed accessibility services.
ServiceInfo
s.
Requests interruption of the accessibility feedback from all accessibility services.
Returns if the AccessibilityManager
is enabled.
AccessibilityManager
is enabled, false otherwise.
Sends an AccessibilityEvent
. If this AccessibilityManager
is not
enabled the call is a NOOP.
event | The AccessibilityEvent . |
---|
IllegalStateException | if a client tries to send an AccessibilityEvent
while accessibility is not enabled.
|
---|