Home
last modified time | relevance | path

Searched refs:childView (Results 1 – 6 of 6) sorted by relevance

/packages/apps/Contacts/src/com/android/contacts/editor/
DContactEditorFragment.java399 final View childView = mContent.getChildAt(i); in updatedExpandedEditorsMap() local
400 if (childView instanceof BaseRawContactEditorView) { in updatedExpandedEditorsMap()
401 BaseRawContactEditorView childEditor = (BaseRawContactEditorView) childView; in updatedExpandedEditorsMap()
556 final View childView = mContent.getChildAt(i); in setPhoto() local
557 if (childView instanceof BaseRawContactEditorView in setPhoto()
558 && childView != requestingEditor) { in setPhoto()
560 = (BaseRawContactEditorView) childView; in setPhoto()
588 final View childView = mContent.getChildAt(i); in getRawContactEditorView() local
589 if (childView instanceof BaseRawContactEditorView) { in getRawContactEditorView()
590 final BaseRawContactEditorView editor = (BaseRawContactEditorView) childView; in getRawContactEditorView()
[all …]
/packages/apps/Calculator/src/com/android/calculator2/
DCalculatorPadLayout.java73 final View childView = getChildAt(childIndex); in onLayout() local
74 if (childView.getVisibility() == View.GONE) { in onLayout()
78 final MarginLayoutParams lp = (MarginLayoutParams) childView.getLayoutParams(); in onLayout()
88 if (childWidth != childView.getMeasuredWidth() || in onLayout()
89 childHeight != childView.getMeasuredHeight()) { in onLayout()
90 childView.measure( in onLayout()
94 childView.layout(childLeft, childTop, childRight, childBottom); in onLayout()
/packages/apps/DeskClock/src/com/android/deskclock/widget/sgv/
DReorderHelper.java254 final View childView = mParentView.getChildAt(i); in getReorderableChildAtCoordinate() local
255 if (p.x >= childView.getLeft() && p.x < childView.getRight() in getReorderableChildAtCoordinate()
256 && p.y >= childView.getTop() && p.y < childView.getBottom()) { in getReorderableChildAtCoordinate()
257 return childView; in getReorderableChildAtCoordinate()
DStaggeredGridView.java562 final View childView = getChildAt(i); in getChildAtCoordinate() local
563 childView.getHitRect(frame); in getChildAtCoordinate()
/packages/apps/Messaging/src/com/android/messaging/ui/
DCustomHeaderPagerListViewHolder.java118 final View childView = mListView.getChildAt(i); in toggleVisibilityForPendingTransition() local
119 if (childView != epicenterView) { in toggleVisibilityForPendingTransition()
120 childView.setVisibility(show ? View.VISIBLE : View.INVISIBLE); in toggleVisibilityForPendingTransition()
/packages/apps/UnifiedEmail/src/com/android/mail/browse/
DMessageHeaderView.java695 private static void setChildMarginEnd(View childView, int marginEnd) { in setChildMarginEnd() argument
696 MarginLayoutParams mlp = (MarginLayoutParams) childView.getLayoutParams(); in setChildMarginEnd()
702 childView.setLayoutParams(mlp); in setChildMarginEnd()