We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
See following test case:
try { Form hi = new Form("Picker", BoxLayout.y()); Picker p = new Picker(); p.setType(Display.PICKER_TYPE_DATE); SimpleDateFormat simpleDateFormat = new SimpleDateFormat("dd/MM/yyyy"); Date d = simpleDateFormat.parse("01/01/1960"); Log.p("Date is: " + d); p.setStartDate(d); hi.add(p); hi.show(); } catch (ParseException e) { throw new RuntimeException(e); }
It correctly prints: [EDT] 0:0:0,102 - Date is: Fri Jan 01 04:00:00 IST 1960
Despite setting the picker to 1960 the picker shows 1970 as the start date.
The text was updated successfully, but these errors were encountered:
shannah
Successfully merging a pull request may close this issue.
See following test case:
It correctly prints:
[EDT] 0:0:0,102 - Date is: Fri Jan 01 04:00:00 IST 1960
Despite setting the picker to 1960 the picker shows 1970 as the start date.
The text was updated successfully, but these errors were encountered: