Hi Erel
Hi All
According to:
https://developer.android.com/guide/topics/graphics/hardware-accel.html
I have a problem with webview in many newer devices that doesn't display webview content! they display a white blank screen!
According to android doc url above, i should disable hardware acceleration, i want it done in activity level and in view level (i try in manifest file, it worked for the first activity, others no).
Activity Level:
View Level:
Please convert these code to B4A .
Thanks
Hi All
According to:
https://developer.android.com/guide/topics/graphics/hardware-accel.html
I have a problem with webview in many newer devices that doesn't display webview content! they display a white blank screen!
According to android doc url above, i should disable hardware acceleration, i want it done in activity level and in view level (i try in manifest file, it worked for the first activity, others no).
Activity Level:
B4X:
<application android:hardwareAccelerated="true">
<activity ... />
<activity android:hardwareAccelerated="false" />
</application>
View Level:
B4X:
myView.setLayerType(View.LAYER_TYPE_SOFTWARE, null);
Please convert these code to B4A .
Thanks