My phone did an update and I am having same problem where my WebView is just empty.
Don't know what Android version was before update but current version is 6.0.1
My app uses modified code from
https://puravidaapps.com/table.php to create a multi-column table but now is just blank.
For the moment, I am going to just change the app to use a List. Won't look nice but I am the only one that uses this app and I need to use it every day.
I have a few thoughts for a fix but I am going to wait to see it this magically fixes itself in the near future or maybe someone comes up with some simple solution.
Thought 1...
I could just write out the entire finished html code to a file then use android.intent.action.VIEW to open that local file.
A real pain in the neck to write out the html code but it would probably work.
Thought 2...
Same as thought 1, write out the entire html file in code and then use com.android.htmlviewer to open that local file.
Can anyone shed any light on the difference between "android.intent.action.VIEW" and "com.android.htmlviewer"?