【发布时间】:2018-10-15 11:56:03
【问题描述】:
我正在尝试通过链接打开我的应用 我成功了,我可以从链接打开它,但是如果我在 facebook 应用程序上打开它.. 它用它的 webview 打开它,所以我不能通过它从 facebook 的链接打开我的应用程序,这就是我的清单中的内容
<intent-filter>
<data
android:host="example.com"
android:pathPrefix="/users"
android:scheme="http" />
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.BROWSABLE" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
谢谢
【问题讨论】:
标签: android android-intent intentfilter