0

我需要通过单击浏览器链接来启动自定义活动(例如,market://details?id= 在 Play 商店中打开应用程序)。

我怎样才能做到这一点?

(我希望,你明白我想做什么 - 对不起我的英语不好)

4

1 回答 1

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>

更多参考 -检查链接

于 2013-06-27T21:31:20.083 回答