Example usage for Java android.view ViewParent fields, constructors, methods, implement or subclass
The text is from its open source code.
boolean | getChildVisibleRect(View child, Rect r, android.graphics.Point offset) Compute the visible part of a rectangular region defined in terms of a child view's coordinates. |
Class> | getClass() Returns the runtime class of this Object . |
ViewParent | getParent() Returns the parent if it exists, or null. |
boolean | isLayoutRequested() Indicates whether layout was requested on this view parent. |
void | requestDisallowInterceptTouchEvent(boolean disallowIntercept) Called when a child does not want this parent and its ancestors to intercept touch events with ViewGroup#onInterceptTouchEvent(MotionEvent) . |
void | requestLayout() Called when something has changed which has invalidated the layout of a child of this view parent. |
boolean | requestSendAccessibilityEvent(View child, AccessibilityEvent event) Called by a child to request from its parent to send an AccessibilityEvent . |