天下之事常成于困约,而败于奢靡。这篇文章主要讲述Android 获取系统时间以及实时刷新时间相关的知识,希望能为你提供帮助。
- 使用date获取系统时间:
private SimpleDateFormat simpleDateFormat; private Date date; //onCreate中 simpleDateFormat = new SimpleDateFormat("yyyy-MM-ddHH:mm"); date = new Date(System.currentTimeMillis()); //获取系统时间 currentTimeText.setValue(simpleDateFormat.format(date));
【Android 获取系统时间以及实时刷新时间】Date方法比较简单,只需要一条语句:Date().toLocaleString(),就可以获得整个的时间信息,并且格式规范,不用再组装,可以直接显示。缺点是如果想用另外一种格式显示,或者只需要单个的时间信息,就比较麻烦。可以定义SimpleDateFormat,规定哪些信息显示,哪些信息不显示,如显示年、月、日、小时、分钟、星期几
在开发过程中,通常很多人都习惯使用new Date()来获取当前时间。new Date()所做的事情其实就是调用了System.currentTimeMillis()。如果仅仅是需要获得毫秒数,那么完全可以使用System.currentTimeMillis()去代替new Date(),效率上会高一点。
Date date = new Date(); String time = date.toLocaleString(); Log.i("md", "时间time为: "+time); SimpleDateFormat dateFormat = new SimpleDateFormat("yyyy年-MM月dd日-HH时mm分ss秒 E"); String sim = dateFormat.format(date); Log.i("md", "时间sim为: "+sim);
01-01 03:31:31.458: I/md(18530): 时间time为: Jan 1, 2015 3:31:31 AM
01-01 03:31:31.459: I/md(18530): 时间sim为: 2015年-01月01日-03时31分31秒 Thu
— — — — — — — — — — — — — — — —
版权声明:本文为CSDN博主「Vindent-C」的原创文章,遵循CC 4.0 BY-SA版权协议,转载请附上原文出处链接及本声明。
原文链接:https://blog.csdn.net/qq_41508747/article/details/89511064
- 实时刷新时间,通过系统广播实现
Intent.ACTION_TIME_TICK
//onCreateView中 IntentFilter filter=new IntentFilter(); //创建意图过滤器对象 filter.addAction(Intent.ACTION_TIME_TICK); //为接收器指定action,使之用于接收同action的广播 view.getContext().registerReceiver(receiver,filter); //动态注册广播接收器 //view.getContext是一个fragment中的contextprivate final BroadcastReceiver receiver = new BroadcastReceiver() { @Override public void onReceive(Context context, Intent intent) { String action = intent.getAction(); if (action.equals(Intent.ACTION_TIME_TICK)) { //TODO更新时间 } } };
android.intent.action.TIME_TICK是一个受保护的Intent,只能被系统发出。它不能通过在AndroidManifest.xml文件中注册(静态注册)来接收广播,只能通过Context.registerReceiver()在代码中动态注册。
为提高安卓系统的安全性,从9.0开始,系统全面禁止静态注册的广播,凡是静态广播在9.0系统中都不再有效,因此为了适配Android 9.0,静态注册的广播都 要换成在代码里声明的动态广播
参考:
https://blog.csdn.net/qq_41508747/article/details/89511064 Android开发中获取系统时间的几种种方式 by Vindent-C
https://blog.csdn.net/u011397174/article/details/18354523 android.intent.action.TIME_TICK by arieluc
移动开发丛书· Android Studio开发实战:从零基础到App上线 欧阳燊著
推荐阅读
- android 虚拟机(avd) 运行过程中死机
- Android 性能优化 ---- 启动优化
- 手把手教你接入华为分析的Android SDK
- 如何用HMS Nearby Service给自己的App添加近距离数据传输功能
- ApplicationContext 接口的实现类
- Android 刷机遇到getvar:all FAILED (remote: 'unknown command')
- vue : 无法加载文件 C:Users1111111AppDataRoamingpmvue.ps1 解决方法
- uni-app平台判断 | uni app判断h5 小程序 app 等不同平台
- 鑷姩鐢熸垚entry-mapper-service-controller