计数器是指一些常用,例如体育比赛中测试时间的计时器等,但所要介绍的这种计时器一般原理,先让我们看一下图先
让我们看一下代码的实现方法:
main.xml文件写法
- <?xml version="1.0" encoding="utf-8"?>
- <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
- android:orientation="vertical"
- android:layout_width="fill_parent"
- android:layout_height="fill_parent"
- >
- <TextView
- android:id="@+id/sCount"
- android:layout_width="fill_parent"
- android:layout_height="wrap_content"
- android:text="@string/hello"
- />
- <Button
- android:id="@+id/sStart"
- android:layout_width="fill_parent"
- android:layout_height="wrap_content"
- android:text="开始计数"
- />
- <Button
- android:id="@+id/sStop"
- android:layout_width="fill_parent"
- android:layout_height="wrap_content"
- android:text="停止计数"
- />
- <Button
- android:id="@+id/showToast"
- android:layout_width="fill_parent"
- android:layout_height="wrap_content"
- android:text="15秒后显示Toast信息"
- />
- </LinearLayout>