我在使用自定义样式的对话框中打开Android日期选择器 此实现按预期工作,但有时会显示意外的UI。
以下是我的代码:
风格:
<style name="datepicker" parent="Theme.AppCompat.Light.Dialog">
<item name="colorPrimary">@color/header_color</item>
<item name="colorPrimaryDark">@color/header_color</item>
<item name="colorAccent">@color/header_color</item>
</style>
的活动:
dateDialog = new DatePickerDialog(
currentCtx,
R.style.datepicker,
dateSetListener,
jsonDate.year,
jsonDate.month,
jsonDate.day
);