ProgressDialog 仅在 setContentView() 之后触发

发布于 2024-11-29 10:38:56 字数 477 浏览 3 评论 0原文

我有一个 ProgressDialog:

ProgressDialog pDialog = ProgressDialog.show(MyActivity.this, "", "Logging In...");

它应该从方法的顶部运行直到到达结束。以下是授权成功时执行的块:

if(writeSuccess){
    Toast.makeText(getApplicationContext(), "Login Success!", Toast.LENGTH_SHORT).show();
    pDialog.dismiss();
    setContentView(R.layout.auth);
}

但是 ProgressDialog 不会触发。但是,如果我注释掉它,它将在 ContentView 切换后触发。有人对这个问题有什么想法或解决办法吗?

I have a ProgressDialog:

ProgressDialog pDialog = ProgressDialog.show(MyActivity.this, "", "Logging In...");

And it is supposed to run from the top of the method and through until it reaches an end. Here is the block that is execute on authorization success:

if(writeSuccess){
    Toast.makeText(getApplicationContext(), "Login Success!", Toast.LENGTH_SHORT).show();
    pDialog.dismiss();
    setContentView(R.layout.auth);
}

But the ProgressDialog will not fire. But if I comment out it's dismissal it will fire after the ContentView has been switched. Anybody have any idea or remedy to this problem?

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

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

发布评论

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

评论(1

微暖i 2024-12-06 10:38:56

使用 ASyncTask 来做你想做的事情。在 onPreExecute 上,创建并显示对话框,在 doInBackground 上进行登录,在 onPostExecute 上关闭先前创建的对话框。

Use an ASyncTask to do what you want. On onPreExecute, create and display the dialog, on doInBackground, make your Login, and on onPostExecute dismiss the dialog previously created.

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