You can set your own values ββfor the second set of numbers (select the number of minutes) with a call to setDisplayedValues . However, first you need to find the NumberPicker .
Android Device Monitor has a nice ability to capture the device screen and individual views, so you can find the identifier (or path) to your desired view:

Since your new array of values ββcontains 6 values ββ(0 ... 5), you will need to convert the current minutes to tens so that you do not go out of range.
Here is a complete example:
@Override public Dialog onCreateDialog(Bundle savedInstanceState) { final Calendar c = Calendar.getInstance(); int hour = c.get(Calendar.HOUR_OF_DAY); // Convert current minutes to tens // 55 = 50, 56 = 00 int minute = c.get(Calendar.MINUTE) / 10; minute = (minute > 5) ? 0 : minute; // Create a new instance of TimePickerDialog and return it final TimePickerDialog tpd = new TimePickerDialog(getActivity(), this, hour, minute, DateFormat.is24HourFormat(getActivity())); tpd.setOnShowListener(new DialogInterface.OnShowListener() { @Override public void onShow(DialogInterface dialog) { int tpLayoutId = getResources().getIdentifier("timePickerLayout", "id", "android"); ViewGroup tpLayout = (ViewGroup) tpd.findViewById(tpLayoutId); ViewGroup layout = (ViewGroup) tpLayout.getChildAt(0); // Customize minute NumberPicker NumberPicker minutePicker = (NumberPicker) layout.getChildAt(2); minutePicker.setDisplayedValues(new String[]{"00", "10", "20", "30", "40", "50"}); minutePicker.setMinValue(0); minutePicker.setMaxValue(5); } }); return tpd; } public void onTimeSet(TimePicker view, int hourOfDay, int minute) { minute = minute * 10; Toast.makeText(getActivity(), "Selected minute: " + minute, Toast.LENGTH_LONG).show(); }
Edit:
When using the AppCompat theme, a circular slider is displayed in the dialog box that cannot be described. However, you can tell the dialog to use a newer theme (which will not be a problem because your minSdk is 15):
final TimePickerDialog tpd = new TimePickerDialog(getActivity(), android.R.style.Theme_Holo_Light_Dialog, this, hour, minute, DateFormat.is24HourFormat(getActivity()));