2013-06-27 134 views
0

我需要通過單擊瀏覽器鏈接(例如market:// details?id =在Play Store中打開應用程序)來啓動自定義活動。從瀏覽器鏈接開始活動

我該怎麼做?

(我希望你明白我想做的事 - 對不起我的英文不好)

+1

看看http://stackoverflow.com/questions/525063/android-respond-to-url-in-intent –

回答

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