我需要为后台运行的应用程序提供后台服务,并检查点击图库,消息或联系人时,它会启动我的应用程序而不是启动图库,消息或联系人。我搜索了很多,但还没有找到完美的解决方案。
答案 0 :(得分:1)
您是否尝试过IntentFilter?
<activity android:name="MyGalleryActivity">
<intent-filter>
<action android:name="android.intent.action.VIEW"/>
<category android:name="android.intent.category.DEFAULT"/>
<data android:mimeType="application/vnd.google.panorama360+jpg"/>
<data android:mimeType="image/*"/>
</intent-filter>
</activity>
<强> UPD 强> 有关更多信息,请参阅theese链接:
http://developer.android.com/guide/components/intents-filters.html http://developer.android.com/guide/components/intents-common.html