TheFinestArtist / FinestWebView-Android

Beautiful and customizable Android Activity that shows web pages within an app.
https://finestwebview.web.app
2.32k stars 532 forks source link

How to do a form post using FinestWebView? #178

Open pankaj-dunow opened 4 years ago

pankaj-dunow commented 4 years ago

I want to post some data to the url I am calling using FinestWebView. Basically, I want to achieve something like this which is achieved using simple WebView:

    WebView webview = new WebView(this);
    setContentView(webview);
    String url = "http://myUrl"; // The url to which data will be posted
    String postData = "myKeyValuePair"; //The key-value pair of data being posted
    webview.postUrl(url,postData.getBytes());

Please help me ASAP. Thanks in advance.