Điều này thực sự phụ thuộc vào khoảng thời gian cách nhau bạn cần chạy chức năng.
Nếu là => 10 phút → Tôi sẽ sử dụng Trình quản lý báo thức.
// Some time when you want to run
Date when = new Date(System.currentTimeMillis());
try{
Intent someIntent = new Intent(someContext,MyReceiver.class); // intent to be launched
// note this could be getActivity if you want to launch an activity
PendingIntent pendingIntent = PendingIntent.getBroadcast(
context,
0, // id, optional
someIntent, // intent to launch
PendingIntent.FLAG_CANCEL_CURRENT); // PendintIntent flag
AlarmManager alarms = (AlarmManager) context.getSystemService(
Context.ALARM_SERVICE);
alarms.setRepeating(AlarmManager.RTC_WAKEUP,
when.getTime(),
AlarmManager.INTERVAL_FIFTEEN_MINUTES,
pendingIntent);
}catch(Exception e){
e.printStackTrace();
}
Và sau đó bạn nhận các chương trình phát sóng này thông qua bộ thu phát sóng. Lưu ý rằng điều này sẽ cần được đăng ký ether trong bản kê khai ứng dụng của bạn hoặc thông qua context.registerReceiver(receiver,filter);
phương thức Để biết thêm thông tin về Bộ thu phát sóng, vui lòng tham khảo Tài liệu chính thức. Máy thu phát sóng .
public class MyReceiver extends BroadcastReceiver{
@Override
public void onReceive(Context context, Intent intent)
{
//do stuffs
}
}
Nếu nó = <10 phút → Tôi sẽ đi với một Xử lý.
Handler handler = new Handler();
int delay = 1000; //milliseconds
handler.postDelayed(new Runnable(){
public void run(){
//do something
handler.postDelayed(this, delay);
}
}, delay);