在android中执行周期性任务

时间:2013-10-21 11:25:06

标签: java android timer android-activity timertask

我想创建一个小型Android应用程序,在点击按钮后定期显示系统时间(即设置活动)...按钮创建代码和通过意图设置定期活动是这样的:

package com.example.timeupdate;

import android.os.Bundle;
import android.app.Activity;
import android.content.Intent;
import android.view.Menu;
import android.view.View;
import android.widget.Button;
import android.widget.TextView;

public class MainActivity extends Activity {

Button button;
TextView show;

@Override
protected void onCreate(Bundle I_Love_Biriyani) {
    super.onCreate(I_Love_Biriyani);
    setContentView(R.layout.activity_main);

    button = (Button) findViewById (R.id.pressButton);
    show = (TextView) findViewById (R.id.Show);

    button.setOnClickListener(new View.OnClickListener() {

        @Override
        public void onClick(View arg0) {
            // TODO Auto-generated method stub

            Intent openTimeUpdater = new Intent("com.example.timeupdate.TIMEUPDATER");
            startActivity(openTimeUpdater);

        }
    });

}


@Override
protected void onPause() {
    // TODO Auto-generated method stub
    super.onPause();
    finish();
}


@Override
public boolean onCreateOptionsMenu(Menu menu) {
    // Inflate the menu; this adds items to the action bar if it is present.
    getMenuInflater().inflate(R.menu.main, menu);
    return true;
}



}

以下是重复计时器的代码(例如5秒),我使用 TimerTask 类来执行作业:

package com.example.timeupdate;

import java.util.Date;
import java.util.Timer;
import java.util.TimerTask;

import android.app.Activity;
import android.os.Bundle;
import android.widget.TextView;

public class TimeUpdater extends Activity {

    TextView Show;

    TimerTask timer= new TimerTask(){

        @Override
        public void run() {
            // TODO Auto-generated method stub
            Date d = new Date();
            Show.setText(""+d);
        }

    };

    @Override
    protected void onCreate(Bundle hotovaga) throws IllegalStateException {
        // TODO Auto-generated method stub
        super.onCreate(hotovaga);
        setContentView(R.layout.new_update);

        Show = (TextView) findViewById (R.id.time);

        Timer t = new Timer();
        t.scheduleAtFixedRate(timer , 0 , 5000);

    }


}

单击按钮后,时间仅显示一次,然后应用程序停止显示对话框消息。需要解释才能以同样的方式完成这项工作。

4 个答案:

答案 0 :(得分:1)

您正在尝试访问非UI线程中的UI元素。

Show.setText(""+d);

而是将其包装在runOnUiThread界面中以获得正确的输出。

使用下面的TimeUpdater课程代码

public class TimeUpdater extends Activity {


    TextView Show = null;
    Calendar c; 
    int seconds;
    int minutes;
    int hours;

    TimerTask timer= new TimerTask(){

        @Override
        public void run() {
            c = Calendar.getInstance();
            seconds = c.get(Calendar.SECOND);
            minutes = c.get(Calendar.MINUTE);
            hours = c.get(Calendar.HOUR);

            runOnUiThread(new Runnable() {

                @Override
                public void run() {
                    Show.setText(hours + ":" + minutes + ":" + seconds);
                }
            });
        }

    };

    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.new_update);

        Show = (TextView) findViewById (R.id.time);

        Timer t = new Timer();
        t.scheduleAtFixedRate(timer , 0 , 5000);


    }

}

答案 1 :(得分:0)

看一下这个链接。你可以得到一些想法.. http://developer.android.com/guide/topics/ui/controls/pickers.html

答案 2 :(得分:0)

将实际的Timer(java.util.Timer)与runOnUiThread()结合使用是解决此问题的一种方法,下面是如何实现它的一个示例。

public class myActivity extends Activity {

private Timer myTimer;

/** Called when the activity is first created. */
@Override
public void onCreate(Bundle icicle) {
    super.onCreate(icicle);
    setContentView(R.layout.main);
    myTimer = new Timer();
    myTimer.schedule(new TimerTask() {
        @Override
        public void run() {
            TimerMethod();
        }

    }, 0, 1000);
}

private void TimerMethod()
{
    //This method is called directly by the timer
    //and runs in the same thread as the timer.

    //We call the method that will work with the UI
    //through the runOnUiThread method.
    this.runOnUiThread(Timer_Tick);
}

private Runnable Timer_Tick = new Runnable() {
    public void run() {

    //This method runs in the same thread as the UI. 
    // Set your textView data here.              

    //Do something to the UI thread here

    }
};
}

答案 3 :(得分:0)

使用Play-Service中的PeriodicTask,它是Google安排工作背景的最新工具。