在Android中创建计时器

时间:2011-12-30 21:05:14

标签: android implementation chronometer

我想知道如何在Android中实现一个简单的计时器,它带有一个启动和停止按钮,以HH显示数据:MM:SS:MsMs格式......我一直在搜索和搜索,我有在谷歌开发者上发现了一些课程,但他们没有举例,我迷路了......你能指导我一个教程/例子吗?我刚刚开始使用Android :)任何帮助都会非常感激。

1 个答案:

答案 0 :(得分:14)

只需在XML或Code中实现Chronometer,并使用其start()方法启动它,并使用stop()方法来停止它。

更多信息可以在这里找到:http://developer.android.com/reference/android/widget/Chronometer.html

XML:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical" >

    <Chronometer
        android:id="@+id/chronometer1"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content" />

    <Button
        android:id="@+id/button1"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="Start" 
        android:onClick="startChronometer"/>

    <Button
        android:id="@+id/button2"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="Stop" 
        android:onClick="stopChronometer"/>

</LinearLayout>

爪哇:

public class Main extends FragmentActivity {
    /** Called when the activity is first created. */
    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.test);
    }

    public void startChronometer(View view) {
        ((Chronometer) findViewById(R.id.chronometer1)).start();
    }

    public void stopChronometer(View view) {
        ((Chronometer) findViewById(R.id.chronometer1)).stop();
    }
}

您可以在startChronometer()方法中添加一些代码以重新启动计数器。