【替换代码0

Suggestions? Ty

android
dialog
material-design
android-alertdialog
material-components-android
akLab
akLab
发布于 2022-10-25
1 个回答
Gabriele Mariotti
Gabriele Mariotti
发布于 2022-10-27
已采纳
0 人赞同

你可以使用 android:backgroundDimAmount 属性(范围: 1.0 - 0.0 )。

<style name="ThemeOverlay.App.MaterialAlertDialog" parent="ThemeOverlay.Material3.MaterialAlertDialog">
    <item name="android:backgroundDimAmount">0.3</item>
</style>

或者如果你使用的是MaterialComponents主题

<style name="ThemeOverlay.App.MaterialAlertDialog" parent="ThemeOverlay.MaterialComponents.MaterialAlertDialog">
    <item name="android:backgroundDimAmount">0.xx</item>
</style>

然后直接打电话。

MaterialAlertDialogBuilder(context, R.style.ThemeOverlay_App_MaterialAlertDialog)
    //....
    .show()