Welcome Learner today in this blog post. I will be showing how to Build a simple android time picker dialog in phone by the help of a library code.
Include the Library
implementation 'com.jzxiang.pickerview:TimePickerDialog:1.0.1'
Configuration Code below
mDialogAll = new TimePickerDialog.Builder()
.setCallBack(this)
.setCancelStringId("Cancel")
.setSureStringId("Sure")
.setTitleStringId("TimePicker")
.setYearText("Year")
.setMonthText("Month")
.setDayText("Day")
.setHourText("Hour")
.setMinuteText("Minute")
.setCyclic(false)
.setMinMillseconds(System.currentTimeMillis())
.setMaxMillseconds(System.currentTimeMillis() + tenYears)
.setCurrentMillseconds(System.currentTimeMillis())
.setThemeColor(getResources().getColor(R.color.timepicker_dialog_bg))
.setType(Type.ALL)
.setWheelItemTextNormalColor(getResources().getColor(R.color.timetimepicker_default_text_color))
.setWheelItemTextSelectorColor(getResources().getColor(R.color.timepicker_toolbar_bg))
.setWheelItemTextSize(12)
.build();