【发布时间】:2012-04-15 13:19:04
【问题描述】:
在我的 android 浏览器中,我可以与 google+、什么是应用程序等共享当前链接。现在我希望我的应用程序可以在那里列出。所以我使用了意图过滤器:
<intent-filter>
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.SEND" />
<data android:scheme="http"/>
</intent-filter>
但现在我的应用仅在我单击链接时才会列在意图选择器中。我能做些什么?
【问题讨论】:
标签: android android-intent share