如何在android中获取当前日期和时间,我们如何设置它 编辑框的日期和时间。
答案 0 :(得分:1)
您可以使用以下方式获取当前日期和时间:
Calendar cal=Calendar.getInstance();
现在只需在您的编辑框中显示:
editBox.setText(String.format("%1$te %1$tB %1$tY %1$r",cal));
这将为您提供日期和时间,如2009年1月12日下午10:34:50
要显示其他日期和时间格式,请参阅http://download.oracle.com/javase/1.5.0/docs/api/java/util/Formatter.html