1. 程式人生 > >kotlin 自定義view建構函式寫法

kotlin 自定義view建構函式寫法

class LoadingPager: FrameLayout  {

    constructor(context: Context): super(context){

    }

    constructor(context: Context, attributeSet: AttributeSet): super(context, attributeSet){

    }

    constructor(context: Context, attributeSet: AttributeSet, defStyleAttr: Int): super(context, attributeSet, defStyleAttr){
        
    }

    init {

    }
}