如何在黑莓中显示AM / PM格式的DateField?

时间:2009-10-30 08:52:43

标签: user-interface datetime blackberry time datetime-format

我不知道如何使用blackberry datefield在黑莓中以AM / PM格式显示时间。请告诉我如何做到这一点。

1 个答案:

答案 0 :(得分:1)

使用SimpleDateFormat

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