本文介绍了你如何格式化日期和时间的Andr​​oid?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

你如何根据设备配置的日期和时间正确地格式化为年,月,日,小时和分钟的时候?

How do you format correctly according to the device configuration a date and time when having year, month, day, hour and minute?

推荐答案

使用标准的Java DateFormat类。

Use the standard Java DateFormat class.

例如,显示当前的日期和时间,请执行以下操作:

For example to display the current date and time do the following:

Date date = new Date(location.getTime());
DateFormat dateFormat = android.text.format.DateFormat.getDateFormat(getApplicationContext());
mTimeText.setText("Time: " + dateFormat.format(date));

您可以初始化一个Date对象与自己的价值观,但你应该知道,构造函数已经去precated,你真的应该使用Java日历对象。

You can initialise a Date object with your own values, however you should be aware that the constructors have been deprecated and you should really be using a Java Calendar object.

这篇关于你如何格式化日期和时间的Andr​​oid?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-09 10:20