小编典典

在 Android 应用程序中显示当前时间和日期

all

如何在 Android 应用程序中显示当前日期和时间?


阅读 89

收藏
2022-06-27

共1个答案

小编典典

好的,并不难,因为有几种方法可以做到这一点。我假设您想将当前日期和时间放入TextView.

String currentDateTimeString = java.text.DateFormat.getDateTimeInstance().format(new Date());

// textView is the TextView view that should display it
textView.setText(currentDateTimeString);

可在此处轻松找到的文档中有更多内容可供阅读
。在那里,您将找到有关如何更改用于转换的格式的更多信息。

2022-06-27