Android equivalent of UIWebView in Xcode
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 app开发者_运维百科s 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.
精彩评论