Android背景轮询和用户界面

时间:2012-09-28 05:38:45

标签: android polling

我正在构建一个当前作为独立应用程序运行的应用程序,该应用程序使用AsyncTask轮询服务。我想将轮询移动到在启动时运行的Android服务,并可能通知用户有关更改。曲线球是我需要跨活动(以及即将成为服务)共享这些数据,因此我不会在持久存储和内存存储之间来回使用电池。

有没有办法创建一个在后台运行的服务,使用AlarmManager每隔半分钟轮询一次,它通过点击服务创建的通知或通过发射器本身?

现在我已经走了多远:

这是服务:

public class PollService extends Service {
    private final IBinder binder = new PollBinder();

    @Override
    public int onStartCommand(Intent intent, int flags, int startId) {
        SharedData.update();

        return Service.START_NOT_STICKY;
    }

    @Override
    public IBinder onBind(Intent intent) {
        return binder;
    }

    public class PollBinder extends Binder {
        PollService getService() {
            return PollService.this;
        }
    }
}

这将触发服务......

public class PollScheduleReceiver extends RoboBroadcastReceiver {
    private static final int POLL_FREQ_SEC = 30;
    @Override
    protected void handleReceive(Context context, Intent intent) {
        Intent schedulerIntent = new Intent(context, PollStartReceiver.class);
        PendingIntent pendingSchedulerIntent = PendingIntent.getBroadcast(context, 0, schedulerIntent, PendingIntent.FLAG_CANCEL_CURRENT);
        calendar.add(Calendar.SECOND, POLL_FREQ_SEC);
        alarmManager.setInexactRepeating(AlarmManager.RTC_WAKEUP, calendar.getTimeInMillis(), POLL_FREQ_SEC * 1000, pendingSchedulerIntent);
    }
}

这将在启动时触发触发:

public class PollStartReceiver extends BroadcastReceiver {
    @Override
    public void onReceive(Context context, Intent intent) {
        Intent pollService = new Intent(context, PollService.class);
        context.startService(pollService);
    }
}

1 个答案:

答案 0 :(得分:0)

我不知道我是否得到了你的问题,但据我所知,它可以通过几个步骤完成..

1)启动服务,使其在后台运行

2)根据您的意愿,可以每隔30秒在AsyncTask或Handler的帮助下在该服务中进行轮询

3)当条件满足时,从该服务开始所需的活动。