如果在應用程序上安裝了應用程序,請點擊url啓動應用程序。如果應用未安裝在設備上,請打開Playstore。如何在android中點擊url啓動應用程序
<intent-filter>
<data android:scheme="app" />
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.BROWSABLE" />
</intent-filter>
</activity>
[如何在Android上實現我自己的URI方案](http:/ /stackoverflow.com/questions/2448213/how-to-implement-my-very-own-uri-scheme-on-android) – Ostin