首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 移动开发 > Android >

怎么发一个带权限的广播

2012-09-10 
如何发一个带权限的广播发送广播的函数有好几个,其中一个是sendBroadcast(Intent intent, String receiver

如何发一个带权限的广播
发送广播的函数有好几个,其中一个是sendBroadcast(Intent intent, String receiverPermission)。
根据API描述这个函数发送广播之后,接收器需要先注册权限才可以接收的。请问这个权限要怎么注册?
我试了好久都不可以,是不是我的manifest文件写的不对啊,文件的内容如下,请高手帮我看一下

XML code
<?xml version="1.0" encoding="utf-8"?><manifest xmlns:android="http://schemas.android.com/apk/res/android"    package="com.test"    android:versionCode="1"    android:versionName="1.0" >    <uses-sdk android:minSdkVersion="7" />    <permission        android:name="com.broadcast.permission"        android:description="@string/permission"        android:protectionLevel="normal" >    </permission>    <application        android:icon="@drawable/ic_launcher"        android:label="@string/app_name" >        <activity            android:name=".TestActivity"            android:label="@string/app_name"            android:permission="com.broadcast.permission" >            <intent-filter>                <action android:name="android.intent.action.MAIN" />                <category android:name="android.intent.category.LAUNCHER" />            </intent-filter>        </activity>    </application></manifest>


我在发送广播的地方sendBroadcast(intent, String receiverPermission)receiverPermission参数传的R.string.permission的值

[解决办法]
探讨

这么快就沉啦。。
这个问题没有人接触过吗。我觉得挺有用处的啊。用这个方式发广播安全性就会更高一些。避免被人拦截了。

[解决办法]
探讨
引用:

这么快就沉啦。。
这个问题没有人接触过吗。我觉得挺有用处的啊。用这个方式发广播安全性就会更高一些。避免被人拦截了。

关于安全性的问题,我见过发广播直接指定receiver的类,其它类想接收都收不到

[解决办法]
其实这个权限在发送广播的AndroidManifest.xml中不声明都可以,直接在发送的时候填上就可以了例如sendBroadcast(intent,"com.example.broadcast"),在接收器里要进行声明例如一个接收器的AndroidManifest.xml为:<permission android:name="com.example.broadcast" android:protectionLevel="normal"/> <uses-permission android:name="com.example.broadcast"/>这样在这个应用里的broadcastreceiver只要具有和广播相同的action就会运行

热点排行