Searched refs:collapsedHeight (Results 1 – 5 of 5) sorted by relevance
45 private val collapsedHeight = 300 regex54 whenever(expandableView.collapsedHeight).thenReturn(collapsedHeight)72 verify(expandableView, atLeast(1)).actualHeight = collapsedHeight77 whenever(expandableView.actualHeight).thenReturn(collapsedHeight)
52 private val collapsedHeight = 300 regex68 whenever(expandableView.collapsedHeight).thenReturn(collapsedHeight)93 verify(expandableView, atLeast(1)).actualHeight = collapsedHeight98 whenever(expandableView.actualHeight).thenReturn(collapsedHeight)
264 val newHeight = Math.min((child.collapsedHeight + expansionHeight).toInt(),291 if (child.actualHeight == child.collapsedHeight) {295 val anim = ValueAnimator.ofInt(child.actualHeight, child.collapsedHeight)
905 if (expandable && rubberband + child.collapsedHeight > child.maxContentHeight) {906 var overshoot = rubberband + child.collapsedHeight - child.maxContentHeight910 child.actualHeight = (child.collapsedHeight + rubberband).toInt()918 if (child.actualHeight == child.collapsedHeight) {922 val anim = ValueAnimator.ofInt(child.actualHeight, child.collapsedHeight)
833 void clampHunToTop(float quickQsOffsetHeight, float stackTranslation, float collapsedHeight, in clampHunToTop() argument842 viewState.height = (int) Math.max(viewState.height - distToRealY, collapsedHeight); in clampHunToTop()