如何在Android模拟器中显示时间?

时间:2014-03-03 08:44:21

标签: android time emulation

模拟器的右上角显示时间。如何访问Android模拟器中显示的时间?

1 个答案:

答案 0 :(得分:1)

它与整个操作系统本身使用的时间相同。有很多方法可以得到它。这里有几个:

Date date=new Date();
Calendar calendar=GregorianCalendar.getInstance();
long unixTime=System.currentTimeMillis();

为了很好地展示它,你可以使用类似的东西:

DateFormat timeFormat = android.text.format.DateFormat.getTimeFormat(getApplicationContext());
String formattedTime=timeFormat.format(date);
android.util.Log.d("AppLog", "" + formattedTime);

结果: enter image description here