我有广播接收器接收新传出呼叫的意图
<receiver android:name=".MyReceiver">
<intent-filter>
<action android:name="android.intent.action.NEW_OUTGOING_CALL" />
</intent-filter>
</receiver>
我正在接收我的接收器,因为我打开我的应用程序来调用相同的电话号码所有工作正常但我的应用程序弹出本机拨号器应用程序所以我想在打开我的活动后关闭本机拨号器应用程序
答案 0 :(得分:2)
请参阅此帖子:http://android-developers.blogspot.hu/2013/05/handling-phone-call-requests-right-way.html
您可能需要&#34; setResultData(null);&#34;告诉系统你处理了这个。 (避免尝试)