进度条没有立即显示

发布于 2024-12-02 07:46:45 字数 290 浏览 0 评论 0原文

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

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

请帮我

I'am sending a complaint to server after clicking on submit button from my activity class. And Here is my code to display a progress bar while the complaint is sending to server. But it is not displaying immediately after clicking on submit. It is displaying the progress bar just before getting the response from server.

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

Please help me

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

沉睡月亮 2024-12-09 07:46:45

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

do your server communication in the separate thread not in the UI thread which you are doing currently..

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文