一个支持多种状态的自定义View,可以方便的切换到:加载中视图、错误视图、空数据视图、网络异常视图、内容视图。

Overview

API Library version License

一个支持多种状态的自定义View,可以方便的切换到:

  • 加载中视图
  • 错误视图
  • 空数据视图
  • 网络异常视图
  • 内容视图

apk下载

使用

dependencies {
    implementation 'com.classic.common:multiple-status-view:1.7'
}

示例

<com.classic.common.MultipleStatusView
    android:id="@+id/multiple_status_view"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    app:loadingView="@layout/custom_loading_view"
    app:emptyView="@layout/custom_empty_view"
    app:errorView="@layout/custom_error_view"
    app:noNetworkView="@layout/custom_no_network_view"
    app:contentView="@layout/main_content"/>
MultipleStatusView multipleStatusView = (MultipleStatusView) findViewById(R.id.multiple_status_view);

//显示加载中视图
multipleStatusView.showLoading();
// mMultipleStatusView.showLoading("自定义提示内容");
// mMultipleStatusView.showLoading(R.string.custom_hint_content, "占位符1", "占位符2", "...");
// multipleStatusView.showLoading(R.layout.xxx, layoutParams);
// multipleStatusView.showLoading(customView, layoutParams);

//显示空视图
multipleStatusView.showEmpty();
// mMultipleStatusView.showEmpty("自定义提示内容");
// mMultipleStatusView.showEmpty(R.string.custom_hint_content, "占位符1", "占位符2", "...");
// multipleStatusView.showEmpty(R.layout.xxx, layoutParams);
// multipleStatusView.showEmpty(customView, layoutParams);

//显示错误视图
multipleStatusView.showError();
// mMultipleStatusView.showError("自定义提示内容");
// mMultipleStatusView.showError(R.string.custom_hint_content, "占位符1", "占位符2", "...");
// multipleStatusView.showError(R.layout.xxx, layoutParams);
// multipleStatusView.showError(customView, layoutParams);

//显示无网络视图
multipleStatusView.showNoNetwork();
// mMultipleStatusView.showNoNetwork("自定义提示内容");
// mMultipleStatusView.showNoNetwork(R.string.custom_hint_content, "占位符1", "占位符2", "...");
// multipleStatusView.showNoNetwork(R.layout.xxx, layoutParams);
// multipleStatusView.showNoNetwork(customView, layoutParams);

//显示内容视图
multipleStatusView.showContent();
// multipleStatusView.showContent(R.layout.xxx, layoutParams);
// multipleStatusView.showContent(customView, layoutParams);

//设置重试视图点击事件
multipleStatusView.setOnRetryClickListener(onRetryClickListener);

//设置视图状态切换监听事件
mMultipleStatusView.setOnViewStatusChangeListener(OnViewStatusChangeListener);

/**
* 获取当前view的状态
*      MultipleStatusView.STATUS_LOADING   //当前为加载中视图
*      MultipleStatusView.STATUS_EMPTY     //当前为空视图
*      MultipleStatusView.STATUS_ERROR     //当前为错误视图
*      MultipleStatusView.STATUS_NO_NETWORK//当前为无网络视图
*      MultipleStatusView.STATUS_CONTENT   //当前为内容视图
*/
int viewStatus = multipleStatusView.getViewStatus();

MultipleStatusView 继承自 RelativeLayout,所以内容视图也可以直接写在 MultipleStatusView 内部

<com.classic.common.MultipleStatusView
    android:id="@+id/multiple_status_view"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    app:emptyView="@layout/custom_empty_view"
    app:errorView="@layout/custom_error_view"
    app:loadingView="@layout/custom_loading_view"
    app:noNetworkView="@layout/custom_no_network_view">

    <ImageView
        android:id="@+id/image"
        android:layout_width="60dp"
        android:layout_height="60dp"
        android:layout_centerVertical="true"
        android:layout_marginLeft="24dp"
        android:layout_marginRight="16dp"
        android:src="@drawable/test"/>

    <TextView
        android:id="@+id/text1"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignTop="@id/image"
        android:layout_toRightOf="@id/image"
        android:text="内容视图111111"/>

    <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignBottom="@id/image"
        android:layout_toRightOf="@id/image"
        android:text="内容视图222222"/>

