1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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
}