Используйте следующий стиль в диалоге, если вы используете фрагмент диалога
Цвет:
<color name="transparent">#00000000</color>
<style name="DialogTransparent" parent="Theme.AppCompat.Dialog">
<item name="windowNoTitle">true</item>
<item name="android:alertDialogStyle">@style/CustomAlertDialogStyle</item>
<item name="android:windowBackground">@color/transparent</item>
<item name="android:backgroundDimEnabled">false</item>
<item name="android:textStyle">normal</item>
<item name="android:textSize">16sp</item>
</style>
Добавьте стиль к фрагменту в манифесте
<activity android:name=".components.popup.PopUpActivity"
android:theme="@style/DialogTransparent" />