我想更改dialogFragment的windowBackground。 它在 API 32 处更改了 windowBackground 但为什么它没有更改? API 34 API 32 和 API 34 之间发生了什么变化?
我只有简单的对话框..用于测试背景颜色 我想换成灰色。
尝试重写
getTheme
方法:
class CustomDialogFragment: DialogFragment(
R.layout.dialog_fragment_custom,
) {
override fun getTheme(): Int {
return R.style.YOUR_CUSTOM_STYLE_FOR_DIALOG
}
}