Reputation: 507
How do you remove the shadow from a dialog in android?
Thanks
Peter,
Upvotes: 1
Views: 1821
Reputation: 1554
This should work:
dialog.getWindow().clearFlags(LayoutParams.FLAG_DIM_BEHIND);
Upvotes: 5