我只希望日期显示如下:
Saturday, May 26, 2012 at 10:42 PM
到目前为止,这是我的代码:
Calendar calendar = Calendar.getInstance();
String theDate = calendar.get(Calendar.MONTH) + " " + calendar.get(Calendar.DAY_OF_MONTH) + " " + calendar.get(Calendar.YEAR);
lastclick.setText(getString(R.string.lastclick) + " " + theDate);
这显示了月、日和年的数字,但是必须有更好的方法来做到这一点?是不是有一些简单的方法可以做到这一点,比如使用 PHP 的date()
函数?