This has problem has been mentioned before but for anyone that
encounters a problem with the DatePicker refusing to select years
earlier than 2000, the following snippet of layout solved my problem.

<DatePicker
        android:id="@+id/startdate_picker"
         android:layout_width="wrap_content"
         android:layout_gravity="center_horizontal"
         android:textColor="#FFFF8C00"
         android:startYear="1900"
         android:endYear="2100"
         android:layout_height="wrap_content"></DatePicker>

Adding startYear and endYear fixed this problem for me.  This is a
very sporadic and rare issue and seems to happen almost exclusively on
Samsung phones for some reason.

Hope this helps someone else.

Garnet Ulrich

-- 
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

To unsubscribe from this group, send email to 
android-developers+unsubscribegooglegroups.com or reply to this email with the 
words "REMOVE ME" as the subject.

Reply via email to