返回顶部
首页 > 资讯 > 移动开发 >Android Timer使用的实例代码
  • 596
分享到

Android Timer使用的实例代码

Android 2022-06-06 10:06:59 596人浏览 薄情痞子
摘要

1:服务端使用PHP 代码如下:<?php    echo date('Y-m-d H:i:s');?> 2:activity_m

1:服务端使用PHP

代码如下:
<?php
    echo date('Y-m-d H:i:s');
?>

2:activity_main.xml

代码如下:
<RelativeLayout xmlns:Android="Http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent">
    <Button
        android:id="@+id/btn_click"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:text="Button Start"/>
    <TextView
        android:id="@+id/tv_show"
        android:layout_below="@id/btn_click"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="@string/hello_world"
        android:textSize="28sp"/>
    <Button
        android:id="@+id/btn_stop"
        android:layout_below="@id/tv_show"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:text="Button Stop"/>

</RelativeLayout>

3:MainActivity.java

HttpHelper.getStringFromNet2(param)此方法见://www.jb51.net/article/42126.htm

代码如下:
public class MainActivity extends Activity {
    private Button btnClick=null;
    private Button btnStop=null;
    private TextView tvShow=null;
    private String info="";
    private Timer timer=null;
    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
        btnClick=(Button)findViewById(R.id.btn_click);
        btnStop=(Button)findViewById(R.id.btn_stop);
        tvShow=(TextView)findViewById(R.id.tv_show);
        timer=new Timer();
        btnClick.setOnClickListener(new OnClickListener(){
            public void onClick(View view){
                timer.scheduleAtFixedRate(new MyTask(), 100, 2000);
            }
        });
        btnStop.setOnClickListener(new OnClickListener(){
            public void onClick(View view){
                timer.cancel();
            }
        });
    }
   

    Handler myHandler=new Handler(){
        public void handleMessage(Message msg){
            if(info!=""){
                tvShow.setText(info);
            }
        }
    };
    private class MyTask extends TimerTask{
        public void run(){
            String param="http://192.168.0.116/android/time.php";
            info=HttpHelper.getStringFromNet2(param);
            myHandler.obtainMessage(100).sendToTarget();
        }
    }
}

4:运行结果:

您可能感兴趣的文章:详解Android中提示对话框(ProgressDialog和DatePickerDialog和TimePickerDialog&PopupWindow)android中DatePicker和TimePicker的使用方法详解Android基于CountDownTimer实现倒计时功能Android中CountDownTimer倒计时器用法实例Android编程获取网络时间实例分析Android中日期与时间设置控件用法实例android获取时间差的方法Android调用系统时间格式显示时间信息Android 桌面Widget开发要点解析(时间日期Widget)解析android中系统日期时间的获取Android获取通话时间实例分析android 默认时间格式修改方法Android开发之TimePicker控件用法实例详解


--结束END--

本文标题: Android Timer使用的实例代码

本文链接: https://lsjlt.com/news/27360.html(转载时请注明来源链接)

有问题或投稿请发送至: 邮箱/279061341@qq.com    QQ/279061341

猜你喜欢
软考高级职称资格查询
编程网,编程工程师的家园,是目前国内优秀的开源技术社区之一,形成了由开源软件库、代码分享、资讯、协作翻译、讨论区和博客等几大频道内容,为IT开发者提供了一个发现、使用、并交流开源技术的平台。
  • 官方手机版

  • 微信公众号

  • 商务合作