For simplicity purpose, I will make the question short
I have the following HTML which I load into my WebView
<h1>Heading</h1>
<p>some description and imaages <img src="local file source"/>
</p>
The above works perfectly and shows image(s) in webview but I want to make my images clickable
so that users can click and open the image.
What confusing me is, do I need to create a new activity to open the image and how do I handle click on images in HTML inside the webview
In HTML I can simply put the image in herf
<a href="http://imagepath">
<img src="http://imagepath"/>
</a>
How do I do this for local images?