0

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

4

1 回答 1

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);
于 2015-01-15T05:02:27.097 回答