I am trying to catch the intention that gets fired when someone clicks on a hyperlink to a web page in the Mms browser. I have this in the manifest:
</intent-filter>
<intent-filter>
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT" />
<data android:scheme="http" />
</intent-filter>
However, when I click http://www.ibm.com , it only launches the browser. Same thing when I $ am start -a android.intent.action.VIEW -d http://www.ibm.com
in the adb shell. Any ideas what I'm doing wrong?
Thank you very much with
Clive source
share