BaseView.java 449 Bytes
package com.sunvote.txpad.base;

/**
 * Created by Elvis on 2017/9/12.
 * Email:Eluis@psunsky.com
 * 版权所有:长沙中天电子设计开发有限公司
 * Description:ETest
 */
public interface BaseView {

    /**
     * 网络错误,或者网络数据返回错误
     */
    void showNetError();

    /**
     * 加载进度条
     */
    void showProgress();

    /**
     * 隐藏加载进度条
     */
    void dismissProgress();

}