是否可以按包过滤意图?也就是说,我只想过滤Google Maps action.SEND意图在我的应用中处理它们。例如,在Google地图中,我想与“将位置发送给他人”选项共享我的位置。我只想在这个选择器中出现我的应用程序。
我已经这样做了,但我知道我错过了什么。
<intent-filter>
<action android:name="android.intent.action.SEND"/>
<category android:name="android.intent.category.DEFAULT"/>
<data android:mimeType="text/plain" />
<!-- Something here with com.google.android.apps.maps? -->
</intent-filter>
谢谢!