Date Time Range Picker for Android by android-times-square added some improvement
- Added dropdown for year selection and synced with calendar to update its view
- Updated range selection view along with some other screen enhancements
- Added EditTextFields to display the start and end date and made it editable to sync with calendar and dropdown view
- Fixed previous UI issues
- Code for EditTextFields is currently not public as I used custom EditTextFields. Inbox me if anyone wants to access the code.
Standalone Android widget for picking a single date from a calendar view.
Add it in your root build.gradle at the end of repositories:
allprojects {
repositories {
...
maven { url 'https://jitpack.io' }
}
}
Add the dependency:
dependencies {
implementation "com.github.arsalyou:date-time-range-picker-android:${version}"
}
Include CalendarPickerView
in your layout XML.
<com.arsalyou.datetimerangepickerandroid.CalendarPickerView
android:id="@+id/calendar_view"
android:layout_width="match_parent"
android:layout_height="match_parent"
/>
Default implementation to show Calendar
calendar.init(today, nextYear.getTime())
.inMode(RANGE);
To show the Calendar
Calendar nextYear = Calendar.getInstance();
nextYear.add(Calendar.YEAR, 1);
CalendarPickerView calendar = (CalendarPickerView) findViewById(R.id.calendar_view);
Date today = new Date();
calendar.init(today, nextYear.getTime())
.withSelectedDate(today);
No configuration needed.