实现简易秒表功能

2024-03-14 01:48
文章标签 实现 功能 简易 秒表

本文主要是介绍实现简易秒表功能,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!


今天为了给师弟们讲安卓,花了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

这篇关于实现简易秒表功能的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/806857

相关文章

使用Sentinel自定义返回和实现区分来源方式

《使用Sentinel自定义返回和实现区分来源方式》:本文主要介绍使用Sentinel自定义返回和实现区分来源方式,具有很好的参考价值,希望对大家有所帮助,如有错误或未考虑完全的地方,望不吝赐教... 目录Sentinel自定义返回和实现区分来源1. 自定义错误返回2. 实现区分来源总结Sentinel自定

Java实现时间与字符串互相转换详解

《Java实现时间与字符串互相转换详解》这篇文章主要为大家详细介绍了Java中实现时间与字符串互相转换的相关方法,文中的示例代码讲解详细,感兴趣的小伙伴可以跟随小编一起学习一下... 目录一、日期格式化为字符串(一)使用预定义格式(二)自定义格式二、字符串解析为日期(一)解析ISO格式字符串(二)解析自定义

opencv图像处理之指纹验证的实现

《opencv图像处理之指纹验证的实现》本文主要介绍了opencv图像处理之指纹验证的实现,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友们下面随着小编来一起学... 目录一、简介二、具体案例实现1. 图像显示函数2. 指纹验证函数3. 主函数4、运行结果三、总结一、

SpringKafka消息发布之KafkaTemplate与事务支持功能

《SpringKafka消息发布之KafkaTemplate与事务支持功能》通过本文介绍的基本用法、序列化选项、事务支持、错误处理和性能优化技术,开发者可以构建高效可靠的Kafka消息发布系统,事务支... 目录引言一、KafkaTemplate基础二、消息序列化三、事务支持机制四、错误处理与重试五、性能优

SpringIntegration消息路由之Router的条件路由与过滤功能

《SpringIntegration消息路由之Router的条件路由与过滤功能》本文详细介绍了Router的基础概念、条件路由实现、基于消息头的路由、动态路由与路由表、消息过滤与选择性路由以及错误处理... 目录引言一、Router基础概念二、条件路由实现三、基于消息头的路由四、动态路由与路由表五、消息过滤

Springboot处理跨域的实现方式(附Demo)

《Springboot处理跨域的实现方式(附Demo)》:本文主要介绍Springboot处理跨域的实现方式(附Demo),具有很好的参考价值,希望对大家有所帮助,如有错误或未考虑完全的地方,望不... 目录Springboot处理跨域的方式1. 基本知识2. @CrossOrigin3. 全局跨域设置4.

Spring Boot 3.4.3 基于 Spring WebFlux 实现 SSE 功能(代码示例)

《SpringBoot3.4.3基于SpringWebFlux实现SSE功能(代码示例)》SpringBoot3.4.3结合SpringWebFlux实现SSE功能,为实时数据推送提供... 目录1. SSE 简介1.1 什么是 SSE?1.2 SSE 的优点1.3 适用场景2. Spring WebFlu

基于SpringBoot实现文件秒传功能

《基于SpringBoot实现文件秒传功能》在开发Web应用时,文件上传是一个常见需求,然而,当用户需要上传大文件或相同文件多次时,会造成带宽浪费和服务器存储冗余,此时可以使用文件秒传技术通过识别重复... 目录前言文件秒传原理代码实现1. 创建项目基础结构2. 创建上传存储代码3. 创建Result类4.

SpringBoot日志配置SLF4J和Logback的方法实现

《SpringBoot日志配置SLF4J和Logback的方法实现》日志记录是不可或缺的一部分,本文主要介绍了SpringBoot日志配置SLF4J和Logback的方法实现,文中通过示例代码介绍的非... 目录一、前言二、案例一:初识日志三、案例二:使用Lombok输出日志四、案例三:配置Logback一

Python如何使用__slots__实现节省内存和性能优化

《Python如何使用__slots__实现节省内存和性能优化》你有想过,一个小小的__slots__能让你的Python类内存消耗直接减半吗,没错,今天咱们要聊的就是这个让人眼前一亮的技巧,感兴趣的... 目录背景:内存吃得满满的类__slots__:你的内存管理小助手举个大概的例子:看看效果如何?1.