Searched refs:mContractedChild (Results 1 – 1 of 1) sorted by relevance
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/row/ |
D | NotificationContentView.java | 81 private View mContractedChild; field in NotificationContentView 225 if (mContractedChild != null) { in onMeasure() 228 ViewGroup.LayoutParams layoutParams = mContractedChild.getLayoutParams(); in onMeasure() 240 measureChildWithMargins(mContractedChild, widthMeasureSpec, 0, heightSpec, 0); in onMeasure() 241 int measuredHeight = mContractedChild.getMeasuredHeight(); in onMeasure() 244 measureChildWithMargins(mContractedChild, widthMeasureSpec, 0, heightSpec, 0); in onMeasure() 248 measureChildWithMargins(mContractedChild, widthMeasureSpec, 0, heightSpec, 0); in onMeasure() 251 && mContractedChild.getMeasuredHeight() > mExpandedChild.getMeasuredHeight()) { in onMeasure() 253 heightSpec = MeasureSpec.makeMeasureSpec(mContractedChild.getMeasuredHeight(), in onMeasure() 386 return mContractedChild; in getContractedChild() [all …]
|