禁止或允许其他程序调用activity,service

默认activity允许其他程序调用,当禁止其他程序调用activity时,可进行如下设置:

<activity
            android:name="com.tencent.tauth.TAuthView"
            android:exported="false" >

默认expored为true

service也可使用此属性

转载于:https://www.cnblogs.com/busymilk/archive/2013/03/12/2956526.html

你可能感兴趣的:(禁止或允许其他程序调用activity,service)