Android - Hide date field in datepickerdialog
How to hide/remove date field in datepickerdialog. Actually my requirement is to use the native date picker dialog but it shows up with day, month, and year. But as per my requirement i need only month and year. So i want to hide or remove the day field from the view. Any help will be much usefull. Private DatePickerDialog createDialogWithoutDateField(){ DatePickerDialog dpd = new DatePickerDialog(_activity, ExpiryDateSetListener,cyear,cmonth, cday); try{ Field[] datePickerDialogFields = dpd.getClass().getDeclaredFields(); for (Field datePickerDialogField : datePickerDialogFields) { if