0
在點擊我的活動類中的提交按鈕後,我會向服務器發送投訴。這是我的代碼,用於在投訴發送到服務器時顯示進度條。但點擊提交後不會立即顯示。它在獲得服務器響應之前正在顯示進度條。進度條不會立即顯示
case R.id.submit:
ProgressDialog.show(this, " " , " Sending Complaint. \n Please wait ... ", true);
/*...code to send complaint and get the response....*/
請幫我