当前位置:  编程技术>移动开发

TextView显示系统时间(时钟功能带秒针变化

    来源: 互联网  发布时间:2014-10-22

    本文导语:  我们开启一个线程,线程每隔一秒发送一次消息,我们在消息中更新TextView上显示的时间就ok了。 首先我们在布局文件中放一个TextView用来显示时间,如下所示: 代码如下:  之后我们写一个线程,线程里面无限循环,每隔一...

我们开启一个线程,线程每隔一秒发送一次消息,我们在消息中更新TextView上显示的时间就ok了。

首先我们在布局文件中放一个TextView用来显示时间,如下所示:

代码如下:



 

之后我们写一个线程,线程里面无限循环,每隔一秒发送一个消息,其中由Handler来处理显示的结果:

代码如下:

public class TimeThread extends Thread {
        @Override
        public void run () {
            do {
                try {
                    Thread.sleep(1000);
                    Message msg = new Message();
                    msg.what = msgKey1;
                    mHandler.sendMessage(msg);
                }
                catch (InterruptedException e) {
                    e.printStackTrace();
                }
            } while(true);
        }
    }

private Handler mHandler = new Handler() {
        @Override
        public void handleMessage (Message msg) {
            super.handleMessage(msg);
            switch (msg.what) {
                case msgKey1:
                    long sysTime = System.currentTimeMillis();
                    CharSequence sysTimeStr = DateFormat.format("hh:mm:ss", sysTime);
                    mTime.setText(sysTimeStr);
                    break;

                default:
                    break;
            }
        }
    };

之后我们可以在Activity的onCreate方法中开启这个线程,这时我们可以看到一个数字时钟了:

代码如下:

public void onCreate(Bundle savedInstanceState) {
         super.onCreate(savedInstanceState);
         setContentView(R.layout.time);
         mTime = (TextView) findViewById(R.id.mytime);
         new TimeThread().start();
     }

整个Activity的代码:

代码如下:

package com.fermax.test;

import android.app.Activity;
import android.os.Bundle;
import android.os.Handler;
import android.os.Message;
import android.text.format.DateFormat;
import android.widget.TextView;

public class TestActivity extends Activity {

    private static final int msgKey1 = 1;
    private TextView mTime;

    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.time);
        mTime = (TextView) findViewById(R.id.mytime);
        new TimeThread().start();
    }

    public class TimeThread extends Thread {
        @Override
        public void run () {
            do {
                try {
                    Thread.sleep(1000);
                    Message msg = new Message();
                    msg.what = msgKey1;
                    mHandler.sendMessage(msg);
                }
                catch (InterruptedException e) {
                    e.printStackTrace();
                }
            } while(true);
        }
    }

    private Handler mHandler = new Handler() {
        @Override
        public void handleMessage (Message msg) {
            super.handleMessage(msg);
            switch (msg.what) {
                case msgKey1:
                    long sysTime = System.currentTimeMillis();
                    CharSequence sysTimeStr = DateFormat.format("hh:mm:ss", sysTime);
                    mTime.setText(sysTimeStr);
                    break;

                default:
                    break;
            }
        }
    };
}


    
 
 

您可能感兴趣的文章:

 
本站(WWW.)旨在分享和传播互联网科技相关的资讯和技术,将尽最大努力为读者提供更好的信息聚合和浏览方式。
本站(WWW.)站内文章除注明原创外,均为转载、整理或搜集自网络。欢迎任何形式的转载,转载请注明出处。












  • 相关文章推荐
  • android Textview文字监控(Textview使用方法)
  • Android控件之TextView的分析探究
  • android TextView不用ScrollViewe也可以滚动的方法
  • Android用户界面开发之:TextView的使用实例
  • GTK+如何获得TextView选中的文本
  • GTK textview 怎么设置背景图片?google 过了,没有合适的解答
  • android TextView加下划线的方法
  • android开发教程之textview内容超出屏幕宽度显示省略号
  • textView 添加超链接(两种实现方式)
  • Android开发:TextView加入滚动条示例
  • gtk中textview的用法
  • android TextView设置中文字体加粗实现方法
  • Andorid TextView字幕效果实例
  • Android实现TextView中文字链接的4种方式介绍及代码
  • Android的TextView与Html相结合的具体方法
  • Android TextView设置背景色与边框的方法详解
  • Android TextView和ImageView简单说明
  • android TextView多行文本(超过3行)使用ellipsize属性无效问题的解决方法
  • android中设置TextView/Button 走马灯(Marquee)效果示例
  • gtk中的TextView里面用鼠标选中一段字符后怎样将选中的字符串放到剪切板里面?


  • 站内导航:


    特别声明:169IT网站部分信息来自互联网,如果侵犯您的权利,请及时告知,本站将立即删除!

    ©2012-2021,,E-mail:www_#163.com(请将#改为@)

    浙ICP备11055608号-3