I\'m trying to get the background of a DialogFragment to be completely clear.
DialogFragment
With setting the style item android:windowIsFloating to true
android:windowIsFloating
Even a simpler solution is to change the style in the onCreate of the DialogFragment:
@Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setStyle(STYLE_NO_FRAME, getTheme()); }