I am trying to display a calendar in my view layout using the CalendarView and highlight/put markers on certain event dates(as per user input) which I can then click for details on that event. I don't want to redirect to a different online calendar... rather, I just need to use a built in offline one.
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
First of all, after putting the CalendarView in the XML file, you need to announce it in the code when ever you might use it, for example in the MainActivity Class:
Is thsthelpfull to you? |
|||||
|
|
Its little bit tricky.You can create your own calender view by drawing a gridView on a dialoge or a gridview on a layout (according to your requirement) and render all the dates on the that grid.You need to manually handle start date logic.i.e. from which item of the grid to start showing you date.an on that grid you can draw your marker easily. |
|||
|
|