Home
last modified time | relevance | path

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

/packages/apps/Messaging/src/com/android/messaging/ui/
DLineWrapLayout.java63 View currChild = getChildAt(i); in onMeasure() local
64 if (currChild.getVisibility() == GONE) { in onMeasure()
67 LayoutParams layoutParams = (LayoutParams) currChild.getLayoutParams(); in onMeasure()
70 currChild.measure(childWidthSpec, MeasureSpec.UNSPECIFIED); in onMeasure()
71 int childMeasuredWidth = currChild.getMeasuredWidth() + startMargin + endMargin; in onMeasure()
72 int childMeasuredHeight = currChild.getMeasuredHeight() + layoutParams.topMargin + in onMeasure()
111 View currChild = getChildAt(i); in onLayout() local
112 if (currChild.getVisibility() == GONE) { in onLayout()
115 LayoutParams layoutParams = (LayoutParams) currChild.getLayoutParams(); in onLayout()
116 int childWidth = currChild.getMeasuredWidth(); in onLayout()
[all …]