CustomSmartRefreshLayout.java
601 Bytes
package com.wd.common.widget;
import android.content.Context;
import android.util.AttributeSet;
import com.scwang.smart.refresh.layout.SmartRefreshLayout;
/**
* created by 周楷桐 on 2022/7/28
*/
public class CustomSmartRefreshLayout extends SmartRefreshLayout {
public CustomSmartRefreshLayout(Context context) {
super(context);
}
public CustomSmartRefreshLayout(Context context, AttributeSet attrs) {
super(context, attrs);
}
/**
* 是否开启了加载更多
*/
public boolean isEnableLoadMore(){
return mEnableLoadMore;
}
}