17 lines
418 B
Kotlin
17 lines
418 B
Kotlin
package com.gh.common.iinterface
|
|
|
|
interface ISmartRefreshContent {
|
|
/**
|
|
* 启用/关闭 页面滑动
|
|
* @param isScrollEnabled 是否启用
|
|
*/
|
|
fun setScrollEnabled(isScrollEnabled: Boolean)
|
|
|
|
fun onRefresh()
|
|
|
|
/**
|
|
* 启用/关闭 SwipeRefreshLayout 的下拉刷新
|
|
* @param isSwipeRefreshEnabled 是否启用
|
|
*/
|
|
fun setSwipeRefreshEnabled(isSwipeRefreshEnabled: Boolean)
|
|
} |