Hi dear developers
Is anyone can advice me about Http Parser for default android browser?
I'm trying to hook html data from default browser like Erel's example
Dim jo As JavaObject
jo.InitializeStatic("android.net.http")
Dim jo2 As JavaObject = jo.RunMethod("AndroidHttpClient", null)
Return jo2.RunMethod("???", null)
- Use httputils2 to download the html-code and then parse it for links.
or
- you can use a webview with javascriptinterface and use a jquery javascriptcode to search for links and report them to your app. Search the forum... There is somewhere an example doing it.