DatePicker crashes on my device when clicked (with personal app)

前端 未结 7 2022
长发绾君心
长发绾君心 2020-12-12 13:46

Edit : I checked that the issue only appears when the phone is set with \"French\" language.

I\'m currently building my own app and I have an issue

7条回答
  •  遥遥无期
    2020-12-12 14:21

    this also happens when you programatically define a min date further than the max date

    datePicker.getDatePicker().setMaxDate(15000000);
    
    datePicker.getDatePicker().setMinDate(16000000);
    

提交回复
热议问题