<receiver android:name="sss" android:exported="true" >
<intent-filter>
<action android:name="android.provider.Telephony.SECRET_CODE" />
<data android:host="1111" android:scheme="android_secret_code" />
</intent-filter>
</receiver>
<activity android:name="xxxx">
<intent-filter>
<action android:name="android.intent.action.MAIN"/>
<category android:name="android.intent.category.LAUNCHER"/>
</intent-filter>
</activity>
这样便可以达到目的,自己在onreceive里面启动activity。
但是有一点奇怪。程序里面广播接收器单独存在时,广播接收器无效不接收广播,必须有activity,而且先前有启动activity过,才能接收广播。至于为什么我也不懂
转载于:https://blog.51cto.com/426445/1196419