I'm unable to make the internal links work as expected in a Webview. What am I doing wrong?
Here's a little example to try. Click on Test. Nothing happens.
Here's a little example to try. Click on Test. Nothing happens.
B4X:
Dim Contenu As String = "<HTML><HEAD></HEAD><BODY><A HREF='#test'>Test</A>"
For i = 0 To 100
Contenu = Contenu & "<BR/>"
Next
Contenu = Contenu & "<A name='test'>I want to go there</A></BODY></HTML>"
HTMLView.LoadHtml(Contenu)