B4A Library WebViewSettings - warwound    Mar 22, 2014   (20 reactions) .
WebViewSettings
Version: 1.31
WebViewSettings
Methods:
getAllowFileAccess (webView1 As WebView) As Boolean... B4A Question Where to Find WebViewSettings - bocker77 (first post)    Feb 4, 2021 Never mind. It added them to a folder that I didn't recognize. I found them under extracted fold... B4A Question Hide Webview Zoom Controls but still have zoom - tsteward    Nov 23, 2018 Is it possible to turn off the + & - zoom buttons on a webview but still have pinch zoom. If I turn off zoom in the designer the buttons are gone but can no longer pinch zoom. If I leave it on in designer and use the webviewsettings library I have tried setDisplayZoomControls does not have any effect. setSupportZoom will turn zoom control off completely. Again I want zoomability just not the buttons displayed. Thanks Tony... B4A Library webviewsettings input type file chrome interface - kkkpe    Jun 17, 2015   (1 reaction) I use B4A with libraries webviewExtra2 and webviewSettings to get a webview interface with google chrome. Chrome interface works entirely excluded fields' <input type = "file" accept = image /> I use in chrome to open the camera. there is a solution?... B4A Question setDefaultTextEncodingName in webviewsettings - Erel (first post)    Jan 11, 2013 The default encoding only affects web sites that not explicitly set the encoding.
It is also possib... B4A Question WebViewSettings or other - Erel (first post)    Oct 23, 2012 You can call WebView.Back or WebView.Forward to navigate.
I do not know whether WebViewSettings allows you to show a progressbar.... B4A Question Urgent Help needed! Unable to load html page in webView - Alex_197 (first post)    Nov 25, 2025 successfully try this Private WebViewExtras1 As WebViewExtras Private WebViewSetting1 As WebViewSettings Private WebChromeClient1 As DefaultWebChromeClient Private JavascriptInterface1...) WebViewSetting1.setDatabaseEnabled(wvMAR, True) WebViewSetting1.setDOMStorageEnabled(wvMAR, True) WebViewSetting1.setGeolocationEnabled(wvMAR, True) WebViewSetting1.setSaveFormData(wvMAR, False) WebViewSetting1.setSavePassword(wvMAR, False) WebViewSetting1... B4A Question Getting javascript to run in webview - username_987 (first post)    Sep 17, 2024   (1 reaction) .RunMethod("setLayerType", Array(2, Null)) WebViewSetting1.setDatabaseEnabled(w1, True) WebViewSetting1.setDOMStorageEnabled(w1, True) WebViewSetting1.setGeolocationEnabled(w1, True) WebViewSetting1.setSaveFormData(w1, False) WebViewSetting1.setSavePassword(w1, False) WebViewSetting1.setJavaScriptCanOpenWindowsAutomatically(w1, False) WebViewSetting1.setSupportZoom(w1, False) WebViewSetting1.setUseWideViewPort(w1, False) WebViewSetting1... B4A Question ERR when loading WebView with HTML file that's in any directory except File.DirAssets - Erel (first post)    Nov 10, 2024   (2 reactions) This is related to a change in the default value since Android 11. I will add a property to WebView. For now you need to use WebViewSettings library to change it:
Dim settings As WebViewSettings
settings.setAllowFileAccess(WebView1, True)
https://www.b4x.com/android/forum/threads/webviewsettings.12929/#content... B4A Question web view for ssl pages - modiran_ghaneipour    Nov 17, 2025 As WebViewExtras Dim WebViewSetting1 As WebViewSettings Private btnBackfromWeb As Button....addWebChromeClient(WebView1, "WebViewExtras1") WebViewSetting1.setDatabaseEnabled(WebView1, True) WebViewSetting1.setDOMStorageEnabled(WebView1, True) WebViewSetting1.setGeolocationEnabled(WebView1, True) WebViewSetting1.setJavaScriptCanOpenWindowsAutomatically(WebView1, True) WebViewSetting1.setSaveFormData(WebView1, True) WebViewSetting1.setSavePassword(WebView1, True... Page: 1   2   3   4   5   6   7   |