</com.classic.common.MultipleStatusView>

注意事项

必须按如下规则设置对应视图根节点的 view id,否则会导致试图重叠
必须按如下规则设置对应视图根节点的 view id,否则会导致试图重叠
必须按如下规则设置对应视图根节点的 view id,否则会导致试图重叠

1. 如果使用自定义属性

app:emptyView="@layout/..."
app:errorView="@layout/..."
app:loadingView="@layout/..."
app:noNetworkView="@layout/..."

需要设置:

  • 加载中视图的id必须为:loading_view
  • 空视图的id必须为:empty_view
  • 错误视图的id必须为:error_view
  • 无网络视图的id必须为:no_network_view
  • 自定义提示文本的id必须为:status_hint_content

2. 如果需要点击某个 view 进行重试, 需要设置:

  • 空视图内对应的view id:empty_retry_view
  • 错误视图内对应的view id:error_retry_view
  • 无网络视图内对应的view id:no_network_retry_view

3. 使用 new 关键字创建自定义视图时,请设置 id

TextView tv = new TextView(getApplicationContext());
tv.setId(Utils.generateViewId());
tv.setText(text);

更多使用方法详见 demo 示例:

贡献者

感谢以下人员贡献的代码

关于

License

Copyright 2015 classic

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
Comments
  • 引用库报错,使用不了

    引用库报错,使用不了

    在实例代码中build显示以下错误: Error:Unable to resolve dependency for ':app@debug/compileClasspath': Could not resolve com.classic.common:multiple-status-view:1.4. <a href="openFile:C:/Users/Leu/Desktop/MultipleStatusView-master/app/build.gradle">Open File</a><br><a href="Unable to resolve dependency for &#39;:app@debug/compileClasspath&#39;: Could not resolve com.classic.common:multiple-status-view:1.4.">Show Details</a> 在自己的代码中引用也出了类似的错。 网上搜索之后是这个原因: http://www.jcodecraeer.com/a/anzhuokaifa/Android_Studio/2017/1026/8646.html 可是其他的库都是可以用的,就这个库不行。

    opened by Leu-Z 4
  • 空指针异常

    空指针异常

    平时测试都没有什么问题,但是在后台却收集到了很多空指针异常的问题; java.lang.NullPointerException: Attempt to invoke virtual method 'android.view.View android.view.LayoutInflater.inflate(int, android.view.ViewGroup)' on a null object reference at com.classic.common.MultipleStatusView.inflateView(MultipleStatusView.java) at com.classic.common.MultipleStatusView.showEmpty(MultipleStatusView.java) at com.classic.common.MultipleStatusView.showEmpty(MultipleStatusView.java)

    MultipleStatusView是直接下载布局里面的,通过butterknife来绑定的控件; 求解答;

    opened by qyliuyawei 3
  • 一点改进建议

    一点改进建议

    根据mContentView = findViewById(R.id.content_view);去设置内容视图有点不便,用起来还得把内嵌视图最外层命名为content_view,繁琐切容易重复,可以考虑内嵌视图只支持一个子视图,然后mContentView = this.getChildAt(0);去处理

    opened by mzeht 3
  • 同一个页面中多次使用会互相干扰

    同一个页面中多次使用会互相干扰

    在同一个界面中会出现干扰问题,如下所示: 1.当我在页面中放入一个时,效果如下 image

    2.当放入两个时,效果如下 image

    这两个contentView的内容高度都是自适应的,高度值是不一样的,如果多次使用时,所有的contentView的高度都会和最后一个contentView的高度保持一致,而不是使用自己的高度,所以出现上面显示不全的现象。

    opened by yuhaoz 2
  • 这个地方,这样写是不是有点不合适,如果多次showempty 是不是会导致解析xml布局文件多次

    这个地方,这样写是不是有点不合适,如果多次showempty 是不是会导致解析xml布局文件多次

    https://github.com/qyxxjd/MultipleStatusView/blob/65c7912291c51efc1f92e725b78c5a084ad3aa0b/multiple-status-view/src/main/java/com/classic/common/MultipleStatusView.java#L117

    这个地方,这样写是不是有点不合适,如果多次showempty 是不是会导致解析xml布局文件多次

    opened by meijingkang 2
  • add attach method

    add attach method

    no need to write MultipleStatusView in xml, you can just use like below:

    ViewGroup ll_content = findViewById(R.id.ll_content); mMultipleStatusView = MultipleStatusView.attach(ll_content); if (null != mMultipleStatusView) { mMultipleStatusView.setOnRetryClickListener(mRetryClickListener); }

    opened by gao746700783 1
  • 自定义提示内容类型如果支持CharSequence就好了,  现在想要设置带多色彩文字好麻烦.

    自定义提示内容类型如果支持CharSequence就好了, 现在想要设置带多色彩文字好麻烦.

    setStatusHintContent重载一个, 参数 hint 支持CharSequence的.
    

    private void setStatusHintContent(View view, CharSequence hint) { checkNull(view, "Target view is null."); TextView hintView = view.findViewById(R.id.status_hint_content); if (null != hintView) { hintView.setText(hint); } else { throw new NullPointerException("Not find the view ID status_hint_content");

    opened by beike6688 1
  • 然后在fragment应用  外层是viewpager+tablayout  滑动几次就会空白

    然后在fragment应用 外层是viewpager+tablayout 滑动几次就会空白

    MultipleStatusView 嵌套TwinklingRefreshLayout

    <com.classic.common.MultipleStatusView android:id="@+id/include_multiple_status_view" android:layout_width="match_parent" android:layout_height="match_parent" app:emptyView="@layout/custom_empty_view" app:errorView="@layout/custom_error_view" app:loadingView="@layout/custom_loading_view" app:noNetworkView="@layout/custom_no_network_view"

        >
    
        <!--scrollview布局-->
        <com.lcodecore.tkrefreshlayout.TwinklingRefreshLayout
            android:id="@+id/include_refreshLayout"
            android:layout_width="match_parent"
            android:layout_height="match_parent">
    
            <!--列表布局-->
            <android.support.v7.widget.RecyclerView
                android:id="@+id/include_recyclerview"
                android:layout_width="match_parent"
                android:layout_height="match_parent"
                android:layout_below="@+id/headview"
                android:background="#fff"
                android:focusableInTouchMode="false"
                android:overScrollMode="never"
                android:scrollbars="none" />
    
        </com.lcodecore.tkrefreshlayout.TwinklingRefreshLayout>
    </com.classic.common.MultipleStatusView>
    

    然后在fragment应用 外层是viewpager+tablayout 滑动几次就会空白

    opened by printlybyte 2
  • 增加完全自定义状态视图功能

    增加完全自定义状态视图功能

    作者你好,在最近的项目中遇到这样的需求:在用户未登录时,不显示页面内容,而是显示一个提示用户登录并且有点击跳转到登录页面的视图(我已在代码中添加了类似的例子,可以查看need_login.xml)。所以我觉得应该预留一个可以完全自定义布局的视图,以备不时之需。 在这次的pr中,我主要增加了两个功能:

    1. 开发者可以在xml文件(使用属性app:customView)或者代码中添加自定义的视图(使用方法showCustomView());
    2. 可以在方法showCustomView()中设置任意需要监听点击事件的控件Id。 pr仅供参考,但还是希望可以加上这个功能,如果还有其他更好的写法,也欢迎交流。
    opened by lindroy 0
  • 支持四个参数的构造方法

    支持四个参数的构造方法

     public RelativeLayout(Context context, AttributeSet attrs, int defStyleAttr, int defStyleRes) 
    

    这个构造方法能支持一下嘛? 我在继承MultipleStatusView时,定义一个style

    <style name="BaseMultipleStatusView" parent="MultipleStatusView">
            <item name="emptyView">@layout/empty_view</item>
            <item name="errorView">@layout/error_view</item>
            <item name="loadingView">@layout/layout_loading_view</item>
            <item name="noNetworkView">@layout/layout_net_offline</item>
        </style>
    

    这样就可以放到第四个参数里。(当然也可以在xml中定义style引用这个) 要是能支持第四个参数,直接在继承类中加入就更方便了,烦请大佬指点!!!

    enhancement 
    opened by idealgn 0
Releases(v1.7)
Owner
续写经典
新的一天,要做到更好、更专业!
续写经典