• android BroadcastReceiver ACTION_TIME_TICK 系统时间监听不到


    android BroadcastReceiver ACTION_TIME_TICK 系统时间监听不到

    今天做android上的消息推送,启动了一个独立service,然后在里面监听系统的ACTION_TIME_TICK消息,即tick就是以分钟为单位,每分钟都会监听到一次,

    按照网上说的在androidmanifast.xml里加入了

    复制代码
     <receiverandroid:name="com.xxx.xxx.TimeChangeReceiver">
    
            <intent-filterandroid:name="android.intent.action.ACTION_TIME_TICK"></intent-filter>
    
        </receiver>
    复制代码

    然后也写了个继承自BroadcastReceiver的类叫做TimeChangeReceiver与上面对应,结果就是无法监听到这个事件,

    花了半个小时无果,google的api页面又被墙了,于是尝试使用动态添加的方式,即在程序里需要的地方直接new一个receiver出来 ,果断删掉这个类,和xml里的上面那一段,直接在service的onCreate里写如下代码:

    1 IntentFilter filter=new IntentFilter();
    2         filter.addAction(Intent.ACTION_TIME_TICK);
    3         registerReceiver(receiver,filter);
    复制代码
     1 private final BroadcastReceiver receiver = new BroadcastReceiver() {
     2         @Override
     3           public void onReceive(Context context, Intent intent) {
     4               String action = intent.getAction();
     5                 if (action.equals(Intent.ACTION_TIME_TICK)) {
     6 
     7                   //do what you want to do ...13                     
    14                 }
    15           }
    16     };
    复制代码

    成功了。

     

    #1楼 2014-03-03 15:29murphykwu  

    google的api里面讲ACTION_TIME_TICK只能够动态创建监听。不能放在androidmanifest.xml里面设定。

    #2楼 2015-03-10 22:32热火火  

    1楼说的对。
  • 相关阅读:
    python字符串操作
    老男孩购物车程序
    python数据类型,判断,循环
    Matplotlib 绘图参考手册
    numpy 基础知识
    numpy random 模块
    numpy 算术运算
    pandas 读写数据
    python 读写文本
    python--windows文件操作
  • 原文地址:https://www.cnblogs.com/ZhuRenWang/p/5362789.html
Copyright © 2020-2023  润新知