HomeEmptyView.kt 290 Bytes
Newer Older
ydl committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
package com.yidianling.home.ui.view

import android.content.Context
import android.widget.LinearLayout

class HomeEmptyView(private val mContext: Context) : LinearLayout(mContext) {

    init {
        initView()
    }

    fun initView() {
        layoutParams = LayoutParams(0,0)
    }

}