Android实现显示系统实时时间
短信预约 -IT技能 免费直播动态提醒
Android显示系统实时时间的具体代码,供大家参考,具体内容如下
获取系统当前时间 System.currentTimeMillis(); 需要开启一个线程,我们通过Handler来实现实时更新时间
效果图
Activity.xml代码
<TextView
android:id="@+id/real_time"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="-- --"
/>
MainActivity代码
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
real_time=findViewById(R.id.real_time);
Startthread();
}
//开启一个子线程
private void Startthread(){
new Thread(){
@Override
public void run() {
do {
try {
Thread.sleep(1000);
Message message=new Message();
message.what=1;
handler.sendMessage(message);
} catch (InterruptedException e) {
e.printStackTrace();
}
}while (true);
}
}.start();
}
//在主线程中进行数据处理
private Handler handler=new Handler(){
@Override
public void handleMessage(@NonNull Message msg) {
switch (msg.what){
case 1:
long time = System.currentTimeMillis();
CharSequence format = DateFormat.format("hh:mm:ss yyyy-MM-dd", time);
real_time.setText(format);
break;
}
}
};
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持编程网。
免责声明:
① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。
② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341