AndroidEmptyLayout
AndroidEmptyLayout copied to clipboard
Android empty error loading layout
EmptyLayout
###Android 空页面|错误页面|加载中页面处理,支持所有的布局,使用简单方便
Screenshots
EmptyLayout使用
1.打开 Project root 的 build.gradle
allprojects {
repositories {
...
maven { url "https://jitpack.io" }
}
}
2.增加dependency
dependencies {
compile 'com.github.quanke:AndroidEmptyLayout:v1.0.0'
}
3.在布局文件里增加
<name.quanke.app.libs.emptylayout.EmptyLayout
android:id="@+id/emptyLayout"
android:layout_width="match_parent"
android:layout_height="match_parent">
<TextView
android:id="@+id/textHello"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Hello World!" />
</name.quanke.app.libs.emptylayout.EmptyLayout>
4.代码里增加:
findViewById(R.id.btnLoading).setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View view) {
emptyLayout.showLoading();
}
});
findViewById(R.id.btnEmpty).setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View view) {
emptyLayout.showEmpty();
}
});
findViewById(R.id.btnError).setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View view) {
emptyLayout.showError();
}
});
findViewById(R.id.btnData).setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View view) {
emptyLayout.hide();
}
});
Copyright 2016 ken.cai (http://quanke.name)
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.