I have defined a custom url for my Android application:
<intent-filter>
<data android:scheme="myfoo" />
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.BROWSABLE" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
When I create a web page that has
<a href="myfoo://">My Foo</a>
and click on the link from the local browser, my application is launched just fine. However, if I type "myfoo://" directly in the browser, it simply takes me to Google's search listing.
Wondering if there is a setting on the default browser that I need to disable to make my custom url work. Regards.