How do I remove the black background from a dialog box in Android. The pic shows the problem.
In my case solution works like this:
dialog_AssignTag.getWindow().setBackgroundDrawable(new ColorDrawable(android.graphics.Color.TRANSPARENT));
And Additionally in Xml of custom dialog:
android:alpha="0.8"