0

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)

mstuercke
  • 731
  • 1
  • 8
  • 19

1 Answers1

0

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

Parag Chauhan
  • 35,760
  • 13
  • 86
  • 95