其他分享
首页 > 其他分享> > 从Android中的DatePickerDialog中删除标题

从Android中的DatePickerDialog中删除标题

作者:互联网

我想将DatePickerDialog限制为明天的最小值.当我把下面显示的代码放入时,限制就有效了.但是,包含日期的标题文本显示为标题.我怎样才能解决这个问题?

这是我的代码:

 Calendar tempDate = Calendar.getInstance();
 tempDate.add(Calendar.DAY_OF_MONTH, 1);
 toDatePickerDialog.getDatePicker().setMinDate(tempDate.getTimeInMillis());

和图像:

a DatePickerDialog showing a title jue, 29 de dec. de 2016

解决方法:

您可以手动将标题设置为空字符串,也可以请求对话框没有标题.

前方法:

toDatePickerDialog.setTitle("");

后期方法:

toDatePickerDialog.requestWindowFeature(Window.FEATURE_NO_TITLE);

在调用toDatePickerDialog.show()之前,请确保执行上述任一操作

标签:android-datepicker,android
来源: https://codeday.me/bug/20190823/1701911.html