package cn.flightfeather.thirdappmodule.view.recyclerview
|
|
import cn.flightfeather.thirdappmodule.R
|
import com.chad.library.adapter.base.loadmore.LoadMoreView
|
|
/**
|
* @author riku
|
* Date: 2020/12/31
|
*/
|
class EmptyLoadMoreView : LoadMoreView() {
|
override fun getLayoutId(): Int = R.layout.layout_empty_load_more
|
|
override fun getLoadingViewId(): Int = R.id.loading
|
|
override fun getLoadFailViewId(): Int = R.id.load_fail
|
|
override fun getLoadEndViewId(): Int = R.id.load_end
|
}
|