我有一个自定义的AlertDialog
类,其中有多个函数在init上调用取决于输入。它将创建具有自定义布局的自定义AlertDialog
,并将设置Button及其监听器。然后将显示对话框。它在其中一些中工作,但是在Android 8.1上,我看不到那些默认对话框按钮。我认为是这样,因为自定义布局是LinearLayout
,其中width
和height
设置为match_parent
。如果我将其设置为wrap_content
,它仍然不可见。
在我的AlertDialog布局中,也是RecyclerView
。
我发现一些有关此问题的帖子,可能是由于未在Theme
中设置对话框styles
引起的,但这不是我的情况,因为我必须使用自定义主题才能具有全屏对话框。
我定义AlertDialog的功能之一:
private fun modemDialogInit(msg: Int, finish: Int, cntinue: Int){
val dialogView: View = layoutInflater.inflate(R.layout.rev_report_dialog_modem, null)
initRecyclerView(dialogView)
val radioView: RadioGroup = dialogView.findViewById(R.id.hp_radioView)
val radioOne: RadioButton = dialogView.findViewById(R.id.one_year)
setMessage(a.getString(msg))
setButton(DialogInterface.BUTTON_POSITIVE, a.getText(finish)) { _, _ ->}
setCancelButton()
if (a is ModemActivity) setNeutralButton(cntinue)
setView(dialogView)
create()
setOnShowListener {
val button = getButton(BUTTON_POSITIVE)
button.setOnClickListener {
changeDialogButtonStates(false)
val modemEndDate: Date
if (radioView.checkedRadioButtonId == radioOne.id){
modemEndDate = sdf.parse(sdf.format(Api.getDateNYearsFromNow(1)))
} else {
modemEndDate = sdf.parse(sdf.format(Api.getDateNYearsFromNow(2)))
}
if (a is ModemActivty){
modemEntity.modem.put(MODEM_REPORT_CURRENT_NUM_OF_ITEMS, modemItemsNum)
a.saveModem(
modemEndDate,
modemEntity,
this,
getButton(DialogInterface.BUTTON_POSITIVE),
getButton(DialogInterface.BUTTON_NEGATIVE),
getButton(DialogInterface.BUTTON_NEUTRAL))
} else if (a is ModemCheckedActivity){
innerModemEntity.put(MODEM_REPORT_CURRENT_NUM_OF_ITEMS, modemItemsNum)
a.saveModemChecked(
modemEndDate,
innerRModemEntity,
this,
getButton(DialogInterface.BUTTON_POSITIVE),
getButton(DialogInterface.BUTTON_NEGATIVE))
}
}
}
show()
}
这是我的AlertDialog使用的主题:
<style name="DialogTheme" parent="Theme.AppCompat.Light.Dialog">
<item name="android:layout_width">match_parent</item>
<item name="android:layout_height">match_parent</item>
<!-- No backgrounds, titles or window float -->
<item name="android:windowBackground">@color/colorText</item>
<item name="android:textColor">@color/colorPrimaryDark</item>
<item name="android:windowNoTitle">true</item>
<item name="android:windowIsFloating">false</item>
<item name="borderlessButtonStyle">@style/Widget.AppCompat.Button.Borderless.Colored</item>
</style>
预览屏幕截图: