znl_12 2013-06-06 07:40 采纳率: 0%
浏览 1740
已采纳

Broadcast service 没有被调用

我使用下面的代码调用 Broadcast service

Intent i = new Intent(this, BootUpReceiverRecall.class);
        sendBroadcast(i);
 <receiver  android:process=":remote" android:name="BootUpReceiverRecall"></receiver>
public class BootUpReceiverRecall extends BroadcastReceiver 
{
      // Restart service every 30 seconds
      private static final long REPEAT_TIME = 1000 * 30;
      @Override
      public void onReceive(Context context, Intent intent) 
      {
        AlarmManager service = (AlarmManager) context
            .getSystemService(Context.ALARM_SERVICE);
        Intent i = new Intent(context, BootUpReceiver.class);
        PendingIntent pending = PendingIntent.getBroadcast(context, 0, i,
            PendingIntent.FLAG_CANCEL_CURRENT);
        Calendar cal = Calendar.getInstance();
        // Start 30 seconds after boot completed
        cal.add(Calendar.SECOND, 30);
        //
        // Fetch every 30 seconds
        // InexactRepeating allows Android to optimize the energy consumption
        service.setInexactRepeating(AlarmManager.RTC_WAKEUP,
            cal.getTimeInMillis(), REPEAT_TIME, pending);
        // service.setRepeating(AlarmManager.RTC_WAKEUP, cal.getTimeInMillis(),
        // REPEAT_TIME, pending);
      }

但是我的BootUpReceiver 从来没有被调用,哪里出错了呢?

  • 写回答

2条回答 默认 最新

  • 码密码密哄 2013-06-06 08:00
    关注
    Intent i = new Intent(this, BootUpReceiverRecall.class);
            sendBroadcast(i);
    

    为什么要这样写呢? 我是没这样写过
    广播分2中注册方式:
    1中是代码注册,局部广播 可以写在Activity中

    YourReceiver reveiver = new YourReceiver ();
    IntentFilter filter = new IntentFilter();
            filter.addAction("yourAction");
            registerReceiver(reveiver , filter);
    

    Activity生命周期中可以管理register 和 unregister
    2.manifest配置 节点下
    创建 YourReceiver在xx.xx.xx.receiver(随便写)包下 extends BrocastReceiver
    根据action过滤

    你这个可改成

    Intent i = new Intent(“action”);
            sendBroadcast(i);
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?

悬赏问题

  • ¥15 simulink仿真中dtc控制永磁同步电机如何控制开关频率
  • ¥15 用C语言输入方程怎么
  • ¥15 网站显示不安全连接问题
  • ¥15 github训练的模型参数无法下载
  • ¥15 51单片机显示器问题
  • ¥20 关于#qt#的问题:Qt代码的移植问题
  • ¥50 求图像处理的matlab方案
  • ¥50 winform中使用edge的Kiosk模式
  • ¥15 关于#python#的问题:功能监听网页
  • ¥15 怎么让wx群机器人发送音乐