国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 系統 > Android > 正文

Android Timer使用的實例代碼

2020-04-11 12:02:16
字體:
來源:轉載
供稿:網友

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.survivalescaperooms.com/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:運行結果:

發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表
主站蜘蛛池模板: 枞阳县| 吉林市| 宽城| 华宁县| 绥滨县| 楚雄市| 封丘县| 阿合奇县| 桑植县| 彰化县| 黑河市| 新龙县| 吴忠市| 宁陕县| 射洪县| 山阳县| 湖南省| 随州市| 仙桃市| 东台市| 茶陵县| 西安市| 淄博市| 托里县| 浦江县| 自贡市| 张掖市| 井研县| 汨罗市| 安丘市| 建德市| 黄石市| 凭祥市| 德格县| 都昌县| 涞水县| 嘉黎县| 河津市| 奉化市| 北安市| 游戏|