I have a simple page in html:
<html>
<head>
</head>
<body>
<form action = "formular.html" method = "POST">
Name<inpt type = "text"></br>
Surname<inpt type = "text"></br>
<input type="submit">
</form>
</body>
</html>
this page I have in webview. This is any possibility to catch in application when user click on send button. I want to catch this POST. How can I do that?