CalendarView minimum date

前端 未结 3 1304
渐次进展
渐次进展 2020-12-22 07:35

I created a CalendarView and I don\'t want to show previous months.

I tried this:

Calendar calendar = Calendar.getInstance();
int date = calendar.get         


        
3条回答
  •  长情又很酷
    2020-12-22 08:09

    You can just set the min date as below.

     Calendar c = Calendar.getInstance();
     CalendarView cv = (CalendarView)findViewById(R.id.calendarView);
     cv.setMinDate(c.getTimeInMillis());
    

提交回复
热议问题