0
我需要從瀏覽器打開我的應用程序時,一些模式匹配的網址來,我已經實現使用Intercepting links from the browser to open my Android app。它只用於URL纔可能打開應用程序。我想要應用程序時瀏覽器找到像appname:// id = 102這樣的字符串。Android:從瀏覽器打開應用程序
謝謝。
編輯:請看看這個代碼,我有使用
<intent-filter >
<category android:name="android.intent.category.BROWSABLE" />
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT" />
<data
android:scheme="appname"
/>
</intent-filter>
我已經做到了,但它不工作 –