Peter Djeneralovic
Peter Djeneralovic

Reputation: 507

Removing the shadow created by a dialog

How do you remove the shadow from a dialog in android?

Thanks

Peter,

Upvotes: 1

Views: 1821

Answers (1)

akuzma
akuzma

Reputation: 1554

This should work:

dialog.getWindow().clearFlags(LayoutParams.FLAG_DIM_BEHIND);

Upvotes: 5

Related Questions