I use a DatePicker within my Android Activity. I only have the need to display the year to the user. I use
private void findAndHideField(DatePicker datepicker, String name) {
try {
Field field = DatePicker.class.getDeclaredField(name);
field.setAccessible(true);
View fieldInstance = (View) field.get(datepicker);
fieldInstance.setVisibility(View.GONE);
} catch (Exception e) {
e.printStackTrace();
}
}
and then
findAndHideField(startDatePicker, "mDayPicker");
findAndHideField(startDatePicker, "mMonthPicker");
findAndHideField(startDatePicker, "mDaySpinner");
findAndHideField(startDatePicker, "mMonthSpinner");
The code works fine on 2.3.x but on 4.1.x phone this just displays a full calender. What can i do to make only the year dial visible ?
NumberPicker? Here is a backport that should work going back to Android 2.1: github.com/SimonVT/android-numberpicker – CommonsWare Dec 15 '12 at 23:24NumberPickerwould be "styled like the number picker". "plus am not a big fan of including libraries" -- it is a good thing that you do not work for me, as you would be out of a job. I would fire anyone who proposed script-kiddie hacking into private fields just because they do not want to add an open source library to their project. As you are discovering, your preferred technique breaks on various devices and OS versions. – CommonsWare Dec 15 '12 at 23:36