我正在构建一个 android 应用程序,当它运行时,如果用户连接到某个网络,我需要每分钟调用一次我的 Web 服务器。
我计划使用服务来拨打电话,但我如何每分钟拨打电话?我想我需要使用警报管理器,但我在哪里初始化它?在我的开始活动中?我只需要在我的应用程序运行时执行服务。
谢谢你的帮助。
我正在构建一个 android 应用程序,当它运行时,如果用户连接到某个网络,我需要每分钟调用一次我的 Web 服务器。
我计划使用服务来拨打电话,但我如何每分钟拨打电话?我想我需要使用警报管理器,但我在哪里初始化它?在我的开始活动中?我只需要在我的应用程序运行时执行服务。
谢谢你的帮助。
如果您只想在应用程序正在运行时调用服务器,则无需使用警报管理器。还有其他选择,例如
倒数计时器
线
在那种情况下,我更喜欢 CoundownTimer,你可以像这样使用
CountDownTimer countDownTimer = new CountDownTimer(1000000, 60 * 1000) {
@Override
public void onTick(long millisUntilFinished) {
// Do something on a tick.
}
@Override
public void onFinish() {
// Do something, maybe?
this.start();
}
};
countDownTimer.start();
试试这个 ::
您可以在您想要的活动中调用此计时器
private Timer autoUpdate;
@Override
public void onResume() {
super.onResume();
autoUpdate = new Timer();
autoUpdate.schedule(new TimerTask() {
@Override
public void run() {
runOnUiThread(new Runnable() {
public void run() {
//call your service from here
}
});
}
}, 0, 60000);//set time interval according to your requirement
}
如果您有任何疑问,请随时询问:)
在活动中:
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
TestAlarmMessageReceiver almesr = new TestAlarmMessageReceiver(this, time);
}
广播接收器:
public class TestAlarmMessageReceiver extends BroadcastReceiver {
public TestAlarmMessageReceiver() {
}
public TestAlarmMessageReceiver(Context context, int timeout) { //timeout in seconds
AlarmManager alarmMgr = (AlarmManager)context.getSystemService(Context.ALARM_SERVICE);
Intent intent = new Intent(context, TestAlarmMessageReceiver.class);
PendingIntent pendingIntent = PendingIntent.getBroadcast(context, 0, intent,
PendingIntent.FLAG_CANCEL_CURRENT);
Calendar time = Calendar.getInstance();
time.setTimeInMillis(System.currentTimeMillis());
alarmMgr.setRepeating(AlarmManager.RTC_WAKEUP, time.getTimeInMillis(),
timeout*60*1000, pendingIntent);
}
@Override
public void onReceive(Context arg0, Intent arg1) {
arg0.startService(new Intent(arg0, TestMessageService.class));
}
}
服务:
public class TestMessageService extends Service {
@Override
public IBinder onBind(Intent intent) {
return null;
}
@Override
public int onStartCommand(Intent intent, int flags, int startId) {
messageUpdateTask();
return super.onStartCommand(intent, flags, startId);
}
private void messageUpdateTask(){
GetMessagesUpdateAsyncTak getMessUpd = new GetMessagesUpdateAsyncTak();
getMessUpd.execute(this);
}
}
使用 AsynTask http://developer.android.com/reference/android/os/AsyncTask.html调用您的 Web 服务器
在AsynTask类的onPost方法中等待一分钟,然后调用 AsynTask。
您可以使用以下代码调用 AsynTask:
BLSyncingProcedure objSyncingProcedure=new BLSyncingProcedure();
objSyncingProcedure.execute(HomeScreen.this);
BLSyncingProcedure是您的 AsynTask 类名。