Coming from an iPhone world...
In Android, I am looking for an iPhone UIWebView-like control which can display HTML and let me catch clicks on links and stop the navigation. My apps display text with commands as href's in the HTML.
Coming from an iPhone world...
In Android, I am looking for an iPhone UIWebView-like control which can display HTML and let me catch clicks on links and stop the navigation. My apps display text with commands as href's in the HTML.
Check out android.webkit.WebView
for the display, and WebViewClient
for dealing with clicks on links.