On Fri, Jun 18, 2010 at 9:18 PM, Dianne Hackborn <[email protected]> wrote: > You can actually build a URI to launch pretty much any intent; the browser > always adds the BROWSABLE category, though, so any activity receiving it > must have specified that.
To clarify: I suspect that the easiest way to determine the proper Uri syntax is to create your desired Intent in Java, call toUri(Intent.URI_INTENT_SCHEME) on it, and dump that value (e.g., logcat), to get everything right, then put that in your Web page. The rules for encoding these Uri values are a bit cryptic, looking at the source code for Intent. -- Mark Murphy CommonsWare [email protected] http://commonsware.com -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/android-developers?hl=en

