This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /** | |
| * @author Pratik Butani | |
| * | |
| * Main file for Date Picker. | |
| */ | |
| public class DatePickerUniversal implements View.OnFocusChangeListener, DatePickerDialog.OnDateSetListener, View.OnClickListener { | |
| private EditText mEditText; | |
| private Calendar mCalendar; | |
| private SimpleDateFormat mFormat; |