-
Notifications
You must be signed in to change notification settings - Fork 1.9k
Don't use ProgressDialogs #724
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Comments
Yeah I've noticed that too ... ProgressDialog has one nice property in that it blocks further interaction while the async action happens. But I agree, it's a big hammer for a small nail. We can put some more thought into this after |
@samtstern Yeah, we'll have to |
I think it'd be good practice to get rid of the ProgressDialogs as well. The dialog that fires immediately after calling |
Special note about #1052, which may be a sub-case we can fix sooner. |
This has been fixed and released in |
@samtstern I started compiling some of my projects for O and I noticed that
ProgressDialog
is deprecated. Ouch. It makes sense because having a whole dialog just for loading is a bit jarring and I can see how the UX would be improved by having loading spinners integrated directly into the views. However, this is going to be a very painful transition for us since we use theProgressDialog
for everything async. 😕 Could you get some designers to take a look at our loading spinners and figure out where we should put them? I was thinking directly into the button the user presses, but I have no clue. 😄The text was updated successfully, but these errors were encountered: