Searched refs:child (Results 1 - 25 of 337) sorted by last modified time

1234567891011>>

/frameworks/support/v17/leanback/src/android/support/v17/leanback/app/
H A DBrowseFragment.java1012 public void onRequestChildFocus(View child, View focused) {
1017 int childId = child.getId();
H A DBrowseSupportFragment.java1014 public void onRequestChildFocus(View child, View focused) {
1019 int childId = child.getId();
/frameworks/support/v17/leanback/src/android/support/v17/leanback/widget/
H A DBaseCardView.java43 * visibilities of the child types, and the state of the widget. A child may be
532 final View child = getChildAt(i);
534 if (child == null) {
538 BaseCardView.LayoutParams lp = (BaseCardView.LayoutParams) child
541 mInfoViewList.add(child);
542 child.setVisibility(infoVisible ? View.VISIBLE : View.GONE);
544 mExtraViewList.add(child);
545 child.setVisibility(extraVisible ? View.VISIBLE : View.GONE);
548 mMainViewList.add(child);
[all...]
H A DBaseGridView.java118 * Dont save states of any child views.
123 * Only save on screen child views, the states are lost when they become off screen.
128 * Save on screen views plus save off screen child views states up to
134 * Save on screen views plus save off screen child views without any limitation.
179 * Animate layout changes from a child resizing or adding/removing a child.
341 * Item alignment settings are ignored for the child if {@link ItemAlignmentFacet}
366 * Item alignment settings are ignored for the child if {@link ItemAlignmentFacet}
387 * Item alignment settings are ignored for the child if {@link ItemAlignmentFacet}
414 * Item alignment settings are ignored for the child i
[all...]
H A DBrowseFrameLayout.java40 * Interface for managing child focus in a BrowseFrameLayout.
53 void onRequestChildFocus(View child, View focused); argument
121 public void requestChildFocus(View child, View focused) { argument
122 super.requestChildFocus(child, focused);
124 mOnChildFocusListener.onRequestChildFocus(child, focused);
H A DBrowseRowsFrameLayout.java22 * Customized FrameLayout excludes margin of child from calculating the child size.
43 protected void measureChildWithMargins(View child, argument
46 final MarginLayoutParams lp = (MarginLayoutParams) child.getLayoutParams();
51 child.measure(childWidthMeasureSpec, childHeightMeasureSpec);
H A DControlBar.java25 public void onChildFocusedListener(View child, View focused); argument
58 public void requestChildFocus (View child, View focused) { argument
59 super.requestChildFocus(child, focused);
61 mOnChildFocusedListener.onChildFocusedListener(child, focused);
H A DControlBarPresenter.java88 public void onChildFocusedListener(View child, View focused) {
93 if (mViewHolders.get(position).view == child) {
H A DGridLayoutManager.java424 * skip non-focusable child and adjust mFocusPosition.
468 * Force a full layout under certain situations. E.g. Rows change, jump to invisible child.
478 * override child visibility
533 * How to position child in secondary direction.
603 * True if prune child, might be disabled during transition.
834 void fireOnChildViewHolderSelected(RecyclerView parent, RecyclerView.ViewHolder child, argument
840 mChildViewHolderSelectedListeners.get(i).onChildViewHolderSelected(parent, child,
912 // Children may request layout when a child selection event occurs (such as a change of
914 // If in layout, a child requesting layout may have been laid out before the selection
916 // If it was not, the child wil
991 getDecoratedLeft(View child) argument
996 getDecoratedTop(View child) argument
1001 getDecoratedRight(View child) argument
1007 getDecoratedBottom(View child) argument
1426 measureChild(View child) argument
2404 onRequestChildFocus(RecyclerView parent, View child, View focused) argument
[all...]
H A DOnChildViewHolderSelectedListener.java22 * Interface for receiving notification when a child of this
27 * Callback method to be invoked when a child of this ViewGroup has been
31 * @param child The ViewHolder within the RecyclerView that is selected, or null if no
38 public void onChildViewHolderSelected(RecyclerView parent, RecyclerView.ViewHolder child, argument
H A DPersistentFocusWrapper.java98 // Select a child in requestFocus
104 public void requestChildFocus(View child, View focused) { argument
105 super.requestChildFocus(child, focused);
107 while (view != null && view.getParent() != child) {
110 mSelectedPosition = view == null ? -1 : ((ViewGroup) child).indexOfChild(view);
H A DScaleFrameLayout.java75 public void addView(View child, int index, ViewGroup.LayoutParams params) { argument
76 super.addView(child, index, params);
77 child.setScaleX(mChildScale);
78 child.setScaleY(mChildScale);
82 protected boolean addViewInLayout (View child, int index, ViewGroup.LayoutParams params, argument
84 boolean ret = super.addViewInLayout(child, index, params, preventRequestLayout);
86 child.setScaleX(mChildScale);
87 child.setScaleY(mChildScale);
122 final View child = getChildAt(i);
123 if (child
[all...]
H A DUtil.java26 * Returns true if child == parent or is descendant of the parent.
28 public static boolean isDescendant(ViewGroup parent, View child) { argument
29 while (child != null) {
30 if (child == parent) {
33 ViewParent p = child.getParent();
37 child = (View) p;
/frameworks/support/v17/leanback/src/android/support/v17/leanback/widget/picker/
H A DPicker.java423 public void onChildViewHolderSelected(RecyclerView parent, RecyclerView.ViewHolder child,
430 if (child != null) {
561 public void requestChildFocus(View child, View focused) { argument
562 super.requestChildFocus(child, focused);
/frameworks/support/v4/api21/android/support/v4/app/
H A DFragmentTransitionCompat21.java259 * specific shared elements. This allows developers to target child views of the
282 * It won't add a child if it is already in views.
287 return; // This child is already in the list, so all its children are also.
296 final View child = viewGroup.getChildAt(childIndex);
297 if (!containedBeforeIndex(views, child, startIndex)) {
298 views.add(child);
353 View child = viewGroup.getChildAt(i);
354 captureTransitioningViews(transitioningViews, child);
373 View child = viewGroup.getChildAt(i);
374 findNamedViews(namedViews, child);
[all...]
/frameworks/support/v4/api21/android/support/v4/view/
H A DViewParentCompatLollipop.java27 public static boolean onStartNestedScroll(ViewParent parent, View child, View target, argument
30 return parent.onStartNestedScroll(child, target, nestedScrollAxes);
38 public static void onNestedScrollAccepted(ViewParent parent, View child, View target, argument
41 parent.onNestedScrollAccepted(child, target, nestedScrollAxes);
/frameworks/support/v4/api21/android/support/v4/view/accessibility/
H A DAccessibilityNodeInfoCompatApi21.java74 public static boolean removeChild(Object info, View child) { argument
75 return ((AccessibilityNodeInfo) info).removeChild(child);
/frameworks/support/v4/api21/android/support/v4/widget/
H A DDrawerLayoutCompatApi21.java45 public static void dispatchChildInsets(View child, Object insets, int gravity) { argument
54 child.dispatchApplyWindowInsets(wi);
/frameworks/support/v4/ics/android/support/v4/view/
H A DAccessibilityDelegateCompatIcs.java35 public boolean onRequestSendAccessibilityEvent(ViewGroup host, View child, argument
68 public boolean onRequestSendAccessibilityEvent(ViewGroup host, View child,
70 return bridge.onRequestSendAccessibilityEvent(host, child, event);
106 View child, AccessibilityEvent event) {
107 return ((AccessibilityDelegate) delegate).onRequestSendAccessibilityEvent(host, child,
105 onRequestSendAccessibilityEvent(Object delegate, ViewGroup host, View child, AccessibilityEvent event) argument
H A DViewGroupCompatIcs.java27 public static boolean onRequestSendAccessibilityEvent(ViewGroup group, View child, argument
29 return group.onRequestSendAccessibilityEvent(child, event);
H A DViewParentCompatICS.java28 ViewParent parent, View child, AccessibilityEvent event) {
29 return parent.requestSendAccessibilityEvent(child, event);
27 requestSendAccessibilityEvent( ViewParent parent, View child, AccessibilityEvent event) argument
/frameworks/support/v4/ics/android/support/v4/view/accessibility/
H A DAccessibilityNodeInfoCompatIcs.java46 public static void addChild(Object info, View child) { argument
47 ((AccessibilityNodeInfo) info).addChild(child);
/frameworks/support/v4/java/android/support/v4/app/
H A DFragmentManager.java1811 FragmentManagerNonConfig child = f.mChildFragmentManager.retainNonConfig();
1812 if (child != null) {
1819 childFragments.add(child);
2432 // push the inflated child fragment along.
H A DNoSaveStateFrameLayout.java31 static ViewGroup wrap(View child) { argument
32 NoSaveStateFrameLayout wrapper = new NoSaveStateFrameLayout(child.getContext());
33 ViewGroup.LayoutParams childParams = child.getLayoutParams();
39 child.setLayoutParams(lp);
40 wrapper.addView(child);
49 * Override to prevent freezing of any child views.
57 * Override to prevent thawing of any child views.
/frameworks/support/v4/java/android/support/v4/view/
H A DAccessibilityDelegateCompat.java56 public boolean onRequestSendAccessibilityEvent(Object delegate, ViewGroup host, View child, argument
102 public boolean onRequestSendAccessibilityEvent(Object delegate, ViewGroup host, View child, argument
164 public boolean onRequestSendAccessibilityEvent(ViewGroup host, View child,
166 return compat.onRequestSendAccessibilityEvent(host, child, event);
208 public boolean onRequestSendAccessibilityEvent(Object delegate, ViewGroup host, View child, argument
211 child, event);
255 public boolean onRequestSendAccessibilityEvent(ViewGroup host, View child,
257 return compat.onRequestSendAccessibilityEvent(host, child, event);
454 * Called when a child of the host View has requested sending an
465 * @param child Th
472 onRequestSendAccessibilityEvent(ViewGroup host, View child, AccessibilityEvent event) argument
[all...]

Completed in 250 milliseconds

1234567891011>>