com.cmonbaby.http.dialog.FileLoadable Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of http_lower Show documentation
Show all versions of http_lower Show documentation
Android Http Core Library
package com.cmonbaby.http.dialog;
/**
* Author: Simon
*
QO: 8950764
*
Email: [email protected]
*
WebSize: https://www.cmonbaby.com
*
Version: 1.0.0
*
Date: 2020/12/28
*
Description: Activity和Fragment显示loading的接口
*/
public interface FileLoadable {
/** 显示Dialog进度加载 */
void showProgressDialog();
/** 隐藏Dialog进度加载 */
void dismissFileDialog();
/** 设置Dialog标题 */
void setFileDialogTitle(String title);
/** 设置Dialog内容摘要 */
void setFileDialogContent(String content);
/** 设置上传下载最大进度 */
void setDialogMaxProgress(int maxProgress);
/** 设置上传下载当前进度 */
void setDialogProgress(int progress);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy