Android Dynamic Display Time _android

Source: Internet
Author: User

How can the dynamic implementation of the time? Maybe you just don't understand the new entrants. If you don't know the words, see the code (code is the best teacher). Laugh

public void OnCreate (Bundle savedinstancestate) { 
    super.oncreate (savedinstancestate); 
    Setcontentview (r.layout.main); 
    textview= (TextView) Findviewbyid (r.id.time); 
      Handler = new Handler () {public 
        void Handlemessage (msg) { 
          textview.settext ((String) msg.obj); 
        } 
      ; 
    New Thread (This). Start (); 
  @Override public 
  Void Run () { 
    //TODO auto-generated a stub 
    try {while 
      (true) { 
        SimpleDateFormat sdf=new SimpleDateFormat ("YYYY year mm month DD Day  HH:mm:ss"); 
        String Str=sdf.format (New Date ()); 
        Handler.sendmessage (Handler.obtainmessage (100,STR)); 
        Thread.Sleep (1000); 
      } 
    catch (Interruptedexception e) { 
      //TODO auto-generated catch block 
      e.printstacktrace (); 
    } 
  

As you can see from the above code, this is a multithreaded. The data is updated when the system is acquired in real time.

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.