Insets是一个帮助处理WindowInsets的库
Insets - 使用文档
- 在根目录的settings.gradle添加
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
mavenCentral()
maven { url 'https://jitpack.io' }
}
}
- 在module的build.gradle添加
dependencies {
def version = "1.2.6"
implementation "com.github.xiaocydx.Insets:insets:${version}"
implementation "com.github.xiaocydx.Insets:insets-compat:${version}"
implementation "com.github.xiaocydx.Insets:insets-systembar:${version}"
}