2014-12-13 7 views
0

AQuery를 사용하여 파일 다운로드 진행 상태를 표시해야합니다. 일반 진행 대화 상자 (aq.progress (새 ProrgressDialog (mContext))를 표시하는 대신 파일 다운로드의 %를 보여주는 방법이 있습니까?))아쿠아를 사용하여 진행률을 게시하십시오.

+0

private ProgressDialog dialog; private AQuery aq; 

AQuery-

설정? –

답변

0

은 다음과 같이 진행 대화 상자를 확인하고 당신이 당신의 해결책을 발견 한 당신의에서 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);