How to create a custom calendar in LWUIT?

Currently in LWUIT I can use Calendar. But I can not add notes to specific dates.

How to create custom Calendarin LWUIT? Because I need to show birthday notes on LWUIT Calendarand want to show birthday notes when the user selects these specific dates. See This Sample Image,

enter image description here

Is it possible to create the same example Calendarin LWUIT?

+5
source share
2 answers

You can get the Calendar and override:

protected void updateButtonDayDate(Button dayButton, int currentMonth, int day);

Here you can effectively configure the button in any way you choose, starting with setting a UIID or something like that.

, :

protected Button createDay();
+4

/, , ..

enter image description here

.

,

0

All Articles