日期选择器UI随机中断

时间:2016-08-16 08:09:19

标签: android android-layout android-styles datepickerdialog

我在使用自定义样式的对话框中打开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>

的活动:

Activity screenshot

dateDialog = new DatePickerDialog(
    currentCtx,
    R.style.datepicker,
    dateSetListener,
    jsonDate.year,
    jsonDate.month,
    jsonDate.day
);

0 个答案:

没有答案