In IOS ,we have a delegate method "shouldStartLoadWithRequest"
to grab post parameters in UIWebView as described in
Grabbing POST data from UIWebView
I couldn't find any such method for Android on googling. In Android ,I am able to handle this by javascriptinterface where server provides me the post parameters. But I don't want this.So please help with below query :
Is there any such similar method in Android to grab post parameters ? Or should I stick with the previous approach ?
Thanks in advance.