Reputation: 923
I want this type of time picker in my app but the default one in my device is
But I want This
I got some source code but not filling my need
case REQUEST_TIMEI1:
return new TimePickerDialog(this,TimePickerDialog.THEME_HOLO_LIGHT ,mTimeSetListener1, hour, minute, true);
Upvotes: 1
Views: 1910
Reputation: 3561
simply put these lines in your build.gradle file
dependencies {
compile 'com.wdullaer:materialdatetimepicker:2.3.0'
}
and follow this link here. Still you face any problem feel free to ask
Update
You can also use this
compile 'com.code-troopers.betterpickers:library:3.1.0'
follow this link for further instruction
Some more to follow. It might be helpful for others
6. Android-MonthCalendarWidget
Upvotes: 2