BottomSheetPickers
Third-party date and time pickers for Android.
Install / Use
/learn @philliphsu/BottomSheetPickersREADME
BottomSheetPickers
BottomSheetPickers is a library of new date and time pickers for Android, supporting API level 14 and up.
Date Picker
<img src="screenshots/paging-date-picker-light.png" width="180" height="320"> <img src="screenshots/month-picker-light.png" width="180" height="320"> <img src="screenshots/year-picker-light.png" width="180" height="320">
<img src="screenshots/paging-date-picker-dark.png" width="180" height="320"> <img src="screenshots/month-picker-dark.png" width="180" height="320"> <img src="screenshots/year-picker-dark.png" width="180" height="320">
Time Pickers
Number Pad
<img src="screenshots/number-pad-12h-light.png" width="180" height="320"> <img src="screenshots/number-pad-24h-light.png" width="180" height="320"> <img src="screenshots/number-pad-12h-dark.png" width="180" height="320"> <img src="screenshots/number-pad-24h-dark.png" width="180" height="320">
Grid Picker
<img src="screenshots/12h-grid-light.png" width="180" height="320"> <img src="screenshots/minutes-grid-light.png" width="180" height="320"> <img src="screenshots/24h-grid-light.png" width="180" height="320">
<img src="screenshots/12h-grid-dark.png" width="180" height="320"> <img src="screenshots/minutes-grid-dark.png" width="180" height="320"> <img src="screenshots/24h-grid-dark.png" width="180" height="320">
Table of Contents
Installation
This library depends on the appcompat-v7, design, and gridlayout-v7 support libraries.
It is recommended that you exclude them from the library and add those dependencies on your own.
This will ensure both your project and this library are using the same versions of the support
libraries.
dependencies {
// Recommended
compile('com.philliphsu:bottomsheetpickers:2.4.1') {
exclude group: 'com.android.support', module: 'appcompat-v7'
exclude group: 'com.android.support', module: 'design'
exclude group: 'com.android.support', module: 'gridlayout-v7'
}
compile 'com.android.support:appcompat-v7:[LATEST_VERSION]'
compile 'com.android.support:design:[LATEST_VERSION]'
compile 'com.android.support:gridlayout-v7:[LATEST_VERSION]'
// Standard -- not recommended!
compile 'com.philliphsu:bottomsheetpickers:2.4.1'
}
Usage
You must be using a android.support.v4.app.FragmentActivity or android.support.v4.app.Fragment.
The pickers are indirect subclasses of android.support.v4.app.DialogFragment.
Implement Callbacks
To retrieve the date or time set in the pickers, implement an appropriate callback interface.
com.philliphsu.bottomsheetpickers.date.DatePickerDialog.OnDateSetListenerBottomSheetTimePickerDialog.OnTimeSetListener
@Override
public void onDateSet(DatePickerDialog dialog, int year, int monthOfYear, int dayOfMonth) {
Calendar cal = new java.util.GregorianCalendar();
cal.set(Calendar.YEAR, year);
cal.set(Calendar.MONTH, monthOfYear);
cal.set(Calendar.DAY_OF_MONTH, dayOfMonth);
mText.setText("Date set: " + DateFormat.getDateFormat(this).format(cal.getTime()));
}
@Override
public void onTimeSet(ViewGroup viewGroup, int hourOfDay, int minute) {
Calendar cal = new java.util.GregorianCalendar();
cal.set(Calendar.HOUR_OF_DAY, hourOfDay);
cal.set(Calendar.MINUTE, minute);
mText.setText("Time set: " + DateFormat.getTimeFormat(this).format(cal.getTime()));
}
Create Pickers
Calendar now = Calendar.getInstance();
// As of version 2.3.0, `BottomSheetDatePickerDialog` is deprecated.
DatePickerDialog date = DatePickerDialog.newInstance(
MainActivity.this,
now.get(Calendar.YEAR),
now.get(Calendar.MONTH),
now.get(Calendar.DAY_OF_MONTH));
// Configured according to the system preference for 24-hour time.
NumberPadTimePickerDialog pad = NumberPadTimePickerDialog.newInstance(MainActivity.this);
// Alternatively, you can set 24-hour mode on your own.
boolean is24HourMode = ...
NumberPadTimePickerDialog pad = NumberPadTimePickerDialog.newInstance(MainActivity.this, is24HourMode);
GridTimePickerDialog grid = GridTimePickerDialog.newInstance(
MainActivity.this,
now.get(Calendar.HOUR_OF_DAY),
now.get(Calendar.MINUTE),
DateFormat.is24HourFormat(MainActivity.this));
As of version 2.3.0, you have the option to create pickers using the Builder pattern.
This is helpful if you want to chain together additional options
before creating the dialog. Of course, you can continue creating a dialog with
newInstance() as usual, and then just call setters on the dialog itself.
DatePickerDialog date = new DatePickerDialog.Builder(
MainActivity.this,
now.get(Calendar.YEAR),
now.get(Calendar.MONTH),
now.get(Calendar.DAY_OF_MONTH))
/* ... Set additional options ... */
.build();
// Configured according to the system preference for 24-hour time.
NumberPadTimePickerDialog pad = new NumberPadTimePickerDialog.Builder(MainActivity.this)
/* ... Set additional options ... */
.build();
// Alternatively, you can set 24-hour mode on your own.
NumberPadTimePickerDialog pad = new NumberPadTimePickerDialog.Builder(MainActivity.this, is24HourMode)
/* ... Set additional options ... */
.build();
GridTimePickerDialog grid = new GridTimePickerDialog.Builder(
MainActivity.this,
now.get(Calendar.HOUR_OF_DAY),
now.get(Calendar.MINUTE),
DateFormat.is24HourFormat(MainActivity.this))
/* ... Set additional options ... */
.build();
Show the Dialog
Pass in a android.support.v4.app.FragmentManager to the dialog's show().
// For a `android.support.v4.app.FragmentActivity`:
dialog.show(getSupportFragmentManager(), TAG);
// For a `android.support.v4.app.Fragment`:
dialog.show(getFragmentManager(), TAG);
Theming
The pickers automatically use your current theme's colorAccent defined in your styles.xml.
You can specify whether to use a light (default) or dark theme:
- in
styles.xmlby specifying a boolean value for the attributethemeDarkin your theme.
<item name="themeDark">true</item>
- in code with the dialog's
setThemeDark(boolean dark)method. This overwrites the value specified in XML.
Additional Options
These additional APIs can be used to customize the appearance of the picker. They are
available both as setter methods and as Builder options, unless otherwise noted.
Basic Options
These APIs are available in all pickers.
-
setThemeDark(boolean dark)Set a dark or light theme. -
setAccentColor(@ColorInt int color)Set the accent color. This color is primarily used to tint views in the picker. If this picker is using the light theme and you did not callsetHeaderColor(int), this color will also be applied to the dialog's header. -
setBackgroundColor(@ColorInt int color)Set the background color. If this color is dark, consider setting the theme dark to ensure text in the picker has enough contrast. -
setHeaderColor(@ColorInt int color)Set the header color. If this color is light, consider setting the header text dark to ensure it has enough contrast. -
setHeaderTextDark(boolean dark)Set the header text to use a light or dark color. The default is false, so a light color is applied.
DatePickerDialog and DatePickerDialog.Builder
-
setFirstDayOfWeek(int startOfWeek)Use this to set the day (Calendar.SUNDAYthroughCalendar.SATURDAY) that a week should start on. -
setYearRange(int startYear, int endYear)Sets the range of years to be displayed by this date picker. If a minimal date and/or maximal date were set usingsetMinDate(Calendar)orsetMaxDate(Calendar), dates in the specified range of years that lie outside of the minimal and maximal dates will be disallowed from being selected. This does NOT change the minimal date's year or the maximal date's year. -
setMinDate(Calendar calendar)Sets the minimal date that can be selected in this date picker. Dates before (but not including) the specified date will be disallowed from being selected. -
setMaxDate(Calendar calendar)Sets the maximal date that can be selected in this date picker. Dates after (but not including) the specified date will be disallowed from being selected. -
setHeaderTextColorSelected(@ColorInt int color)Set the color of the header text when it is selected. -
setHeaderTextColorUnselected(@ColorInt int color)Set the color of the header text when it is not selected. -
setDayOfWeekHeaderTextColorSelected(@ColorInt int color)Set the color of the day-of-week header text when it is selected. -
setDayOfWeekHeaderTextColorUnselected(@ColorInt int color)Set the color of the day-of-week header text when it is not selected.
NumberPadTimePickerDialog and NumberPadTimePickerDialog.Builder
setHeaderTextColor(@ColorInt int color)Set the color of the header text that stores the inputted time.
GridTimePickerDialog and GridTimePickerDialog.Builder
- `setHeaderTextColorSelected(@ColorInt int col
Related Skills
diffs
344.4kUse the diffs tool to produce real, shareable diffs (viewer URL, file artifact, or both) instead of manual edit summaries.
clearshot
Structured screenshot analysis for UI implementation and critique. Analyzes every UI screenshot with a 5×5 spatial grid, full element inventory, and design system extraction — facts and taste together, every time. Escalates to full implementation blueprint when building. Trigger on any digital interface image file (png, jpg, gif, webp — websites, apps, dashboards, mockups, wireframes) or commands like 'analyse this screenshot,' 'rebuild this,' 'match this design,' 'clone this.' Skip for non-UI images (photos, memes, charts) unless the user explicitly wants to build a UI from them. Does NOT trigger on HTML source code, CSS, SVGs, or any code pasted as text.
openpencil
2.0kThe world's first open-source AI-native vector design tool and the first to feature concurrent Agent Teams. Design-as-Code. Turn prompts into UI directly on the live canvas. A modern alternative to Pencil.
ui-ux-pro-max-skill
56.5kAn AI SKILL that provide design intelligence for building professional UI/UX multiple platforms
