服务器之家

服务器之家 > 正文

Android Timer使用的实例代码

时间:2021-02-06 13:13     来源/作者:Android开发网

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)此方法见:http://www.zzvips.com/article/138835.html

 

复制代码 代码如下:


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 Timer使用的实例代码

标签:

相关文章

热门资讯

2020微信伤感网名听哭了 让对方看到心疼的伤感网名大全
2020微信伤感网名听哭了 让对方看到心疼的伤感网名大全 2019-12-26
Intellij idea2020永久破解,亲测可用!!!
Intellij idea2020永久破解,亲测可用!!! 2020-07-29
yue是什么意思 网络流行语yue了是什么梗
yue是什么意思 网络流行语yue了是什么梗 2020-10-11
背刺什么意思 网络词语背刺是什么梗
背刺什么意思 网络词语背刺是什么梗 2020-05-22
苹果12mini价格表官网报价 iPhone12mini全版本价格汇总
苹果12mini价格表官网报价 iPhone12mini全版本价格汇总 2020-11-13
返回顶部