keyrunHORNET / date_picker_converter

Nepali Date Picker with Date conversion from BS to AD and vice-versa
Apache License 2.0
36 stars 23 forks source link

both nepali and english date picker #3

Closed sabpou closed 6 years ago

sabpou commented 6 years ago

hi, if i want to display both nepali and english date picker, how can i display english date picker with importing ur library?

keyrunHORNET commented 6 years ago

use default android english date picker for that:

android.app.DatePickerDialog

sabpou commented 6 years ago

well, there is conflict in the same page if default android datepicker is imported, what would be solution

keyrunHORNET commented 6 years ago

use proper package reference in every instance

FOR NEPALI

com.hornet.dateconverter.DatePicker.DatePickerDialog nepaliDatePicker=new com.hornet.dateconverter.DatePicker.DatePickerDialog();

FOR ENGLISH

android.app.DatePickerDialog englishDatePicker=new android.app.DatePickerDialog(this);

keyrunHORNET commented 6 years ago

similarly implement their interfaces as well

sabpou commented 6 years ago

thank, will try that