keyrunHORNET / date_picker_converter

Nepali Date Picker with Date conversion from BS to AD and vice-versa

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

both nepali and english date picker

sabpou opened this issue · comments

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

use default android english date picker for that:

android.app.DatePickerDialog

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

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);

similarly implement their interfaces as well

thank, will try that