to top
Android APIs
public class

ViewGroupCompat

extends Object
java.lang.Object
   ↳ android.support.v4.view.ViewGroupCompat

Class Overview

Helper for accessing features in ViewGroup introduced after API level 4 in a backwards compatible fashion.

Summary

Public Methods
static boolean onRequestSendAccessibilityEvent(ViewGroup group, View child, AccessibilityEvent event)
Called when a child has requested sending an AccessibilityEvent and gives an opportunity to its parent to augment the event.
[Expand]
Inherited Methods
From class java.lang.Object

Public Methods

public static boolean onRequestSendAccessibilityEvent (ViewGroup group, View child, AccessibilityEvent event)

Called when a child has requested sending an AccessibilityEvent and gives an opportunity to its parent to augment the event.

If an AccessibilityDelegateCompat has been specified via calling setAccessibilityDelegate(View, AccessibilityDelegateCompat) its onRequestSendAccessibilityEvent(ViewGroup, View, AccessibilityEvent) is responsible for handling this call.

Parameters
group The group whose method to invoke.
child The child which requests sending the event.
event The event to be sent.
Returns
  • True if the event should be sent.