Top "Webview" questions

Elements in graphical user interfaces that host HTML content.

how to display progress while loading a url to webview in android?

I am loading url into webview: WebView webview=(WebView)findViewById(R.id.webview); webview.loadUrl(url); It's taking some time …

android webview
Swift Open Link in Safari

I am currently opening the link in my app in a WebView, but I'm looking for an option to open …

webview swift safari
How to set the initial zoom/width for a webview

I am trying to get the WebView to have similar behavior as the android browser. The browser opens all pages …

android webview width scale android-webview
Android WebView progress bar

I have looked at a question similar to this here but as I am a newbie could someone explain how …

android progress-bar webview
Rendering HTML in a WebView with custom CSS

My app is using JSoup to download the HTML of a message board page (let's say in this case it …

android html css webview
How to enable zoom controls and pinch zoom in a WebView?

The default Browser app for Android shows zoom controls when you're scrolling and also allows for pinch zooming. How can …

android webview
How to load html string in a webview?

i have a html string containing this: <!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 4.01 Transitional//EN\"> <…

android webview android-webview
Is `shouldOverrideUrlLoading` really deprecated? What can I use instead?

Is "shouldOverrideUrlLoading" really deprecated? If so, what can I use instead? It seems like shouldOverrideUrlLoading is deprecated targeting Android N …

android webview android-webview deprecated deprecation-warning
How to change font face of Webview in Android?

I want change the default font of webview to a custom font. I'm using webview in developing an bilingual browser …

android webview font-face custom-font
How to retrieve HTML content from WebView (as a string)

How do I retrieve all HTML content currently displayed in a WebView? I found WebView.loadData() but I couldn't find …

android webview android-webview