android.support.v4.view
Class ViewGroupCompat
java.lang.Object
android.support.v4.view.ViewGroupCompat
public class ViewGroupCompat
- extends Object
Helper for accessing features in ViewGroup
introduced after API level 4 in a backwards compatible fashion.
|
Method Summary |
static boolean |
onRequestSendAccessibilityEvent(android.view.ViewGroup group,
android.view.View child,
android.view.accessibility.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 |
onRequestSendAccessibilityEvent
public static boolean onRequestSendAccessibilityEvent(android.view.ViewGroup group,
android.view.View child,
android.view.accessibility.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.
Copyright © 2011-2012 Google. All Rights Reserved.