You set the wrong values.
Instead of:
dateofbirthView.init(Integer.parseInt(date[2]), Integer.parseInt(date
[1]), Integer.parseInt(date[0]), null);

You must set:
dateofbirthView.init(Integer.parseInt(date[2]), Integer.parseInt(date
[0]), Integer.parseInt(date[1]), null);

First parameter is "year", second is "monthOfYear" and third is
"dayOfMonth".
But you set "year", "dayOfMonth" and "monthOfYear".

--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---

Reply via email to