I have an application that is displaying a static HTML file that is included with the application.
The HTML file has certain strings that I would like to change based on the value of a spinner.
The strings are formatted as follows:
{{string1}} {{string2}} ... {{stringx}}
Where a string may occur multiple times.
Is it possible to do a find and replace on the web-view as the result of a spinner change using a listener?
How would I go about doing this?
Would it be possible to somehow trigger java-script on in the html to make this happen?
As a sub note I could change the format of the HTML file if it would help me accomplish my goals.