android.support.v4.view
Class ViewGroupCompat

java.lang.Object
  extended by android.support.v4.view.ViewGroupCompat

public class ViewGroupCompat
extends java.lang.Object

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


Method Summary
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.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Method Detail

onRequestSendAccessibilityEvent

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 ViewCompat.setAccessibilityDelegate(View, AccessibilityDelegateCompat) its AccessibilityDelegateCompat.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.