我不知道如何使用blackberry datefield在黑莓中以AM / PM格式显示时间。请告诉我如何做到这一点。
答案 0 :(得分:1)
SimpleDateFormat timeFormat = new SimpleDateFormat("HH:mm:ss aa");
long date = System.currentTimeMillis();
DateField dateField = new DateField("time:", date, timeFormat);
add(dateField);
alt text http://img171.imageshack.us/img171/7642/timeformat.jpg