LoadingLayout简介
应用于Android中的一个加载数据不同状态的类库(自定义控件)。
Compile
打开你的app module中的build.gradle,添加依赖:
compile 'tech.michaelx.loadinglibrary:loadinglibrary:1.0.2'
最新版本号请参看最上方徽标
Sample
在layout的xml中使用如下:
<?xml version="1.0" encoding="utf-8"?>
<tech.michaelx.loadinglibrary.LoadingLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:id="@+id/loading_layout"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:contentDescription="loadingBackground可以是drawable或者颜色"
android:padding="10dp"
app:emptyView="@layout/empty_layout"
app:errorView="@layout/failure_layout"