Skip to content

Instantly share code, notes, and snippets.

@sethepeterson
sethepeterson / ExpandableTextView.kt
Last active February 8, 2021 01:16
Android - Expandable TextView
import android.animation.Animator
import android.animation.ObjectAnimator
import android.content.Context
import android.util.AttributeSet
import androidx.appcompat.widget.AppCompatTextView
class ExpandableTextView : AppCompatTextView {
constructor(context: Context) : super(context)
constructor(context: Context, attrs: AttributeSet) : super(context, attrs)