我是靠谱客的博主 优秀香烟,最近开发中收集的这篇文章主要介绍android的广播发送与接收一、发送广播二、广播接收者,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

一、发送广播

<span style="white-space:pre">	</span>/**
	 * 发送后厨状态广播
	 * @param context 上下文
	 * @param status自定义的状态码
	 */
	public static void sendKitchenPrintStatusBroadcast(Context context,int status) {  
        Intent intent = new Intent();  
        intent.setAction(OneLeadPosConstants.SYNCHRONIZE_KITCHEN_PRINT_STATUS_ACTION);//设置action  
        intent.putExtra(OneLeadPosConstants.SYNCHRONIZE_KITCHEN_PRINT_STATUS_ACTION, status);//放入传输数据  
        context.sendBroadcast(intent);//有序广播发送  
    }  

二、广播接收者

一定要记得在初始化方法中注册registerBoradcastReceiver();,在onDestroy方法中解除注册this.unregisterReceiver(mBroadcastReceiver);

 <span style="white-space:pre">		</span>/**
		 * 注册后厨状态广播
		 * 
		 */
	    private void registerBoradcastReceiver(){  
	        IntentFilter myIntentFilter = new IntentFilter();//创建意图过滤器  
	        myIntentFilter.addAction(OneLeadPosConstants.SYNCHRONIZE_KITCHEN_PRINT_STATUS_ACTION);//设置过滤器action  
	        //注册广播        广播接收者,广播过滤器
	        registerReceiver(mBroadcastReceiver, myIntentFilter);  
	    }  

<span style="white-space:pre">	</span> /**
	 * 后厨状态广播接收者
	 * 
	 */
	 private BroadcastReceiver mBroadcastReceiver = new BroadcastReceiver(){  
	        @Override  
	        public void onReceive(Context context, Intent intent) {  
	            String action = intent.getAction();  
	            if(action.equals(OneLeadPosConstants.SYNCHRONIZE_KITCHEN_PRINT_STATUS_ACTION)){  
	            	int status=intent.getIntExtra(OneLeadPosConstants.SYNCHRONIZE_KITCHEN_PRINT_STATUS_ACTION, 80);
	            	if(status==80){//后厨打印机没有启用	            		
	            		Log.d("hainan", "hainan======后厨打印机没有启用");
	            	}else if (status==50) {//连接不上后厨打印机
	            		Log.d("hainan", "hainan======连接不上后厨打印机");
					}else if (status==100) {//连接成功
						Log.d("hainan", "hainan======连接成功");
					}	            	
	            }  
	        }  
	          
	    }; 




最后

以上就是优秀香烟为你收集整理的android的广播发送与接收一、发送广播二、广播接收者的全部内容,希望文章能够帮你解决android的广播发送与接收一、发送广播二、广播接收者所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(55)

评论列表共有 0 条评论

立即
投稿
返回
顶部