alhazmy13 / HijriDatePicker

Material (Gregorian - Hijri) Date & Time Picker
alhazmy13.net
Apache License 2.0
143 stars 63 forks source link

Save value to preference #21

Closed creativetrendsapps closed 7 years ago

creativetrendsapps commented 7 years ago

With this library how would I go about putting the selected time value within my preferences? Like the AM value and PM value?

alhazmy13 commented 7 years ago

Hi @creativetrendsapps

Each dialog has an own listener, you can read the values from it, for example, the date dialog it will back to you these values (year, month, day) or for the time dialog (hour, minute and second).

You can save it to your preface like any normal value.

pre.putInt("hour",hour);

At any time you can read the values from shared preference and pass it to your dialog instance.