If a page has a URL or a phone number on it that isn't a link is there any way to have WebView recognize it and automatically turn it into a link like you can with TextViews?
With a TextView
you would simply set the android:autoLink
to the desired settings:
<TextView
android:autoLink="web|phone"
... />
but I can't find any equivalent for WebView
.