使用aquery发布进度

时间:2014-12-13 20:06:05

标签: android-query aquery

我需要使用AQuery显示文件下载进度,是否有任何方式显示文件下载的百分比而不是仅显示一个简单的进度对话框(aq.progress(new ProrgressDialog(mContext)...))

1 个答案:

答案 0 :(得分:0)

像这样制作进度对话框并在AQuery上设置 -

private ProgressDialog dialog;
private AQuery aq;
你的onCreate

中的

dialog = new ProgressDialog(this);
    dialog.setTitle("AQuery");
    dialog.setMessage("Downloading....Please wait !");
    dialog.setIndeterminate(false);
    dialog.setMax(100);
    dialog.setProgressStyle(ProgressDialog.STYLE_HORIZONTAL);
    dialog.setCancelable(false);

    aq = new AQuery(this);
    aq.id(R.id.imgAQuery).progress(dialog).image("your url",false,false);