How would I ask the current activity for a list of any ProgressDialog’s visible so that I can call their Hide() method?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
If these are all ProgressDialog objects that have been opened by your application, then you can keep a member (or even static member) reference to them when you create them. Then, you can check the
isShowing()method of each one to see if it is visible.If you are looking for ProgressDialog objects from other applications, I do not think this is possible.