Fragment懒加载工具,支持ViewPager嵌套
- 根项目的build.gradle中加入以下代码
allprojects {
repositories {
...
maven { url 'https://jitpack.io' }
}
}
- 在需要的模块加入以下的依赖
dependencies {
implementation 'com.gitee.brook_007:LazyFragmentUtil:1.0.2'
}
- 然后在Fragment的构造方法中创建FragmentUserVisibilityController实例,再在Fragment中调用FragmentUserVisibilityController中对应的方法,推荐在BaseFragment中使用