Skip to content

Instantly share code, notes, and snippets.

@codenameone
Created February 15, 2016 06:35
Show Gist options
  • Save codenameone/8f520493f7681b5d16a3 to your computer and use it in GitHub Desktop.
Save codenameone/8f520493f7681b5d16a3 to your computer and use it in GitHub Desktop.
Sample usage of the Calendar class in Codename One
Form hi = new Form("Calendar", new BorderLayout());
Calendar cld = new Calendar();
cld.addActionListener((e) -> Log.p("You picked: " + new Date(cld.getSelectedDay())));
hi.add(BorderLayout.CENTER, cld);
@codenameone
Copy link
Author

Sample usage of Calendar.

From the Codename One project

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment