模拟器的右上角显示时间。如何访问Android模拟器中显示的时间?
答案 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);
结果: