我需要点击浏览器链接启动自定义活动(例如:market:// details?id =在Play商店中打开应用)。
我该怎么做?
(我希望,你明白我想做什么 - 抱歉我的英语不好)
答案 0 :(得分:0)
这样你可以做到这一点
<intent-filter >
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.BROWSABLE" />
<data
android:host="www.parag-chauhan.com"
android:path="/test"
android:scheme="http" />
</intent-filter>
更多参考 - Check Link