tapczan1337

Results 1 comments of tapczan1337

Got around it with this simple code: ``` override fun onMeasure( widthMeasureSpec: Int, heightMeasureSpec: Int) {j super.onMeasure(widthMeasureSpec, heightMeasureSpec) val minHeight = 50 if (measuredHeight < minHeight) { setMeasuredDimension(measuredWidth, minHeight) }...