iam试图从链接打开我的应用程序..我成功了,我可以从链接打开它..如果iam在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>
谢谢