- 1、本文档共7页,可阅读全部内容。
- 2、原创力文档(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
- 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载。
- 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
查看更多
Android简单计时器的制作
Handler的使用
截图:
Handler的第一个例子我做的一个时间的计时器
代码
HandlerTest.java
package hjc.HandlerTest;
import android.app.Activity;
import android.os.Bundle;
import android.os.Handler;
import android.view.View;
import android.view.View.OnClickListener;
import android.widget.Button;
import android.widget.TextView;
public class HandlerTest extends Activity {
/** Called when the activity is first created. */
//生命两个按钮控件
private Button startbutton = null;
private Button endbutton = null;
private TextView hour = null;
private TextView minute = null;
private TextView second = null;
private Button pause = null;
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
//根据控件的id得到代表控件的对象,并为这两个按钮设置监听器
startbutton = (Button)findViewById(R.id.startbutton);
endbutton = (Button)findViewById(R.id.endbutton);
pause = (Button)findViewById(R.id.pause);
hour = (TextView)findViewById(R.id.hour);
minute = (TextView)findViewById(R.id.minute);
second = (TextView)findViewById(R.id.second);
startbutton.setOnClickListener(new startbuttonListener());
endbutton.setOnClickListener(new endbuttonListener());
pause.setOnClickListener(new pauseListener());
}
class startbuttonListener implements OnClickListener{
public void onClick(View v) {
// TODO Auto-generated method stub
//调用Handler的post方法,将要执行的线程对象添加到队列当中
handler.post(updateThread);
startbutton.setText(开始);
}
}
class endbuttonListener implements OnClickListener{
public void onClick(View v) {
// TODO Auto-generated method stub
handler.removeCallbacks(updateThread);
hour.setText(0);
minute.setText(0);
second.setText(0);
}
}
class pauseListener implements OnClickListener{
public void onClick(View v) {
// TODO Auto-generated method stub
handler.removeCallbacks(updateThread);
startbu
文档评论(0)