Reputation: 14426
I've got a little problem. When I use the showDialog() method of my Activity, it generates a perfect ProgressDialog, but the activity on the background (as the dafault behaviour) and becomes darker.
How can I avoid the darkening of my activity?
Upvotes: 3
Views: 748
Reputation: 6126
Try this:
Window window = dialog.getWindow();
window.clearFlags(WindowManager.LayoutParams.FLAG_DIM_BEHIND);
Upvotes: 6