views:

61

answers:

1

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.

+3  A: 

Check out android.webkit.WebView for the display, and WebViewClient for dealing with clicks on links.

CommonsWare