views:

145

answers:

1

I have HTML with standard links which correspond to commands I'd like to handle.

This is <a href="CMD:nice">a command</a>.

I populate a TextView with Html.fromHtml()

How can I use the Android Linkify system to convert the links to Linkify'ed ones?

A: 

found that the WikiNotes example project from Google does exactly that. It uses the Linkify infrastructure with a Provider and MIMIE type to load the right Activity.

BahaiResearch.com