如何禁用当前日期之后的日期?

Posted

技术标签:

【中文标题】如何禁用当前日期之后的日期?【英文标题】:How to disable the dates after current date? 【发布时间】:2019-04-27 20:47:47 【问题描述】:

帮助在日期选择器中禁用从当前日期开始的所有日期。 这是我的代码:

public class MyDatePickerDialogue extends DatePickerDialog
    private CharSequence title;
    private Context context;

    public MyDatePickerDialogue(Context context, OnDateSetListener callBack, int year, int monthOfYear, int dayOfMonth) 

        super(context, callBack, year, monthOfYear, dayOfMonth);
        this.context = context;
    

    public void setPermanentTitle(CharSequence title) 
        this.title = title;
        setTitle(title);
    

    @Override
    public void onDateChanged(DatePicker view, int year, int month, int day) 
        super.onDateChanged(view, year, month, day);
        setTitle(title);
        Toast.makeText( context,"Date picked", Toast.LENGTH_SHORT).show();
        SingletonClass.getSingletonClass().singletondate = year+"-"+(month+1)+"-"+day;
        //save the date that is picked into the singleton class
        //i represents year , i1 represents month and i2  represents day

        context.startActivity(new Intent(context,DescriptionActivity.class));

    

【问题讨论】:

How to Disable future dates in android date picker的可能重复 【参考方案1】:

您可以为 DatePicker 视图设置 maxDate

    Date today = new Date();
    Calendar c = Calendar.getInstance(TimeZone.getDefault());
    c.setTime(today);
    maxDate = c.getTime().getTime();
    view.setMaxDate(maxDate);

【讨论】:

如果您认为这是正确答案,请在@Adil Sajjad Abbasi 上将其标记为正确

以上是关于如何禁用当前日期之后的日期?的主要内容,如果未能解决你的问题,请参考以下文章

在 antd 日期选择器中禁用当前日期之前和当前日期 1 个月之后的日期

如何在AngularJS中使用pickaday指令禁用当前和未来日期

如何在日历中禁用回溯日期

如何按当前日期之后的日期过滤?

如何在 JQuery Datepicker 中禁用以前的日期

element禁用当前系统日期之前,为什么不生效