Tool HTML PC>Android convertor

For my application I have a Help written in HTML. The entire simple code is written in an html editor on a PC, it contains three subfolders css, img and js. However, the code written in this way does not work in the WebView component. If a css style or images are to be loaded, the links to the relevant subfolders must be modified.

e.g. href="css/main.css" must be modified to href="file:///android_asset/css%5Cmain.css",
src="img/IMG1.png" to src="file:///android_asset/img%5CIMG1.png" etc.

That is why I wrote a tool that automates this.

2024-12-03 19_22_12-Window.png


Instructions:
  • select the html file to be modified
  • select the file where the result should be saved
  • if you have other subfolders than css, img and js, add them according to the pattern
  • press Convert
  • the changed lines will appear in the list

B4X:
WebView1.loadhtml(File.ReadString(File.DirAssets,"index.html"))

Download
 
Last edited:
Top