进度条不会立即显示

时间:2011-09-01 07:47:58

标签: android progress-bar

点击我的活动课程中的提交按钮后,我向服务器发送了投诉。这是我的代码,在投诉发送到服务器时显示进度条。但是点击提交后它没有立即显示。它正在从服务器获取响应之前显示进度条。

case R.id.submit: 
    ProgressDialog.show(this, " " , " Sending Complaint. \n Please wait ... ", true);
    /*...code to send complaint and get the response....*/

请帮帮我

1 个答案:

答案 0 :(得分:1)

在不在当前正在进行的UI线程中的单独线程中进行服务器通信。