19 lines
516 B
Kotlin
19 lines
516 B
Kotlin
package melody.offline.music.view
|
|
|
|
import android.content.Context
|
|
import android.util.AttributeSet
|
|
import android.view.View
|
|
import android.widget.FrameLayout
|
|
|
|
open class ModuleView : FrameLayout {
|
|
protected var contentView: View? = null
|
|
constructor(context: Context) : super(context)
|
|
|
|
constructor(context: Context, attrs: AttributeSet) : super(context, attrs)
|
|
|
|
constructor(context: Context, attrs: AttributeSet, defStyleAttr: Int) : super(
|
|
context,
|
|
attrs,
|
|
defStyleAttr
|
|
)
|
|
} |