Skip to content

Instantly share code, notes, and snippets.

@Mariovc
Mariovc / ScrollViewWithMaxHeight.kt
Last active February 23, 2022 12:58
ScrollView extended to use a max height together with wrap_content
import android.content.Context
import android.util.AttributeSet
import android.widget.ScrollView
import timber.log.Timber
class ScrollViewWithMaxHeight @JvmOverloads constructor(
context: Context,
attrs: AttributeSet? = null,
defStyleAttr: Int = 0
) : ScrollView(context, attrs, defStyleAttr) {