/StateLayout

🍘 Android 一行代码构建整个应用的缺省页

Primary LanguageKotlinApache License 2.0Apache-2.0

StateLayout

1600


整个应用的缺省页


使用文档 | 备用访问

image-20200802050745439


优势

  • 扩展性强
  • 代码少
  • 完善的文档和长期维护
  • 提供网络请求和列表框架实现自动化, 代码编写过程中无需关注缺省页显示

功能

  • 优雅的函数设计
  • 局部缺省页
  • 布局或代码声明皆可
  • 全局/单例配置
  • 监听缺省页显示
  • 自定义动画
  • 多种状态缺省页
  • 网络请求回调
  • 传递任意对象作为标签
  • 快速配置点击重试
  • 异步线程
  • 无网络立即显示错误缺省页
  • 配合列表使用自动化显示列表缺省页
  • 配合网络请求自动化显示缺省页

安装

添加远程仓库根据创建项目的 Android Studio 版本有所不同

Android Studio Arctic Fox以下创建的项目 在项目根目录的 build.gradle 添加仓库

allprojects {
    repositories {
        // ...
        maven { url 'https://jitpack.io' }
    }
}

Android Studio Arctic Fox以上创建的项目 在项目根目录的 settings.gradle 添加仓库

dependencyResolutionManagement {
    repositories {
        // ...
        maven { url 'https://jitpack.io' }
    }
}

然后在 module 的 build.gradle 添加依赖框架

implementation 'com.github.liangjingkanji:StateLayout:1.2.0'

License

Copyright (C) 2018 Drake, Inc.

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at

http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.