0

我想创建一个显示当前时间的小时和分钟的时钟,例如下午 02:15。我现在想要的是在每 60 秒后明显更新分钟部分,因为它在我们的系统中发生更改。所以我想知道保持时间更新的最佳方法是什么谢谢

4

1 回答 1

0

.xml 文件的代码,

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    tools:context=".MainActivity" >

    <TextView
        android:id="@+id/txtTime"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_centerHorizontal="true"
        android:layout_centerVertical="true"
        android:text="@string/hello_world" />

</RelativeLayout>

活动文件的代码,

package com.example.demoproject;

import java.util.Timer;
import java.util.TimerTask;

import android.app.Activity;
import android.os.Bundle;
import android.text.format.Time;
import android.widget.TextView;

public class MainActivity extends Activity 
{
    private static TextView textview;
    private Timer timer;
    private Time today;

    @Override
    protected void onCreate(Bundle savedInstanceState) 
    {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
        textview = (TextView ) findViewById( R.id.txtTime );

        today = new Time(Time.getCurrentTimezone());
        timer = new Timer();
        timer.schedule(new RemindTask(), 1000, 1000 );
    }

    private class RemindTask extends TimerTask
    {
        public void run()
        {

            runOnUiThread(new Runnable() 
            {
                 public void run() 
                 {
                        today.setToNow();
                        textview.setText(today.format("%k:%M:%S"));  // Current time
                }
            });
        }
    }
}
于 2013-03-14T06:53:52.803 回答