实现简易秒表功能


今天为了给师弟们讲安卓,花了10分钟写了一个简易的秒表app,现贴出代码,供各位刚入门以及还未入门的同胞们参考

第一步:布局activity_main.xml:

[html]  view plain  copy
  在CODE上查看代码片 派生到我的代码片
  1. <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"  
  2.     xmlns:tools="http://schemas.android.com/tools"  
  3.     android:layout_width="match_parent"  
  4.     android:layout_height="match_parent"  
  5.     android:paddingBottom="@dimen/activity_vertical_margin"  
  6.     android:paddingLeft="@dimen/activity_horizontal_margin"  
  7.     android:paddingRight="@dimen/activity_horizontal_margin"  
  8.     android:paddingTop="@dimen/activity_vertical_margin"  
  9.     tools:context=".MainActivity" >  
  10.   
  11.     <RelativeLayout  
  12.         android:layout_width="wrap_content"  
  13.         android:layout_height="wrap_content"  
  14.         android:layout_centerInParent="true" >  
  15.   
  16.         <LinearLayout  
  17.             android:id="@+id/top"  
  18.             android:layout_width="wrap_content"  
  19.             android:layout_height="wrap_content"  
  20.             android:layout_centerHorizontal="true"  
  21.             android:orientation="horizontal" >  
  22.   
  23.             <TextView  
  24.                 android:id="@+id/mint"  
  25.                 android:layout_width="wrap_content"  
  26.                 android:layout_height="wrap_content"  
  27.                 android:text="00"  
  28.                 android:textSize="30dp" />  
  29.   
  30.             <TextView  
  31.                 android:layout_width="wrap_content"  
  32.                 android:layout_height="wrap_content"  
  33.                 android:text=":"  
  34.                 android:textSize="30dp" />  
  35.   
  36.             <TextView  
  37.                 android:id="@+id/sec"  
  38.                 android:layout_width="wrap_content"  
  39.                 android:layout_height="wrap_content"  
  40.                 android:text="00"  
  41.                 android:textSize="30dp" />  
  42.         </LinearLayout>  
  43.   
  44.         <LinearLayout  
  45.             android:layout_width="wrap_content"  
  46.             android:layout_height="wrap_content"  
  47.             android:layout_below="@+id/top"  
  48.             android:layout_centerHorizontal="true"  
  49.             android:orientation="horizontal" >  
  50.   
  51.             <Button  
  52.                 android:id="@+id/start"  
  53.                 android:layout_width="wrap_content"  
  54.                 android:layout_height="wrap_content"  
  55.                 android:text="start" />  
  56.   
  57.             <Button  
  58.                 android:id="@+id/reset"  
  59.                 android:layout_width="wrap_content"  
  60.                 android:layout_height="wrap_content"  
  61.                 android:text="reset" />  
  62.         </LinearLayout>  
  63.     </RelativeLayout>  
  64.   
  65. </RelativeLayout>  



第二步,实现秒表功能

[java]  view plain  copy
  在CODE上查看代码片 派生到我的代码片
  1. package com.example.second;  
  2. import android.os.Bundle;  
  3. import android.os.Handler;  
  4. import android.os.Message;  
  5. import android.app.Activity;  
  6. import android.view.Menu;  
  7. import android.view.View;  
  8. import android.view.View.OnClickListener;  
  9. import android.widget.Button;  
  10. import android.widget.TextView;  
  11. public class MainActivity extends Activity {  
  12.     private TextView mint;  
  13.     private TextView sec;  
  14.     private Button start;  
  15.     private Button reset;  
  16.     private long timeusedinsec;  
  17.     private boolean isstop = false;  
  18.     private Handler mHandler = new Handler() {  
  19.         /* 
  20.          * edit by yuanjingchao 2014-08-04 19:10 
  21.          */  
  22.         @Override  
  23.         public void handleMessage(Message msg) {  
  24.             // TODO Auto-generated method stub  
  25.             super.handleMessage(msg);  
  26.             switch (msg.what) {  
  27.             case 1:  
  28.                 // 添加更新ui的代码  
  29.                 if (!isstop) {  
  30.                     updateView();  
  31.                     mHandler.sendEmptyMessageDelayed(11000);  
  32.                 }  
  33.                 break;  
  34.             case 0:  
  35.                 break;  
  36.             }  
  37.         }  
  38.   
  39.     };  
  40.   
  41.     @Override  
  42.     protected void onCreate(Bundle savedInstanceState) {  
  43.         super.onCreate(savedInstanceState);  
  44.         setContentView(R.layout.activity_main);  
  45.         initViews();  
  46.     }  
  47.     private void initViews() {  
  48.         mint = (TextView) findViewById(R.id.mint);  
  49.         sec = (TextView) findViewById(R.id.sec);  
  50.         reset = (Button) findViewById(R.id.reset);  
  51.         start = (Button) findViewById(R.id.start);  
  52.         reset.setOnClickListener(new OnClickListener() {  
  53.             @Override  
  54.             public void onClick(View arg0) {  
  55.                 // TODO Auto-generated method stub  
  56.               
  57.                 mint.setText("00");  
  58.                 sec.setText("00");  
  59.                 start.setText("start");  
  60.                 timeusedinsec=0;  
  61.                 isstop=true;  
  62.             }  
  63.         });  
  64.         start.setOnClickListener(new OnClickListener() {  
  65.             @Override  
  66.             public void onClick(View arg0) {  
  67.                 // TODO Auto-generated method stub  
  68.                 mHandler.removeMessages(1);  
  69.                 String aaa=start.getText().toString();  
  70.                 if(aaa.equals("start")){  
  71.                     mHandler.sendEmptyMessage(1);  
  72.                     isstop = false;  
  73.                     start.setText("pause");  
  74.                 }else {  
  75.                     mHandler.sendEmptyMessage(0);  
  76.                     isstop = true;  
  77.                     start.setText("start");  
  78.                 }  
  79.                   
  80.             }  
  81.         });  
  82.     }  
  83.     private void updateView() {  
  84.         timeusedinsec += 1;  
  85.         int minute = (int) (timeusedinsec / 60)%60;  
  86.         int second = (int) (timeusedinsec % 60);  
  87.         if (minute < 10)  
  88.             mint.setText("0" + minute);  
  89.         else  
  90.             mint.setText("" + minute);  
  91.         if (second < 10)  
  92.             sec.setText("0" + second);  
  93.         else  
  94.             sec.setText("" + second);  
  95.     }  
  96. }  

转自:http://blog.csdn.net/huanongjingchao/article/details/38374233

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值