About Android WebView

Asked 2 years ago, Updated 2 years ago, 69 views

We are currently producing an application through WebView

BindingManager: Cannot call determinedVisibility() - never saw a connection for the pid: 23057

I'm asking because I keep seeing the log.

Does anyone know what kind of symptoms this log is caused by?

android webview

2022-09-22 14:09

1 Answers

After searching, I think it's a warning log related to storage. Symptoms include no web page loading, no file downloading when clicking the link, and no response. It looks like that.

In Stack Overflow, make sure that the two options below in WebView are enabled, but some may not be the correct solution, given that the settings do not change.

webview.getSettings().setJavaScriptEnabled(true);
webview.getSettings().setDomStorageEnabled(true);


2022-09-22 14:09

If you have any answers or tips


© 2024 OneMinuteCode. All rights reserved.