微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

Android 发送广播简易工具类

下面是编程之家 jb51.cc 通过网络收集整理的代码片段。

编程之家小编现在分享给大家,也给大家做个参考。

    /** 
     * 发送广播简易工具类 
     * Created by Liam on 2015/4/2. 
     */  
    public class broadcastUtil {  
      
        /** 
         * 构造函数设为private,防止外部实例化 
         */  
        private void broadcastManager() {  
        }  
      
        /** 
         * 注册广播接收器 
         * 
         * @param ctx       Context(不可空) 
         * @param iReceiver IReceiver(不可空) 
         * @param action    Intent.Action(不可空) 
         */  
        public static void registerReceiver(Context ctx,final IReceiver iReceiver,final String action) {  
            if (ctx == null || iReceiver == null || action == null) throw new IllegalArgumentException("使用registerReceiver()注册广播时,参数Context、IReceiver和Action不能为空!");  
      
            broadcastReceiver receiver = new broadcastReceiver() {  
                @Override  
                public void onReceive(Context context,Intent intent) {  
                    iReceiver.onReceive(context,intent);  
                }  
            };  
            IntentFilter filter = new IntentFilter(action);  
            ctx.registerReceiver(receiver,filter);  
        }  
      
        /** 
         * 发送广播 
         * 
         * @param ctx    Context(不可空) 
         * @param i      Intent(可为null),不需要设置Action,请把Action作为参数传入 
         * @param action Intent.Action(不可空) 
         */  
        public static void send(Context ctx,Intent i,final String action) {  
            if (ctx == null || action == null) throw new IllegalArgumentException("使用send()发送广播时,参数Context和Action不能为空!");  
      
            if (i == null) i = new Intent();  
            i.setAction(action);  
            ctx.sendbroadcast(i);  
        }  
      
      
        /** 
         * 接收广播的页面需要实现,把接收后的操作覆写在OnReceive()方法里 
         */  
        public interface IReceiver {  
            void onReceive(Context ctx,Intent intent);  
        }  
      
    }  

以上是编程之家(jb51.cc)为你收集整理的全部代码内容,希望文章能够帮你解决所遇到的程序开发问题。

如果觉得编程之家网站内容还不错,欢迎将编程之家网站推荐给程序员好友。

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

相关推荐