Hi All, I want my application to be opened from a link, and it works fine (most of the time.... this is the reason I am asking for help)
My html link is <a href="intent:#Intent;action=com.mark.MY_ACTION;end">Open Application</a> and my intent filter is in the form <intent-filter> <action android:name="com.mark.MY_ACTION"/> <category android:name="android.intent.category.DEFAULT"/> <category android:name="android.intent.category.BROWSABLE"/> </intent-filter> so far so good (I hope). It works fine from m-o-s-t of the browsers. To test the above I wrote a demo activity final WebView webview = new WebView(this); setContentView(webview); webview.loadUrl("http://www.mark.bla.bla.com/"); The page http://www.mark.bla.bla.com/ has some links/hrefs (including the inent one). Pressing those links opens me a browser, but pressing my "special link" opens me a "Web page not available intent:#Intent;action=com.mark.MY_ACTION;end might be temporarily down...." Please help. -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to android-developers@googlegroups.com To unsubscribe from this group, send email to android-developers+unsubscr...@googlegroups.com For more options, visit this group at http://groups.google.com/group/android-developers?hl=en