bloxa69 Active Member Licensed User Longtime User Jul 25, 2013 #1 I've got a weird problem - my webview is transparent in emulator (4.1) and not transparent on the actual device - 4.03. I'm using WebView.Color = Colors.Transparent to set transparency and in HTML background is set to transparent.
I've got a weird problem - my webview is transparent in emulator (4.1) and not transparent on the actual device - 4.03. I'm using WebView.Color = Colors.Transparent to set transparency and in HTML background is set to transparent.
Erel B4X founder Staff member Licensed User Longtime User Jul 26, 2013 #2 Seems like a bug in some Android versions related to hardware acceleration. You can disable hardware acceleration or try this workaround: B4X: WebView.Color = Colors.ARGB(1, 255, 255, 255) Upvote 0
Seems like a bug in some Android versions related to hardware acceleration. You can disable hardware acceleration or try this workaround: B4X: WebView.Color = Colors.ARGB(1, 255, 255, 255)
bloxa69 Active Member Licensed User Longtime User Aug 1, 2013 #3 Erel said: Seems like a bug in some Android versions related to hardware acceleration. You can disable hardware acceleration or try this workaround: B4X: WebView.Color = Colors.ARGB(1, 255, 255, 255) Click to expand... thanks a lot, that did the trick Upvote 0
Erel said: Seems like a bug in some Android versions related to hardware acceleration. You can disable hardware acceleration or try this workaround: B4X: WebView.Color = Colors.ARGB(1, 255, 255, 255) Click to expand... thanks a lot, that did the trick