How can I simply get time, set by the user on time picker widget in android ?
Like this.
timepicker.gettime();
Try it like below.
For picking hour you can use
timePicker.getCurrentHour();
and for picking minutes you can use
timePicker.getCurrentMinute();
and then you can set this hour and minute to any Integer variable. Like
int hour = timePicker.getCurrentHour();
int minute = timePicker.getCurrentMinute();
for more information you can refer to this link