CalendarView today date item click

前端 未结 8 1242
爱一瞬间的悲伤
爱一瞬间的悲伤 2021-01-18 10:49

I searched a lot on the internet and I couldn\'t succeed to find correct solution for CalendarView click on today date.

8条回答
  •  失恋的感觉
    2021-01-18 10:51

    setOnDateChangeListener will not fire, but OnGlobalLayoutListener will. So if you try:

    calendarView.getViewTreeObserver().addOnGlobalLayoutListener(new ViewTreeObserver.OnGlobalLayoutListener(){
        @Override
        public void onGlobalLayout(){
        }
    });
    

提交回复
热议问题