I need to start a custom activity by clicking on a browser-link (e.g. market://details?id= opens the app in Play Store).
How can I do that?
(I hope, you understand what I want to do - sorry for my bad english)
I need to start a custom activity by clicking on a browser-link (e.g. market://details?id= opens the app in Play Store).
How can I do that?
(I hope, you understand what I want to do - sorry for my bad english)
This way you can do this
<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>
For more Ref - Check Link