应该使用什么意图过滤器,以便每当拨打电话时我的应用程序都会显示在活动选择器中:例如显示 Viber 和 Skype。
我正在使用这个过滤器:
<receiver android:name="OutgoingCallReceiver" >
<intent-filter>
<action android:name="android.intent.action.ACTION_NEW_OUTGOING_CALL" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
</receiver>
经许可:
<uses-permission android:name="android.permission.PROCESS_OUTGOING_CALLS" />
myApp 仍然没有出现在活动选择器中。