Android - is there a way to fill a CalendarView before displaying it? -


i'm trying find way use calendarview in app, should have data preloaded before being displayed (some days have time slots busy, according user's info stored in db). best way it?

thanks in advance.

set view visible after operations.

calendarobect.setvisibility(view.invisible); //(do stuff) calendarobect.setvisibility(view.visible); 

Comments

Popular posts from this blog

android - How to save instance state of selected radiobutton on menu -

python 3 IndexError: list index out of range -

IF statement in MySQL trigger -