开发者

ProgressDialog in TabHost application ofandroid

开发者 https://www.devze.com 2023-02-06 03:02 出处:网络
I want to use the Progress Dailog in my application. I am facing one issue in doing it, after some RnD I came to know that i开发者_JS百科t is not quite possible to create the progress Dialog I have th

I want to use the Progress Dailog in my application. I am facing one issue in doing it, after some RnD I came to know that i开发者_JS百科t is not quite possible to create the progress Dialog I have the Activity Group Class for the TabHost in the application.

I have exactly the same scenario, I have the TabHost in my application and an ActivityGroup Class that has the TabHost Classes. So, when I try to create the Progress Dialog for the Class that is in the Activity Group Class I cannot create it. But if I try to create the Progress Dialog for the Class that is not in the Activity Group I can create it with no issues.

Is there any solutions now?


I think the problem is with context of the progress dialog

Try giving the context of the dialog as getParent()

ProgressDialog.show(getParent(), " Loading...", "Please wait...", true, false);

0

精彩评论

暂无评论...
验证码 换一张
取 消