J jchal Active Member Licensed User Longtime User Aug 22, 2017 #1 i try to use the following line B4X: webview1.LoadUrl ("file:///android_asset/" & "1.html") to show the html file in webview but when i load it it says web page not fount etc. my question is where i put 1.html? in order to make it work?
i try to use the following line B4X: webview1.LoadUrl ("file:///android_asset/" & "1.html") to show the html file in webview but when i load it it says web page not fount etc. my question is where i put 1.html? in order to make it work?
Star-Dust Expert Licensed User Longtime User Aug 22, 2017 #2 This isn't correct Copy file to another folder, after can load to WebView. (File.copy command) You can't load directly Assets filder. Ps. Can link Asset path with file.DirAssets Path = 'file:/' & File.DirAssets Upvote 0
This isn't correct Copy file to another folder, after can load to WebView. (File.copy command) You can't load directly Assets filder. Ps. Can link Asset path with file.DirAssets Path = 'file:/' & File.DirAssets
J jchal Active Member Licensed User Longtime User Aug 22, 2017 #3 can you be more spasific , i cant understant what you want to tell me. (File.copy command) Click to expand... Upvote 0
can you be more spasific , i cant understant what you want to tell me. (File.copy command) Click to expand...
Star-Dust Expert Licensed User Longtime User Aug 23, 2017 #4 1. B4X: webview1.LoadUrl ("file://" & File.DirAssets & "1.html") 2. B4X: file.copy(File.DirAssets,"1.html",File.DirDefaultExternal,"1.html") webview1.LoadUrl ("file://" & File.DirDefaultExternal & "1.html") Upvote 0
1. B4X: webview1.LoadUrl ("file://" & File.DirAssets & "1.html") 2. B4X: file.copy(File.DirAssets,"1.html",File.DirDefaultExternal,"1.html") webview1.LoadUrl ("file://" & File.DirDefaultExternal & "1.html")
Erel B4X founder Staff member Licensed User Longtime User Aug 23, 2017 #5 @jchal please do not make duplicate posts (https://www.b4x.com/android/forum/threads/file-assetsdir-1a-html.83042/) Upvote 0
@jchal please do not make duplicate posts (https://www.b4x.com/android/forum/threads/file-assetsdir-1a-html.83042/)