android 网络加载提示进度封装 View

HHEmptyView

项目地址: HHEmptyView
简介:android 网络加载提示进度封装 View。包含加载中、加载失败、点击按钮重新加载,支持自定义加载中的 view。
image image

Usage xml

<com.mph.hhemptyview.widget.HHEmptyView
        android:id="@+id/hh_empty_view"
        android:layout_width="match_parent"
        android:layout_height="match_parent"/>

直接放 xml 布局文件跟布局中和其他布局不冲突,无需指定位置。

Java

1.

        emptyView = (HHEmptyView) findViewById(R.id.hh_empty_view);
        textView = (TextView) findViewById(R.id.name);

        //设置需要绑定的 view
        emptyView.bindView(textView);
        //指定自定义的 loading View
        View view = getLayoutInflater().inflate(R.layout.loading_view, null);
        emptyView.setCustomLoadingView(view);

        emptyView.setOnBtnClickListener(this);

2.

    /**
     * 模拟加载网络数据
     */
    private void loadData() {
        //模拟网络加载开始
        emptyView.loading();
        new Handler().postDelayed(new Runnable() {
            @Override
            public void run() {
                Random r = new Random();
                int i = r.nextInt(5);
                if(i<=3){
                    //网络加载失败
                    emptyView.empty("网络连接失败");
                }else{
                    //网络加载成功
                    emptyView.success();
                }
            }
        },2000);
    }

3.目前可以指定一下属性

    <declare-styleable name="HHEmptyView">
        <!-- 默认提示文字 -->
        <attr name="hh_empty_warn_txt" format="string|reference"/>
        <!-- 默认加载中文字 -->
        <attr name="hh_empty_loading_txt" format="string|reference"/>
        <!-- 重新加载按钮文字 -->
        <attr name="hh_empty_button_txt" format="string|reference"/>
    </declare-styleable>

详细使用见代码!!!


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值