码迷,mamicode.com
首页 > 其他好文 > 详细

Exported activity does not require permission

时间:2014-12-12 13:12:05      阅读:103      评论:0      收藏:0      [点我收藏+]

标签:android   style   blog   io   color   使用   sp   strong   on   

问题:

今天在AndroidManifest.xml文件中配置Activity后,系统提示我“Exported activity does not require permission”。我配置的代码如下:

 

<activity android:name="com.example.testmain.ShowActivity" >
             <intent-filter>
                 <action android:name="test.update.mydata" />

                 <category android:name="my.test.show" />
             </intent-filter>
         </activity>

 

原因:

查了一下资料,原来是因为我给Activity配置了<intent-filter>属性,配置<intent-filter>属性,就意味着这个Activity可以被其他App程序所使用。但是怎么样即配置<intent-filter>属性,有防止被其他App使用呢?这里主要有两个解决办法!

 

第一种:

通过添加android:exported="false"属性。这个属性用于指示该服务是否能够被其他应用程序组件调用或跟它交互。如果设置为true,则能够被调用或交互,否则不能。设置为false时,只有同一个应用程序的组件或带有相同用户ID的应用程序才能启动或绑定该服务。

  <activity
            android:name="com.example.testmain.ShowActivity"
            android:exported="false" >
            <intent-filter>
                <action android:name="test.update.mydata" />
                <category android:name="my.test.show" />
            </intent-filter>
     </activity>

 

第二种:

通过添加<permission>权限来控制其他App对服务的访问!

 

Exported activity does not require permission

标签:android   style   blog   io   color   使用   sp   strong   on   

原文地址:http://www.cnblogs.com/ywtk/p/4159445.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!