Consider also: ```class FooView @JvmOverloads con...
# getting-started
k
Consider also:
Copy code
class FooView
@JvmOverloads
constructor(
        context: Context,
        attrs: AttributeSet? = null,
        defStyle: Int = 0
) : // Don't worry, be happy
        LinearLayout(context, attrs, defStyle),
        SomeInterface1,
        SomeInterface2 {

    init {

    }

}