Skip to content

XuDaojie/MultiStateView

Repository files navigation

MultiStateView

JitPack API ![Method and size](https://img.shields.io/badge/Methods and size-64 | 7 KB-e91e63.svg)

License Android Arsenal

参考Kennyc1012/MultiStateView这个这个写的,1.0版本只是在这个上面加了默认布局,以及修正了在设计器中无法预览的问题
2.0是自己写的,主要增加了自定义状态,当然,核心原理还是那样

用于切换不同View的各种状态,默认包含Content,Empty,Fail,Loading 4个状态,并且支持添加其他状态
处理了Loading显示时间很短立刻切换到其他状态时看起来好像Loading界面闪了一下

screenshot

Using MultiStateView

Layout

<me.xdj.view.SimpleMultiStateView xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    xmlns:xdj="http://schemas.android.com/apk/res-auto"
    android:id="@+id/multi_state_view"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:gravity="center"
    xdj:msv_emptyView="@layout/msv_view_state_empty"
    xdj:msv_failView="@layout/msv_view_state_fail"
    xdj:msv_loadingView="@layout/msv_view_state_loading"
    tools:context="me.xdj.multistateview.MainActivity">

    <TextView
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:gravity="center"
        android:text="Content" />
</me.xdj.view.SimpleMultiStateView>

可以通过以下属性自定义可状态下的视图

<attr name="msv_loadingView" format="reference" />
<attr name="msv_emptyView" format="reference" />
<attr name="msv_failView" format="reference" />

Tips
由于MultiStateView继承于FrameLayout,直接子布局只能有一个,其他的不显示.

主要方法

public void setViewState(int state) // 设置视图状态 
public int getViewState()           // 获得当前状态
public View getView(int state)      // 获得指定状态的视图
public void addViewForStatus(int status, int resLayoutID) // 增加状态
public void setOnInflaterListener(OnInflateListener onInflateListener) // 各状态Layout inflate时触发(除了CONTENT)

Tips

  1. 当从Loading状态切换到其他状态时,如果Loading持续时间低于600ms则会延迟600ms切换
  2. 除了CONTENT以外的状态Layout都是在首次调用setViewState后才会inflate,所以设置监听事件的话需要状态修改完成后设置,或者调用setOnInflaterListener进行设置

常量

public static final int STATE_CONTENT = 10001;
public static final int STATE_LOADING = 10002;
public static final int STATE_EMPTY = 10003;
public static final int STATE_FAIL = 10004;

代码

具体代码可以看MultiStateFragment

Including in your project

要将MultiStateView引入你的项目,需要修改你的build.gradle

Add repository

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

Add dependency

dependencies {
    compile 'com.github.XuDaojie:MultiStateView:v2.2.3'
}

喝水不忘挖井人

Kennyc1012/MultiStateView
android.support.v4.widget.ContentLoadingProgressBar

License

Copyright XuDaojie

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.

About

通用状态切换视图(已停止维护)

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages