-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathREADME
executable file
·30 lines (16 loc) · 972 Bytes
/
README
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
DualDatePickerDialog
can select a date from one of two calendars.
In many countries optional calendar
is used together with main calendar. For example in Korea, Gregorian calendar
is used mainly but Korean lunisolar calendar is also used for various traditional
events.
DualDatePickerDialog lets the caller to select a date from one of two calendars
by showing them altogether.
User can switch two calendars using UI elements (which will be changed to improve
usability).
DualDatePickerDialog uses CalendarDatePicker which is not Android standard DatePicker widget.
CalendarDatePicker
similar to android's DatePicker widget, but works with Calendar instance.
Android's DatePicker widget works well with GregorianCalendar, but doens't support
non-Gregorian calendar. CalendarDatePicker works with any Calendar-subclassing instances.
This package provides a KoreanLunisolarCalendar class to support Korean lunisolar calendar.