Advertisement
Guest User

Untitled

a guest
Jul 21st, 2019
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Kotlin 0.47 KB | None | 0 0
  1. class FrogoboxTextView : TextView {
  2.     constructor(context: Context?) : super(context){}
  3.     constructor(context: Context?, attrs: AttributeSet?) : super(context, attrs)
  4.     constructor(context: Context?, attrs: AttributeSet?, defStyleAttr: Int) : super(context, attrs, defStyleAttr)
  5.     constructor(context: Context?, attrs: AttributeSet?, defStyleAttr: Int, defStyleRes: Int) : super(
  6.         context,
  7.         attrs,
  8.         defStyleAttr,
  9.         defStyleRes
  10.     )
  11. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement