Hi
With new android 30 I have to change the File.DirRootExternal to File.DirInternal.
Before change, I have one webview showing images on DirRootExternal:
After change to DirInternal and copy images to DirInternal and change code webview not show images...
If I use a ImageView code like this, image as show correctly in ImageView:
What I do wrong?
With new android 30 I have to change the File.DirRootExternal to File.DirInternal.
Before change, I have one webview showing images on DirRootExternal:
WebView1.LoadHtml("<html><body bgcolor='black'><center><img src='file://" & File.DirRootExternal & "/prog/fotos/0001.gif & "'></center></body></html>")
After change to DirInternal and copy images to DirInternal and change code webview not show images...
WebView1.LoadHtml("<html><body bgcolor='black'><center><img src='file://" & File.DirInternal & "/prog/fotos/0001.gif& "'></center></body></html>")
If I use a ImageView code like this, image as show correctly in ImageView:
Imageview1.Bitmap=LoadBitmap(File.DirInternal & "/prog/fotos","0001.gif")
What I do wrong?