两个应用之间传递广播的规则 Broadcast
sendBroadcast(new Intent(Config.ACTION_PRINT),”com.qf.permission.print”);先判断应用有没有对应的权限 再去判断有没有对应的action两者都对应了才能进行接收 一个应用声明了权限 另一个应用使用了该权限并且action(频道相同)则可以接收广播
应用4发广播应用4里边对应频道的接受者都可以接受 应用5使用了应用4声明的权限并且接受者的action(频道)一直因此也可以接受4的广播 5发广播4也能接受 除非自己设置不接受其他应用的广播(见4的配置文件) 5也可以指定接受者的包名固定发给某个应用(见5的MainActivity.java)
配置文件里可以设置接受者的优先级越高先接受(见4配置文件)
package com.qf.broadcastreceiver04; public class Config { //声明广播的Action
public static final String ACTION_PRINT="com.qf.broadcast.print";
}
4_Config.java
package com.qf.broadcastreceiver04; import android.app.Activity;
import android.content.Intent;
import android.os.Bundle;
import android.view.View; public class MainActivity extends Activity { @Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
} public void send1(View v){
//发送打印广播: 有序广播,且带接收此广播的权限(需要在manifest文件中声明和使用)
//sendOrderedBroadcast(new Intent(Config.ACTION_PRINT),"com.qf.permission.print"); //带有权限发送广播
sendBroadcast(new Intent(Config.ACTION_PRINT), "com.qf.permission.print"); //sendBroadcast(new Intent(Config.ACTION_PRINT));
} }
4_MainActivity.java
package com.qf.broadcastreceiver04; import java.util.Date; import android.content.BroadcastReceiver;
import android.content.Context;
import android.content.Intent;
import android.util.Log; public class MyReceiver01 extends BroadcastReceiver { @Override
public void onReceive(Context context, Intent intent) {
// TODO Auto-generated method stub
Log.i("debug", "--MyReceiver01---onReceive--"+new Date());
} }
4_MyReceiver01.java
4的另外两个和01一样
4的配置文件
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.qf.broadcastreceiver04"
android:versionCode="1"
android:versionName="1.0" > <uses-sdk
android:minSdkVersion="8"
android:targetSdkVersion="17" /> <!-- 定义权限 -->
<permission android:name="com.qf.permission.print" /> <!-- 使用权限 -->
<uses-permission android:name="com.qf.permission.print" /> <application
android:allowBackup="true"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme" >
<activity
android:name="com.qf.broadcastreceiver04.MainActivity"
android:label="@string/app_name" >
<intent-filter>
<action android:name="android.intent.action.MAIN" /> <category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity> <!-- 注册广播接收器 -->
<receiver
android:name="com.qf.broadcastreceiver04.MyReceiver01"
android:permission="com.qf.permission.print" >
<intent-filter>
<action android:name="com.qf.broadcast.print" />
</intent-filter>
</receiver>
<receiver
android:name="com.qf.broadcastreceiver04.MyReceiver02"
android:permission="com.qf.permission.print" >
<intent-filter android:priority="80" >
<action android:name="com.qf.broadcast.print" />
</intent-filter>
</receiver> <!-- android:permission 设置接收的广播是带有权限的(发送广播端必须使用此权限)
android:exported="false" 不接收外部应用发送的广播 -->
<receiver
android:name="com.qf.broadcastreceiver04.MyReceiver03"
android:permission="com.qf.permission.print"
android:exported="false" > <!-- 通过priority属性设置接收广播的优先级(范围: -1000~1000) -->
<intent-filter android:priority="100" >
<action android:name="com.qf.broadcast.print" />
</intent-filter>
</receiver>
</application> </manifest>
AndroidManifest.xml
package com.qf.broadcastreceiver05; import android.app.Activity;
import android.content.Intent;
import android.os.Bundle;
import android.view.View; /**
* 接收04应用中发送的广播
* @author apple
*
*/
public class MainActivity extends Activity { @Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
} public void sendBroadcast(View v){
Intent intent=new Intent("com.qf.broadcast.print");
intent.setPackage("com.qf.broadcastreceiver04"); //设置可以接收此广播的应用的包名 sendBroadcast(intent);
} }
5_MainActivity.java
5的recerver也是一样的
5的配置文件
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.qf.broadcastreceiver05"
android:versionCode="1"
android:versionName="1.0" > <uses-sdk
android:minSdkVersion="8"
android:targetSdkVersion="17" /> <uses-permission android:name="com.qf.permission.print"/> <application
android:allowBackup="true"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme" >
<activity
android:name="com.qf.broadcastreceiver05.MainActivity"
android:label="@string/app_name" >
<intent-filter>
<action android:name="android.intent.action.MAIN" /> <category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity> <receiver android:name="com.qf.broadcastreceiver05.MyReceiver01">
<intent-filter>
<action android:name="com.qf.broadcast.print"/>
</intent-filter>
</receiver> </application> </manifest>
5_AndroidManifest.xml
两个应用之间传递广播的规则 Broadcast的更多相关文章
- 【转】 android之如何在两个activity之间传递handler_利用broadcast广播机制
原文:http://blog.csdn.net/jason0539/article/details/18075293 这算是如何在两个activity之间传递handler的解决方案二了,解决方案一见 ...
- spring boot 之如何在两个页面之间传递值(转)
原文地址:spring boot 之如何在两个页面之间传递值 问题:页面之间的跳转,通常带有值的传输,但是,在现在比较流行的SPRING MVC WEB 开发模型中,设计机制导致页面之间的直接接跳转和 ...
- 用WM_COPYDATA消息来实现两个进程之间传递数据
文着重讲述了如果用WM_COPYDATA消息来实现两个进程之间传递数据. 进程之间通讯的几种方法:在Windows程序中,各个进程之间常常需要交换数据,进行数据通讯.常用的方法有 1.使用内存映射 ...
- 两个activity之间传递数据用startActivityForResult方法。
package com.example.testactivityresquest; import android.app.Activity; import android.content.Intent ...
- 如何在两个activity之间传递bitmap
1.需求 在项目开发过程中,打印小票前需要添加打印预览功能,交易数据在打印前转成bitmap然后直接打印,为了显示这个bitmap需要将其传给显示activity. 2.解决方法 把bitmap存储为 ...
- WinForm 中两个窗口之间传递数据
方法有很多种,这里介绍项目中使用的两种 一.通过委托+事件的方法进行传值 (点击Form2中的button1按钮,将会把Form2中的textbox.text 传给Form1中的 lable.text ...
- golang 与 c语言 之间传递指针的规则提案
https://go.googlesource.com/proposal/+/master/design/12416-cgo-pointers.md https://github.com/golang ...
- 两个Fragment之间传递数据
1.第一个Fragment BlankFragment blankFragment = new BlankFragment();Bundle bundle = new Bundle();bundle. ...
- Linux 两台服务器之间传递文件
参考: https://www.cnblogs.com/clovershell/p/9870603.html linux采用scp命令拷贝文件到本地,拷贝本地文件到远程服务器 // 假设远程服务器 ...
随机推荐
- 如何下载spring的jar包?
文转载至:https://www.cnblogs.com/yjmyzz/p/3847364.html Spring官网改版后,很多项目的完整zip包下载链接已经隐掉了,虽然Spring旨在引导大家用更 ...
- 使用Golang进行性能分析(Profiling)
转自:http://www.cppblog.com/sunicdavy/archive/2015/04/11/210308.html 本文介绍游戏服务器的性能分析, web服务器性能分析不在本文分析范 ...
- 解决Sublime 3提示 Sublime Text Error while loading PyV8 binary
转自:http://blog.initm.com/sublime-text/ 今天打开sublime遇到一个提示 如上图Sublime Text Error while loading PyV8 b ...
- 小朋友学Python(1):Python简介与编程环境搭建
一.Python简介 不死Java,不朽C/C++,新贵Python. Python(英国发音:/ˈpaɪθən/ 美国发音:/ˈpaɪθɑːn/), 是一种面向对象的解释型计算机程序设计语言,由荷兰 ...
- Redis如何存储对象与集合示例详解
前言 大家都知道在项目中,缓存以及mq消息队列可以说是不可或缺的2个重要技术.前者主要是为了减轻数据库压力,大幅度提升性能.后者主要是为了提高用户的体验度,我理解的是再后端做的一个ajax请求(异 ...
- Github入门 - Github基本使用及Github桌面版使用
知识内容: 1.版本控制 2.Git介绍 3.Github介绍及基本使用 4.Github桌面版介绍及安装 5.Github桌面版基础使用 6.Github桌面版进阶使用 参考: http://www ...
- 30. CentOS终端命令行显示中文乱码的解决方法
安装CentOS的时候选择了中文,结果在终端不能显示中文,都是乱码,解决方法:修改/etc/sysconfig/i18n,内容为 代码如下: LANG="zh_CN.GB18030&qu ...
- MySQL优化十大技巧
转自:https://m.2cto.com/database/201701/557910.html MYSQL优化主要分为以下四大方面: 设计:存储引擎,字段类型,范式与逆范式 功能:索引,缓存,分区 ...
- tensorflow Process finished with exit code 137 (interrupted by signal 9: SIGKILL) 错误
Process finished with exit code 137 (interrupted by signal 9: SIGKILL) 在使用tensorflow自带的数据集做手写数字识别的时候 ...
- 【转载】 Java并发编程:深入剖析ThreadLocal
原文链接:http://www.cnblogs.com/dolphin0520/p/3920407.html感谢作者的辛苦总结! Java并发编程:深入剖析ThreadLocal 想必很多朋友对Thr ...