Is there a way to get an image's title using Android's WebView?

106 Views Asked by At

I am using Android's WebView as the rendering engine for a browser. I would like to be able to get an image's title. For example, when browsing to https://www.xkcd.com/327/ on a desktop, mousing over the comic displays the following text: "Her daughter is named Help I'm trapped in a driver's license factory." The source code for the comic is as follows:

<img src="//imgs.xkcd.com/comics/exploits_of_a_mom.png" title="Her daughter is named Help I&#39;m trapped in a driver&#39;s license factory." alt="Exploits of a Mom" />

Using WebView.HitTestResult.getExtra() pulls the src. Does anyone know of a way to get the title?

0

There are 0 best solutions below