Home
last modified time | relevance | path

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

/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/Contacts/src/com/android/contacts/editor/
DContactEditorFragment.java330 final View childView = mContent.getChildAt(i); in updatedExpandedEditorsMap() local
331 if (childView instanceof BaseRawContactEditorView) { in updatedExpandedEditorsMap()
332 BaseRawContactEditorView childEditor = (BaseRawContactEditorView) childView; in updatedExpandedEditorsMap()
482 final View childView = mContent.getChildAt(i); in setPhoto() local
483 if (childView instanceof BaseRawContactEditorView in setPhoto()
484 && childView != requestingEditor) { in setPhoto()
486 = (BaseRawContactEditorView) childView; in setPhoto()
508 final View childView = mContent.getChildAt(i); in getRawContactEditorView() local
509 if (childView instanceof BaseRawContactEditorView) { in getRawContactEditorView()
510 final BaseRawContactEditorView editor = (BaseRawContactEditorView) childView; in getRawContactEditorView()
[all …]
/packages/apps/TV/src/com/android/tv/guide/
DProgramGrid.java391 View childView = getChildAt(i); in getFirstVisibleChildIndex() local
392 int childTop = mLayoutManager.getDecoratedTop(childView); in getFirstVisibleChildIndex()
393 int childBottom = mLayoutManager.getDecoratedBottom(childView); in getFirstVisibleChildIndex()
410 View childView = getChildAt(firstVisibleChildIndex); in updateInputLogo() local
411 int childAdapterPosition = getChildAdapterPosition(childView); in updateInputLogo()
412 ((ProgramTableAdapter.ProgramRowHolder) getChildViewHolder(childView)) in updateInputLogo()
415 childView = getChildAt(i); in updateInputLogo()
416 ((ProgramTableAdapter.ProgramRowHolder) getChildViewHolder(childView)) in updateInputLogo()
418 childAdapterPosition = getChildAdapterPosition(childView); in updateInputLogo()
/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()