Vito Gentile
Vito Gentile

Reputation: 14426

How to create ProgressDialog without obscuring the background window

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

Answers (1)

dhaag23
dhaag23

Reputation: 6126

Try this:

Window window = dialog.getWindow();
window.clearFlags(WindowManager.LayoutParams.FLAG_DIM_BEHIND);

Upvotes: 6

Related Questions