使用AlarmManager从BroadcastReceiver启动服务

时间:2015-07-31 06:35:01

标签: android service broadcastreceiver alarmmanager

我想在BroadcastReceiver中启动多个警报并从该警报启动服务但是没有开始运行。我刚刚使用context.startService(intent)对它进行了测试,并且成功了。但不知怎的,如果我使用alarmManager,服务就无法启动。

这是我的代码:

    @TargetApi(Build.VERSION_CODES.LOLLIPOP)
    @Override
    protected void onPostExecute(String s) {
        super.onPostExecute(s);
            String weekDay;
            SimpleDateFormat dayFormat = new SimpleDateFormat("EEEE", Locale.US);
            Calendar calendars = Calendar.getInstance();
            weekDay = dayFormat.format(calendars.getTime());
            //Toast.makeText(contexts,"Day : " + weekDay,Toast.LENGTH_SHORT).show();
            for (int i=1; i< jArray; i++)
            {
                String hari = hari_list.get(i);
                if (weekDay.equals(hari))
                {
                    Intent intent = new Intent(contexts, Service3.class);
                    pendingIntent = PendingIntent.getBroadcast(contexts, i, intent, PendingIntent.FLAG_ONE_SHOT);
                    AlarmManager manager = (AlarmManager) contexts.getSystemService(Context.ALARM_SERVICE);
                    Calendar calendar = Calendar.getInstance();
                    calendar.set(Calendar.HOUR_OF_DAY,8);
                    calendar.set(Calendar.MINUTE, 16);
                    calendar.set(Calendar.SECOND, 00);   
                    manager.setExact(manager.RTC_WAKEUP,calendar.getTimeInMillis(),pendingIntent);
                }
            }

你能帮帮我吗?

2 个答案:

答案 0 :(得分:1)

目前您正在发送一个配置为服务Intent的Broadcast Intent。

Intent intent = new Intent(contexts, Service3.class);
pendingIntent = PendingIntent.getBroadcast(contexts, i, intent, PendingIntent.FLAG_ONE_SHOT);

尝试getService而不是getBroadcast直接启动警报管理器中的服务。

如果你想使用广播,你需要发送正确的广播意图,并在你的清单中为该广播注册一个监听器。

答案 1 :(得分:0)

你只能使用闹钟管理员呼叫接收器。

尝试呼叫接收方并从该接收方启动服务