Android Question How to view 'Wunderground' web pages in Webview

JohnC

Expert
Licensed User
Longtime User
This is a long-shot, but maybe when the screen turns solid white, the webpage actually scrolled out of view?

Things to try:

1) See if the page will scroll into view
2) Try different overview modes
3) Try different zoom views
 
Upvote 0

JohnC

Expert
Licensed User
Longtime User
You may need to use Webviewextras to access the different view/zoom settings.
 
Upvote 0

kisoft

Well-Known Member
Licensed User
Longtime User
Add this to your manifest ... maybe it'll help... The pages you entered do not have SSL encryption.
B4X:
SetApplicationAttribute(android:usesCleartextTraffic, "true")
 
Upvote 0

JohnC

Expert
Licensed User
Longtime User
Add this to your manifest ... maybe it'll help... The pages you entered do not have SSL encryption.
B4X:
SetApplicationAttribute(android:usesCleartextTraffic, "true")
Yes! There could be parts of the page that are not secure, and could screw up the rendering of the page if blocked - never thought of that!
 
Upvote 0

rthyoung26

Member
Licensed User
Longtime User
This is a long-shot, but maybe when the screen turns solid white, the webpage actually scrolled out of view?

Things to try:

1) See if the page will scroll into view
2) Try different overview modes
3) Try different zoom views
Thanks for reply, tried all this, zoom bars are visible but still only white screen after about 1/2 second. Prior to that you can see Wunderground page starting to load
 
Upvote 0
Top